I have had to add Group Content Administrators to my SAS 9.2 Intelligence Platform a few times now, and it didn’t work as smoothly the last time due to my inability to read ALL of the steps and accompanying notes. The process of configuring a Group Content Administrator in the Information Delivery Portal is well documented in the SAS 9.2 Intelligence Platform: Web Application Administration Guide, Second Edition and Angela Hall blogged about the process here, so I should have had enough information to correctly make this happen, right? Well, there is a handy tip that I want to point out. I had some developers who have read/write access to much of the metadata in our system. I added some of these users to be Group Content Creators of the Public group following Steps 1-10 below. Since these developers had inherited Read/Write Metadata permissions from higher up the tree in metadata, they already had implicit WriteMetadata ability. When they attempted to add new portal pages for the Public group, Public not not available to share the page to. Why? Well, after Step 9 there is an important note titled “Important Note” that I somehow missed. The note states to ensure the WriteMetadata permission is explicit. To change this permission from implicit to explicit, an administrator merely needs to click the check the WriteMetadata checkbox one more time (it is already checked, but needs to be checked again). In my defense, I was originally working from the First Edition of the Web Application Administration Guide, where “Important” was not in front of the word note and it was also not in bold text!
from support.sas.com:
Configure a Group Content Administrator
A group content administrator is a user who has WriteMetadata permission for the respective group, and the group’s Portal permission tree. A group content administrator can share personal content with the group, and can edit or remove content that has been shared with the group. (The SAS administrator and the SAS Trusted User has WriteMetadata permission for all group permission trees that are defined in metadata.)
Prerequisites: Before you can assign a content administrator for a group, all of the following must be true:
- The person who will be a content administrator must have a user identity that is defined in SAS metadata.
- This user identity must be a member of the group that the person will administer.
- A group permission tree folder must exist in metadata for the group. To verify that a permission tree folder exists, or to create one, see Overview of Permission Tree Folders.
To configure a group content administrator for the Portal Application Permissions tree, follow these steps:
- Log on to SAS Management Console as the SAS Administrator (sasadm).
- On the Plug-ins tab in SAS Management Console, navigate to Environment Management –> Authorization Manager –> Resource Management –> By Type –> Tree.
- Right-click on the permissions tree for the group and select Properties.
- In the permissions tree properties dialog box, select the Authorization tab.
- Select the Add button to display the Add Users and Groups dialog box.
- In the Add Users and Groups dialog box, select and move the group content administrator under Available Identities to Selected Identities. Note that the group content administrator must be a person, and not a group.
- Click OK to exit the dialog box.
- When you return to the Authorization tab, make sure the appropriate user is selected in the Users and Groups list box.
- To modify the permissions for the selected user, in the permissions list row for the WriteMetadata permission, select Grant.
Important Note: Ensure that the permission is explicit. The check box for a permission that comes from a directly assigned access control entry (ACE) has no added background color. If the check box for a permission has a background color, to remove the background color and designate the permission as a directly assigned permission, click the check box again.
- In the properties dialog box, click OK to save your changes.
The user that was configured as a group content administrator can now log on to the portal and share personal content with that group.
WordPress is a great blogging tool and does an adequate job handling comments, but if you want to provide enhanced discussion capability among your sites users, you must install additional software. The WordPress developers have created bbPress to fill this purpose, and in doing so also added the ability to integrate the two tools on one web site. The key components that are integrated include users, cookies, and the back-end database.
Integration the two products was amazing easy – except for three items needed by bbPress installation. bbPress asked for WordPress "auth" cookie salt (AUTH_KEY), WordPress "secure auth" cookie salt (SECURE_AUTH_KEY), and WordPress "logged in" cookie salt (LOGGED_IN_KEY). The scant documentation insisted that these values were located in my wp-config.php file located in the root of my WordPress installation directory. Since my initial WordPress installation was at version 2.6 or so and has been upgraded many times to version 2.91, these values were never added to my wp-config.php file.
My bbPress installation was halted essentially because these values were required to proceed. Fortunately, I found a tool at wordpress.org that generates these values for you: https://api.wordpress.org/secret-key/1.1/. Just use this link, copy the four lines of keys, and paste them into your wp-config.php. Save your updated wp-config.php file, then go back to your bbPress installation page and paste the keys into the appropriate text boxes and the remaining portion of the installation should go smoothly.
More information about this process can be found here.
It has been four months since Garmin has updated it MapSource Windows-based mapping software. MapSource is included with the purchase of a Garmin map on DVD or CD. Features include:
- Back up important trip data separately from your Garmin device.
- Plan routes from the convenience of your computer instead of on your device.
- Create, view, and edit waypoints, routes, and tracks.
- Plan extensive or complicated routes, in which you travel to several locations in an order you specify.
- Transfer waypoints, routes and tracks between your computer and your device.
- Transfer selected map from your computer to your device.
- Find items, addresses and points of interest included in the map data.
- View your maps in detail on your computer screen.
You can even download a MapSource tutorial at http://www8.garmin.com/cartography/mapsourceTutorial.html.
Changes made from version 6.15.7 to 6.15.11:
- Improved performance for custom draw elements.
- Made sure waypoints of type ‘Geotagged Photo’ don’t crash MapSource.
- Allowed the import and export of unlock codes.
- Made sure unlocking changes get propagated without needing to restart the application.
- Phone numbers that were imported from gpx files were not written back out again. This is now fixed.
- Added support for enhanced map security.
- Fixed unlocking issue.
- Implemented Asian 6-level address search.
- Improved trimming performance for some Asian map products.
Garmin MapSource 6.15.11 (25)
February 4th, 2010 in
Downloads,
GIS,
GPS,
Maps,
Software | tags:
Garmin,
MapSource,
routes,
tracks,
transfer,
waypoints |
No Comments
After a successful installation of SAS Enterprise BI Server on my Sun Servers, a certain amount of time is spent modifying configuration files and backup scripts, as well as browsing log files. I use the vi editor to accomplish the editing. I used used vi a lot back when all of my GIS work was performed in the UNIX environment, but once the Intel hardware matured and the GIS tools because available on Windows, I thought I would be able to forget all about the UNIX command line. Wrong. I’m back there again, but now I’m armed with a cheat sheet:
Working with files
| Vim command |
Action |
| vi filename |
Opens a file with the Vim editor. |
| :w filename |
Save changes to a file. If you don’t specify a file name, Vim saves as the file name you were editing. For saving the file under a different name, specify the file name.
|
| :q |
Quit Vim. If you have unsaved changes, Vim refuses to exit.
|
| :q! |
Exit Vim without saving changes.
|
| :wq |
Write the file and exit.
|
Moving around in the file
| Vim command |
Action |
| j or Up Arrow |
Move the cursor up one line.
|
| k or Down Arrow |
Down one line.
|
| h or Left Arrow |
Left one character.
|
| l or Right Arrow |
Right one character.
|
| 0 |
To the beginning of a line. |
| $ |
To the end of a line.
|
| :n |
Jump to line number n. |
Inserting and overwriting text
| Vim command |
Action |
| i |
Insert before cursor. |
| o |
Open a new line below and insert. |
| O |
Open a new line above and insert. |
| C |
Change the rest of the current line. |
| r |
Overwrite one character. After overwriting the single character, go back to command mode. |
| R |
Enter insert mode but replace characters rather than inserting. |
| The ESC key |
Exit insert/overwrite mode and go back to command mode. |
Deleting text
| Vim command |
Action |
| x |
Delete characters under the cursor. |
| X |
Delete characters before the cursor. |
| dd or :d |
Delete the current line. |
Undo and redo
| Vim command |
Action |
| u |
Undo the last action. |
| U |
Undo all the latest changes that were made to the current line. |
| Ctrl + r |
Redo. |
There are obviously many more Vim commands out there. Typically if I find myself in a situation where extensive modifications need to be made with a text editor, I will use Crimson Editor on Windows.
The list of commands above are a subset of The Vim commands cheat sheet – 1.2.
Garmin Communicator Plugin v2.9.1.0 - v.2.9.1.0 - 4.98 MB
Garmin updated its Communicator Plugin on November 10, 2009 to the 2.9.1.0 version, an upgrade from version 2.8.3. The Garmin Communicator Plugin is a free internet browser plugin that sends and retrieves data from Garmin GPS devices. The Garmin Communicator can send and retrieve data from any supported website.
The plugin works with IBM-compatible PCs running Windows® XP or Vista operating systems with Internet Explorer 6+ or Firefox 1.5+ Intel-based or PowerPC G3 or later Mac OS 10.4 or later with Firefox 2.0+ or Safari 2.0. It is not compatible with Windows 2000 computers and will not install and/or function properly.
Changes made from version 2.8.3 to 2.9.1:
- Added support for aviation devices like G3X/G300 and aera.
- Added support for AOPA aviation updates.
Garmin’s Communicator Plugin page is located at http://www8.garmin.com/products/communicator/
Garmin Communicator Plugin v2.8.3.0 - v.2.8.3.0 - 6.93 MB
Garmin updated its Communicator Plugin on October 16, 2009 to the 2.8.3.0 version, an upgrade from version 2.8.2. The Garmin Communicator Plugin is a free internet browser plugin that sends and retrieves data from Garmin GPS devices. The Garmin Communicator can send and retrieve data from any supported website.
The plugin works with IBM-compatible PCs running Windows® XP or Vista operating systems with Internet Explorer 6+ or Firefox 1.5+ Intel-based or PowerPC G3 or later Mac OS 10.4 or later with Firefox 2.0+ or Safari 2.0. It is not compatible with Windows 2000 computers and will not install and/or function properly.
Changes made from version 2.8.2 to 2.8.3:
- Fixed a myDashboard-related issue.
Garmin’s Communicator Plugin page is located at http://www8.garmin.com/products/communicator/
from support.sas.com…
The following considerations apply to SAS Enterprise Guide 4.2 customers who have used SAS Enterprise Guide 4.1 or earlier releases.
- Support for SAS Enterprise Guide repositories has been discontinued; all metadata must be stored in a SAS Metadata Repository.
- Servers are no longer administered through SAS Enterprise Guide Explorer, and must now be administered using SAS Management Console. For information about administering servers, see the online Help for SAS Management Console.
- Users and user groups are no longer administered through SAS Enterprise Guide Explorer, and must now be administered using SAS Management Console. For information about administering users, see the online Help for SAS Management Console.
- The project format has changed from earlier releases. To change the format, you must either open each project in SAS Enterprise Guide 4.2 or use the Migration Wizard for SAS Enterprise Guide and the SAS Add-In for Microsoft Office. You must also use the migration wizard to import the metadata changes that occurred during the BI migration from SAS 9.1.3 to SAS 9.2. For more information, see "Using the Migration Wizard" in Administering SAS Enterprise Guide.
- Tasks are no longer enabled or disabled for user groups, so any task assignments for SAS Enterprise Guide users are not maintained. Any restrictions on SAS Enterprise Guide tasks must be made through roles, and administered through SAS Management Console. For information about using roles in SAS Enterprise Guide, see "Administering Role-Based Settings" in Administering SAS Enterprise Guide and the online Help for SAS Management Console.
You probably have many SAS data sets that you regularly work with where numbers are stored as text for formatting purposes. A great example is the social security number, and many other customer, product, or invoice numbers are formatted similarly. They frequently utilize leading zeros in their storage and display. You probably also frequently receive data from colleagues where the same variable is formatted as a numeric value missing the leading zeros. The join that you were going to do with your data and the data received from the colleague just won’t work. Here is a little SAS code that can turn your colleague’s data into a match for yours, and I’ll use social security number (SSN) in this example:
| data DatasetName ; |
|
| set InputDataset ; |
|
| length ssn_char $9. |
/* New Character var for SSN */ |
| ssn_char = put(ssn,z9.) ; |
/* Put the Numeric SSN with the Z9. format */ |
| drop ssn ; |
/* Housecleaning to drop the numeric SSN */ |
| rename ssn_char = ssn ; |
/* Renamed Char SSN to make our Join easier */ |
| run ; |
|
By creating a new Character variable of SSN, I can simply put the Numeric SSN with Z9. format into the variable.
The format Z9. states the variable should be 9-bytes, and for each byte less than 9, put a leading zero in front of the var.
No strip or trim is necessary either.
I used this in the past with a transaction number I was creating (numeric) and later wanted to display it in a title with leading zeros [Example: had 123 as the value, put it with a Z10. and the display in the title was 0000000123].
Thanks to Paula for showing me this trick!
SAS OLAP Server names for cubes, dimensions, hierarchies, measures, and member properties follow these general rules:
- can be up to 32 characters in length
- can contain embedded blanks
If the name has embedded blanks or characters other than letters of the Latin alphabet, numbers, or underscores, then PROC OLAP formats the name as a name literal, which means that it is enclosed within quotation marks followed by the letter n. (Name literals enable you to use special characters or blanks that are not otherwise allowed in SAS names.) Here are some examples:
CUBE=’Financials@HQ’n
DIMENSION ‘Product@Work Dimension’n hierarchies=(Product@Work Hierarchy’n)
HIERARCHY ‘Product@Work Hierarchy’n levels=(prodtype product)
- can contain mixed-case letters
SAS stores and writes the variable name in the same case that is used in the first reference to the variable. However, when SAS processes a variable name, SAS internally converts it to uppercase. You cannot, therefore, use the same variable name with a different combination of uppercase and lowercase letters to represent different variables. For example, cat, Cat, and CAT all represent the same variable.
- do not contain periods (.)
These guidelines assume that the SAS Workspace Server is running with the VALIDVARNAME= system option set to ANY. If the SAS Workspace Server is not running with VALIDVARNAME=ANY, then you can either add code on the Submit SAS Code tab in the Advanced Options dialog box to set the option, or you can modify your names to meet the naming requirements that the server is running with. For more information about the VALIDVARNAME= option, see "VALIDVARNAME= System Option" in SAS Language Reference: Dictionary.
Garmin Communicator Plugin v2.8.2.0 - v.2.8.2 - 6.91 MB
Garmin updated its Communicator Plugin on September 28, 2009 to the 2.8.2.0 version, an upgrade from version 2.8.1. The Garmin Communicator Plugin is a free internet browser plugin that sends and retrieves data from Garmin GPS devices. The Garmin Communicator can send and retrieve data from any supported website.
The plugin works with IBM-compatible PCs running Windows® XP or Vista operating systems with Internet Explorer 6+ or Firefox 1.5+ Intel-based or PowerPC G3 or later Mac OS 10.4 or later with Firefox 2.0+ or Safari 2.0. It is not compatible with Windows 2000 computers and will not install and/or function properly.
Changes made from version 2.8.1 to 2.8.2:
- Change in version number to remain consistent with 2.8.2 Mac release.
Garmin’s Communicator Plugin page is located at http://www8.garmin.com/products/communicator/