), elements using an ID, and classes if you use a '.' to prefix the class name.
Usage to remove our postData tag that indicates that LD+Json is being used: removeStr(value, "postData")
Usage to remove the 'foo' class from a string: removeStrBetween(str, '.foo');
*/
var removeStrBetween = function(str, selector) {
// Create a new container to operate on
var wrapped = $("
" + str + "
");
// Remove the content between the tags.
wrapped.find(selector).remove();
// Return it
return wrapped.html();
}
// Function to truncate and add an elipsis if the text exceeds a certain value
function truncateWithEllipses(text, max) {
return text.substr(0,max-1)+(text.length>max?'...':'');
}
function stripHtml(html){
html.replace(/<[^>]*>?/gm, '');
return html;
}
// Determine if a string has a space
function hasWhiteSpace(s) {
const whitespaceChars = [' ', '\t', '\n'];
return whitespaceChars.some(char => s.includes(char));
}
// ColdFusion like string functions
// ReplaceNoCase, scope is either 'all' or 'one'.
// Gregory Alexander
function replaceNoCase(string,subString,replacement, scope){
if (scope == 'all'){
// i is a RegEx ignore case flag, g is global flag
var regEx = new RegExp(subString, "ig");
} else {
// i is an RegEx ignore case flag
var regEx = new RegExp(subString, "i");
}
// i is an ignore case flag, g is global flag
var regEx = new RegExp(subString, "ig");
var result = string.replace(regEx, replacement);
return result;
}
// ColdFusion like list functions
function listLen(list, delimiter){
// Gregory Alexander
if(delimiter == null) { delimiter = ','; }
var thisLen = list.split(delimiter);
return thisLen.length;
}
function listGetAt(list, position, delimiter, zeroIndex) {
// Gregory Alexander
if(delimiter == null) { delimiter = ','; }
if(zeroIndex == null) { zeroIndex = true; }
list = list.split(delimiter);
if(list.length > position) {
if(zeroIndex){
// Better handling for JavaScript arrays
return list[position];
} else {
// Handles like the CF version without a zero-index
return list[position-1];
}
} else {
return 0;
}
}
function listFind(list, value, delimiter) {
// Adapted from a variety of sources by Gregory Alexander
var result = 0;
if(delimiter == null) delimiter = ',';
list = list.split(delimiter);
for ( var i = 0; i < list.length; i++ ) {
if ( value == list[i] ) {
result = i + 1;
return result;
}
}
return result;
}
// Compares two lists of comma seperated strings. Used to determine if the selected capabilities match the default capabilities for a given role. Function based on the listCompare method found in cflib.
function listCompare(string1, string2){
// Adapted from a variety of sources by Gregory Alexander
var s = string1.split(",");
for(var k = 0 ;k < s.length; k++){
if(string2.indexOf("," + s[k] + ",") ){
return true;
}
}
return false;
}
// Adds a value to a comma separated list. Will not add the value if the list already contains the value.
function listAppend(list, value) {
// Adapted from a variety of sources by Gregory Alexander
var re = new RegExp('(^|\\b)' + value + '(\\b|$)');
if (!re.test(list)) {
return list + (list.length? ',' : '') + value;
}
return list;
}
// Removes a value to a comma separated list. Based on the ListDeleteValue function by Ben Nadel CF fuction https://gist.github.com/bennadel/9753040
var listDeleteValue = function(list, value){
// Adapted from a variety of sources by Gregory Alexander
var values = list.split(",");
for(var i = 0 ; i < values.length ; i++) {
if (values[i] == value) {
values.splice(i, 1);
return values.join(",");
}
}
return list;
}
// URL functions
//
// parseUri 1.2.2
// (c) Steven Levithan
// MIT License
/*
Splits any well-formed URI into the following parts (all are optional):
----------------------
- source (since the exec method returns the entire match as key 0, we might as well use it)
- protocol (i.e., scheme)
- authority (includes both the domain and port)
- domain (i.e., host; can be an IP address)
- port
- path (includes both the directory path and filename)
- directoryPath (supports directories with periods, and without a trailing backslash)
- fileName
- query (does not include the leading question mark)
- anchor (i.e., fragment) */
function parseUri (str) {
var o = parseUri.options,
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
uri = {},
i = 14;
while (i--) uri[o.key[i]] = m[i] || "";
uri[o.q.name] = {};
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
if ($1) uri[o.q.name][$1] = $2;
});
return uri;
};
parseUri.options = {
strictMode: false,
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
q: {
name: "queryKey",
parser: /(?:^|&)([^&=]*)=?([^&]*)/g
},
parser: {
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
}
};
// Dump function. Use like you would with cfdump.
// function to dump out a a javascript object.
function mydump(arr,level) {
var dumped_text = "";
if(!level) level = 0;
var level_padding = "";
for(var j=0;j \"" + value + "\"\n";
}
}
} else {
dumped_text = "===>"+arr+"<===("+typeof(arr)+")";
}
console.log(dumped_text);
}
Galaxie Blog is a multi-user Blogging platform. There are many reasons why you should be able to add multiple users. If you're looking to increase the content your blog generates, you can add new users to contribute their own Galaxie Blog articles. Or, you can assign an editor to edit the grammar of the posts. The User Grid and User Detail Interface manage blog users and their roles and capabilities.
Roles and capabilities are an essential part of Galaxie Blogs' user administration. Each role comes with several pre-defined capabilities, and you can create custom roles and capabilities. If the user does not have the proper capability, the interfaces that require this capability will not be shown. Below is the picture of the Admin Interface for the Post Editor role, which only can create or edit existing posts:
The following are the built-in Galaxie Blog user roles. Custom roles can also be created; see the capability section below.
Administrators - full access
Author - can create posts
Designer - may modify theme properties
Editor - may edit but not release a post.
Guest - not used at the present moment
Moderator - can moderate comments if using the native commenting system (not Disqus, though)
Subscriber - not used in this version
Super-User - has full access other than having access to the blog settings and options interfaces.
User Capabilities
Users and custom roles can also be assigned unique capabilities. The following capabilities are available:
Add Post - may create and release posts
Asset Editor - may add or modify post media (images, videos, etc)
Edit Category
Edit Comment
Edit File (for future use after adding CMS capabilities)
Edit Page (for future use after adding CMS capabilities)
Edit Post
Edit Profile (may change user information, but not passwords)
Edit Server Setting
Edit Subscriber (may delete or add new subscribers)
Edit Template (future use after adding CMS capabilities)
Edit Theme
Edit User (can manage users)
Release Post (may release a post to the public)
The Edit User Interface covered below can determine each role's capabilities.
Adding a New User
To add a new user, click the Create New User button at the top of the User Grid. Except for the website field, all fields are required when creating new users. Additionally, the user name must be unique.
The initial password you assign will not be the final user's. This password is only to log the new user on once they have received their email and have clicked on the setup profile link. The new user will set up their password.
The administrator also needs to choose the default role and capabilities. Once you select a role, the capabilities assigned will be shown below it. You can tailor the desired capabilities by clicking on the x button next to a capability to remove it or select a new capability from the dropdown widget. See the pictures below for clarification.
Once you are done and have submitted the form, a branded email will be sent to the user's email address, asking them to set up their profile. They will need to fill out their personal information, such as their name and email address, along with several profile questions that will be used if the user needs to reset their password. They also will set their password. This password is not retrievable and will be encrypted using the Advanced Encryption Standard, which the US government recommends to protect classified information. Additionally, for security purposes, the user profile information is not available to anyone other than the user filling out the page.
Modifying Users
Any user with the Edit User capability can modify other users. These administrators may not view or change other users' passwords however, they can only send a password reset that automatically sends an email to the user requesting that they change their password. This process follows the Add User Process.
Users may change their password if they already have the correct user credentials by clicking the password form field. They are asked to verify the password that they typed in, and if it matches, they can submit the page to change their password.
Viewing User Login History
Administrators with the Edit User capability may view the user's login history by opening the user's profile and clicking on the Login History button near the bottom of the page. Users may also look at their login history to determine potential security issues by clicking on the User History button at the bottom of the Edit User Interface.
Hi, my name is Gregory! I have several degrees in computer graphics and multimedia authoring, and I have been developing enterprise web applications for the last 25 years. I love web technologies and the outdoors and am passionate about giving back to the community.
This entry was posted on February 28, 2025 at 1:52 AM and has received 246 views.