From 313c24a366d0b930b7a952da3a30cdcf04fc52b2 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 27 Oct 2004 05:38:07 +0000 Subject: [PATCH] Change example of SI macro to use GUID. Collateral Macros: file.text is not a valid File macro template variable. file.icon is Changed references of "collateral folder" to "name of a collateral folder" Cleaned up grammar in Company Information section. --- lib/WebGUI/i18n/English/WebGUI.pm | 43 +++++++++++++++++-------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm index cacc79478..aa00abfc4 100644 --- a/lib/WebGUI/i18n/English/WebGUI.pm +++ b/lib/WebGUI/i18n/English/WebGUI.pm @@ -245,11 +245,11 @@ The URL for your company specified in the settings by your Administrator. '634' => { message => q|Default Home Page
Some really small sites don't have a home page, but instead like to use one of their internal pages like "About Us" or "Company Information" as their home page. For that reason, you can set the default page of your site to any page in the site. That page will be the one people go to if they type in just your URL http://www.mywebguisite.com, or if they click on the Home link generated by the ^H; navigation macro. -

Not Found Page
If a page that a user requests is not found in the system, the user can be redirected to the home page or to an error page where they can attempt to find what they were looking for. You decide which is better for your users. +

Not Found Page
If a page that a user requests is not found in the system, the user can either be redirected to the home page or to an error page where they can attempt to find what they were looking for. You decide which is better for your users.

URL Extension
Add an extension such as "html", "php", or "asp" to each new page URL as it is created.

NOTE: Do NOT include the dot "." in this. So the field should look like "html" not ".html". -

Favicon
An icon that appears on Internet Explorer short cuts such as your "Favorites". To learn more about Favicon click here. +

Favicon
An icon that appears on Internet Explorer short cuts such as your "Favorites". More information about Favicon is available online.

Site Icon
An icon that appears in the URL bar of most modern browsers. It may also appear in the bookmarks of the browser. The image must be 16x16 pixels. @@ -261,14 +261,17 @@ The URL for your company specified in the settings by your Administrator.

Snippet Preview Length
How many characters of a snippet should be displayed in the collateral management system main listing. -

Text Area Rows
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many rows of characters will be displayed in textareas on the site. +Text Area Rows, Text Area Columns and Text Box Size allow the size of +forms that WebGUI generates to be customized on a site-by-site basis. -

Text Area Columns
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how many columns of characters will be displayed in textareas on the site. +

Text Area Rows
This setting specifies how many rows of characters will be displayed in textareas on the site. -

Text Box Size
Some sites wish to control the size of the forms that WebGUI generates. With this setting you can specify how characters can be displayed at once in text boxes on the site. +

Text Area Columns
This setting specifies how many columns of characters will be displayed in textareas on the site. + +

Text Box Size
This setting specifies how many characters can be displayed at once in text boxes on the site. |, - lastUpdated => 1096822339 + lastUpdated => 1098855329 }, '1021' => { @@ -2708,8 +2711,11 @@ Settings relating to users (beyond profile information), like authentication inf

Title
The name of the item in the trash. You may view the item by selecting the title.

Type
The type of content. For instance, a Page, Article, EventsCalendar, etc.

Trash Date
The date and time the item was added to the trash -

Previous Location
The location where the item was previously found. You may view the previous location by selecting the location.

Username
The username of the individual who placed the item in the trash. This optional field is only visible in shared trash environments or when an administrator is managing the system trash.|, - lastUpdated => 1052850265 +

Previous Location
The location where the item was previously found. You may view the previous location by selecting the location.

Username
The username of the individual who placed the item in the trash. This optional field is only visible in shared trash environments or when an administrator is managing the system trash. +

Note that when Pages are in the clipboard that their URLs are still active in the WebGUI +system. If another page with an identical URL is created, the URL of the newly created page +will be modified to make it unique.|, + lastUpdated => 1098850305 }, '651' => { @@ -3565,7 +3571,7 @@ This macro builds a quick file link. It creates an icon for the file and outputs file.url
The URL to the file.

-file.text
+file.icon
The file's icon.

file.name
@@ -3574,9 +3580,6 @@ The name of the file. file.size
The size of the file.

-file.text
-The file's icon. -

file.thumbnail
The file's thumbnail. @@ -3596,13 +3599,13 @@ This macro retrieves the URL for any file in the collateral management system. ^RandomImage();
-This macro takes a collateral folder as a parameter. If the folder name is omitted, then the root folder will be used. The macro then randomly chooses an image in the folder and returns it in much the same way the ^I(); macro works. +This macro takes the name of a collateral folder as a parameter. If the folder name is omitted, then the root folder will be used. The macro then randomly chooses an image in the folder and returns it in much the same way the ^I(); macro works.

Example: ^RandomImage("site headers");

^RandomSnippet();
-This macro takes a collateral folder as a parameter. If the folder name is omitted, then the root folder will be used. The macro then randomly chooses a snippet from the folder and returns it in much the same way the ^Snippet(); macro works. +This macro takes the name of a collateral folder as a parameter. If the folder name is omitted, then the root folder will be used. The macro then randomly chooses a snippet from the folder and returns it in much the same way the ^Snippet(); macro works.

Example: ^RandomSnippet("quips");

@@ -3618,19 +3621,19 @@ Retrieving an image by name (no scaling)
^SI(myimage);

Retrieving an image by collateralId (no scaling)
-^SI(66); +^SI(8ucfhA1Joswj59UFIubr1Q);

Scaling by width, maintaining aspect ratio
-^SI(66,25); +^SI(8ucfhA1Joswj59UFIubr1Q,25);

Scaling by height, maintaining aspect ratio
-^SI(66,0,25); +^SI(8ucfhA1Joswj59UFIubr1Q,0,25);

Playing with the aspect ratio
-^SI(66,148,25); +^SI(8ucfhA1Joswj59UFIubr1Q,148,25);

Using parameters
-^SI(66,0,0,'border="0"'); +^SI(8ucfhA1Joswj59UFIubr1Q,0,0,'border="0"');

@@ -3646,7 +3649,7 @@ This macro retrieves the URL for the thumbnail of any image in the collateral ma Example: ^Thumbnail("logo");

|, - lastUpdated => 1089730066 + lastUpdated => 1098855400 }, '736' => {