diff --git a/lib/WebGUI/Help/Asset_Search.pm b/lib/WebGUI/Help/Asset_Search.pm index 9854da0b3..bb9989028 100644 --- a/lib/WebGUI/Help/Asset_Search.pm +++ b/lib/WebGUI/Help/Asset_Search.pm @@ -41,6 +41,28 @@ our $HELP = { body => 'search template body', fields => [ ], + variables => [ + { + 'name' => 'form_header', + required => 1, + }, + { + 'name' => 'form_footer', + required => 1, + }, + { + 'name' => 'form_submit', + required => 1, + }, + { + 'name' => 'form_keywords', + required => 1, + }, + { + 'name' => 'result_set', + required => 1, + } + ], related => [ { tag => 'asset fields', diff --git a/lib/WebGUI/Help/Asset_SyndicatedContent.pm b/lib/WebGUI/Help/Asset_SyndicatedContent.pm index 496d3c1bc..9b62bef19 100644 --- a/lib/WebGUI/Help/Asset_SyndicatedContent.pm +++ b/lib/WebGUI/Help/Asset_SyndicatedContent.pm @@ -57,6 +57,57 @@ our $HELP = { body => '73', fields => [ ], + variables => [ + { + 'name' => 'channel.title' + }, + { + 'name' => 'channel.description' + }, + { + 'name' => 'channel.link' + }, + { + 'name' => 'rss.url', + 'variables' => [ + { + 'name' => 'rss.url.0.9' + }, + { + 'name' => 'rss.url.0.91' + }, + { + 'name' => 'rss.url.1.0' + }, + { + 'name' => 'rss.url.2.0' + } + ] + }, + { + 'name' => 'item_loop', + 'variables' => [ + { + 'name' => 'site_title' + }, + { + 'name' => 'site_link' + }, + { + 'name' => 'new_rss_site' + }, + { + 'name' => 'title' + }, + { + 'name' => 'description' + }, + { + 'name' => 'link' + } + ] + } + ], related => [ { tag => 'syndicated content add/edit', diff --git a/lib/WebGUI/Help/Asset_WSClient.pm b/lib/WebGUI/Help/Asset_WSClient.pm index 4cbb73ebb..4ccf2b91a 100644 --- a/lib/WebGUI/Help/Asset_WSClient.pm +++ b/lib/WebGUI/Help/Asset_WSClient.pm @@ -90,6 +90,43 @@ our $HELP = { 'ws client template' => { title => '72', body => '73', + variables => [ + { + 'name' => 'disableWobject' + }, + { + 'name' => 'results', + 'variables' => [ + { + 'name' => 'numResults' + }, + { + 'name' => 'firstPage' + }, + { + 'name' => 'lastPage' + }, + { + 'name' => 'nextPage' + }, + { + 'name' => 'pageList' + }, + { + 'name' => 'previousPage' + }, + { + 'name' => 'multiplePages' + }, + { + 'name' => 'numberOfPages' + }, + { + 'name' => 'pageNumber' + } + ] + } + ], fields => [ ], related => [ diff --git a/lib/WebGUI/i18n/English/Asset_Search.pm b/lib/WebGUI/i18n/English/Asset_Search.pm index c32f65352..38b524394 100644 --- a/lib/WebGUI/i18n/English/Asset_Search.pm +++ b/lib/WebGUI/i18n/English/Asset_Search.pm @@ -49,30 +49,35 @@ our $I18N = { ##hashref of hashes context => q|hover help for search root| }, + 'form_header' => { + message => q|HTML Code to begin the search form|, + lastUpdated => 1149567859, + }, + + 'form_footer' => { + message => q|HTML Code to end the search form|, + lastUpdated => 1149567859, + }, + + 'form_submit' => { + message => q|A button to allow the user to submit a search.|, + lastUpdated => 1149567859, + }, + + 'form_keywords' => { + message => q|A form to let the user enter in keywords for the search.|, + lastUpdated => 1149567859, + }, + + 'result_set' => { + message => q|Paginated search results with pagination controls.|, + lastUpdated => 1149567859, + }, + 'search template body' => { message => q|

The following template variables are available for Search Asset templates. All of these variables are required.

- -

form_header*
-HTML Code to begin the search form -

- -

form_footer*
-HTML Code to end the search form -

- -

form_submit*
-A button to allow the user to submit a search. -

- -

form_keywords*
-A form to let the user enter in keywords for the search. -

- -

result_set*
-Paginated search results with pagination controls. -

|, - lastUpdated => 1142051703, + lastUpdated => 1149567912, }, 'add/edit title' => { diff --git a/lib/WebGUI/i18n/English/Asset_SyndicatedContent.pm b/lib/WebGUI/i18n/English/Asset_SyndicatedContent.pm index bafcc27df..5a52c9805 100644 --- a/lib/WebGUI/i18n/English/Asset_SyndicatedContent.pm +++ b/lib/WebGUI/i18n/English/Asset_SyndicatedContent.pm @@ -54,86 +54,94 @@ these unique properties: | }, + 'channel.title' => { + message => q|The title of this piece of syndicated content. This will be the same as the title of the Syndicated Content object when you're creating an aggregate feed.|, + lastUpdated => 1149567508, + }, + + 'channel.description' => { + message => q|A description of the content available through this channel. This will be the same as the description of the Syndicated Content object when you're creating an aggregate feed.|, + lastUpdated => 1149567508, + }, + + 'channel.link' => { + message => q|A URL back to the originating site of this channel. This variable *will not* exist when you're creating an aggregate feed, because there's no single channel to link to.|, + lastUpdated => 1149567508, + }, + + 'rss.url' => { + message => q|This is the URL to use to get the contents of this Syndicated Content wobject as an RSS 2.0 feed. Additionally, you can specify RSS versions via the following template variables:|, + lastUpdated => 1149567508, + }, + + 'rss.url.0.9' => { + message => q|The contents of this wobject as an RSS 0.9 feed.|, + lastUpdated => 1149567508, + }, + + 'rss.url.0.91' => { + message => q|The contents of this wobject as an RSS 0.91 feed.|, + lastUpdated => 1149567508, + }, + + 'rss.url.1.0' => { + message => q|The contents of this wobject as an RSS 1.0 feed.|, + lastUpdated => 1149567508, + }, + + 'rss.url.2.0' => { + message => q|The contents of this wobject as an RSS 2.0 feed.|, + lastUpdated => 1149567508, + }, + + 'item_loop' => { + message => q|A loop containing the data from this channel.|, + lastUpdated => 1149567508, + }, + + 'site_title' => { + message => q|The title of the RSS feed this item comes from|, + lastUpdated => 1149567508, + }, + + 'site_link' => { + message => q|Link to the source RSS feed.|, + lastUpdated => 1149567508, + }, + + 'new_rss_site' => { + message => q|A "boolean" variable (suitable for using in a <tmpl_if> tag) that indicates we've started outputting items from a source RSS feed different than the previous item. This is most useful when you're viewing feeds in "grouped" mode- it gives you a hook to output site_title and site_link at the right time.|, + lastUpdated => 1149567508, + }, + + 'title' => { + message => q|The title of a piece of content. If you're filtering on terms, this field will be inspected.|, + lastUpdated => 1149567508, + }, + + 'description' => { + message => q|The description of the content. If you're filtering on terms, this field will be inspected as well.|, + lastUpdated => 1149567508, + }, + + 'link' => { + message => q|A URL directly to the content of the item.|, + lastUpdated => 1149567508, + }, + '72' => { lastUpdated => 1047855526, message => q|Syndicated Content Template| }, '73' => { - lastUpdated => 1047855526, - message => q|The following are the template variables available to the Syndicated Content template. - -

channel.title
-The title of this piece of syndicated content. This will be the same as the title of the Syndicated Content object when you're creating an aggregate feed. -

- -

channel.description
-A description of the content available through this channel. This will be the same as the description of the Syndicated Content object when you're creating an aggregate feed. -

- -

channel.link
-A URL back to the originating site of this channel. This variable *will not* exist when you're creating an aggregate feed, because there's no single channel to link to. -

- -

rss.url
-This is the URL to use to get the contents of this Syndicated Content wobject as an RSS 2.0 feed. Additionally, you can specify RSS versions via the following template variables: -

- -
- -

rss.url.0.9
-The contents of this wobject as an RSS 0.9 feed. -

- -

rss.url.0.91
-The contents of this wobject as an RSS 0.91 feed. -

- -

rss.url.1.0
-The contents of this wobject as an RSS 1.0 feed. -

- -

rss.url.2.0
-The contents of this wobject as an RSS 2.0 feed. -

- -
+ lastUpdated => 1149567527, + message => q|

The following are the template variables available to the Syndicated Content template:

Additionally, RSS feeds are transformed into HTML via XSLT stylesheets for "friendly" in-browser viewing. These XSLT stylesheets are stored in the WebGUI collateral system as snippets.

- -

item_loop
-A loop containing the data from this channel. -

- -
- -

site_title
-The title of the RSS feed this item comes from -

- -

site_link
-Link to the source RSS feed. -

- -

new_rss_site
-A "boolean" variable (suitable for using in a <tmpl_if> tag) that indicates we've started outputting items from a source RSS feed different than the previous item. This is most useful when you're viewing feeds in "grouped" mode- it gives you a hook to output site_title and site_link at the right time. -

- -

title
-The title of a piece of content. If you're filtering on terms, this field will be inspected. -

- -

description
-The description of the content. If you're filtering on terms, this field will be inspected as well. -

- -

link -A URL directly to the content of the item. -

- -
|, - }, +|, + }, 'displayModeLabel' => { lastUpdated => 1047855526, diff --git a/lib/WebGUI/i18n/English/Asset_WSClient.pm b/lib/WebGUI/i18n/English/Asset_WSClient.pm index c3bf1e9a8..802f5ea59 100644 --- a/lib/WebGUI/i18n/English/Asset_WSClient.pm +++ b/lib/WebGUI/i18n/English/Asset_WSClient.pm @@ -216,44 +216,68 @@ property allows you to override the default MIME type for this page.|, lastUpdated => 1033575504 }, - '73' => { - message => q|This is the list of template variables available for Web Services Client templates. + 'disableWobject' => { + message => q|If the page was called with a form param of disableWobjects, this variable will +be set to true.|, + lastUpdated => 1149568071, + }, -

disableWobject
-If the page was called with a form param of disableWobjects, this variable will -be set to true. -

- -

results
-This loop contains all the results from + 'results' => { + message => q|This loop contains all the results from the SOAP call. Within the loop, you may access specific data elements by the -names set for them by the SOAP server (i.e. perhaps "localTime" for a time query). In addition, there are a number of special template variables: -

+names set for them by the SOAP server (i.e. perhaps "localTime" for a time query). In addition, there are a number of special template variables:|, + lastUpdated => 1149568071, + }, -
+ 'numResults' => { + message => q|Number of rows found by the client, if an array was returned.|, + lastUpdated => 1149568071, + }, -

numResults
-Number of rows found by the client, if an array was returned.

+ 'firstPage' => { + message => q|Link to first page in a paginated set.|, + lastUpdated => 1149568071, + }, -

firstPage
Link to first page in a paginated set.

+ 'lastPage' => { + message => q|Link to last page in a paginated set.|, + lastUpdated => 1149568071, + }, -

lastPage
Link to last page in a paginated set.

+ 'nextPage' => { + message => q|Link to next page in a paginated set.|, + lastUpdated => 1149568071, + }, -

nextPage
Link to next page in a paginated set.

+ 'pageList' => { + message => q|List of all pages in a paginated set.|, + lastUpdated => 1149568071, + }, -

pageList
List of all pages in a paginated set.

+ 'previousPage' => { + message => q|Link to previous page in a paginated set.|, + lastUpdated => 1149568071, + }, -

previousPage
Link to previous page in a paginated set.

+ 'multiplePages' => { + message => q|Boolean indicating multiple pages in a paginated set.|, + lastUpdated => 1149568071, + }, -

multiplePages
Boolean indicating multiple pages in a paginated set.

+ 'numberOfPages' => { + message => q|Number of pages in a paginated set.|, + lastUpdated => 1149568071, + }, -

numberOfPages
Number of pages in a paginated set.

+ 'pageNumber' => { + message => q|Current page number in a paginated set.|, + lastUpdated => 1149568071, + }, -

pageNumber
Current page number in a paginated set. -

- -
|, - lastUpdated => 1111122637 + '73' => { + message => q|

This is the list of template variables available for Web Services Client templates.

+|, + lastUpdated => 1149568096 }, '24' => {