XHTML fixes for Help
This commit is contained in:
parent
d980882d1c
commit
e6d6aee9f0
7 changed files with 17 additions and 17 deletions
|
|
@ -22,6 +22,7 @@
|
|||
Palamara)
|
||||
- fix: Paginator: addDataByArrayRef off by one error (perlDreamer Consulting
|
||||
LLC)
|
||||
- fix: English help, really XHTML fixes (thanks to Klaus)
|
||||
|
||||
7.3.3
|
||||
- fix: Wiki Purge throws fatal
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ be useful, others may not.|,
|
|||
|
||||
'new.template' => {
|
||||
message => q|Articles have the special ability to change their template so that you can allow users to see different views of the article. You do this by creating a link with a URL like this (replace 999 with the template Id you wish to use):
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="<tmpl_var new.template>999">Read more...</a>|,
|
||||
lastUpdated => 1148960553,
|
||||
|
|
|
|||
|
|
@ -453,8 +453,8 @@ a Google sitemap of your site or RSS feeds.</p>
|
|||
|
||||
'page.depthIsN' => {
|
||||
message => q|A conditional indicating whether the depth of this page is N. This variable is useful if you want to style a certain level.
|
||||
</p>
|
||||
<p><tmpl_if page.depthIs1><br />
|
||||
<br />
|
||||
<br /><tmpl_if page.depthIs1><br />
|
||||
<img src="level1.gif"><br /><tmpl_else><br /> <img src="defaultBullet.gif"><br /></tmpl_if>|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1202,8 +1202,8 @@ variable.|,
|
|||
|
||||
'searchFormTrash.label' => {
|
||||
message => q|The label for the search in trash option. Available in normal and advanced search. Only use this if you are
|
||||
not using the complete <b>searchForm</b>.</p>
|
||||
<p><b>searchFormTrash.form</b><br />
|
||||
not using the complete <b>searchForm</b>.<br />
|
||||
<br /><b>searchFormTrash.form</b><br />
|
||||
The form Element for the search in trash option. Available in normal and advanced search. Only use this if you are
|
||||
not using the complete <b>searchForm</b>.|,
|
||||
lastUpdated => 1149822982,
|
||||
|
|
@ -1223,8 +1223,8 @@ not using the complete <b>searchForm</b>.|,
|
|||
|
||||
'searchFormQuery.label' => {
|
||||
message => q|The label for the search query. Available in normal search. Only use this if you are
|
||||
not using the complete <b>searchForm</b>.</p>
|
||||
<p><b>searchFormQuery.form</b><br />
|
||||
not using the complete <b>searchForm</b>.<br />
|
||||
<br /><b>searchFormQuery.form</b><br />
|
||||
The form Element for the search query. Available in normal search. Only use this if you are
|
||||
not using the complete <b>searchForm</b>.|,
|
||||
lastUpdated => 1149822982,
|
||||
|
|
|
|||
|
|
@ -924,12 +924,12 @@ to add or remove users from their groups.
|
|||
|
||||
'head.tags' => {
|
||||
message => q|Tags that WebGUI automatically generates for you so that caching works the way it should, search engines can find you better, and other useful automated functionality. This should go in the <head> </head> section of your style.
|
||||
</p>
|
||||
<p>We suggest using something like this in the <title> </title> portion of your style:
|
||||
</p>
|
||||
<p><tmpl_var session.page.title> - <tmpl_var session.setting.companyName>
|
||||
</p>
|
||||
<p>That particular example will help you get good ranking on search engines.|,
|
||||
<br />
|
||||
<br />We suggest using something like this in the <title> </title> portion of your style:
|
||||
<br />
|
||||
<br /><tmpl_var session.page.title> - <tmpl_var session.setting.companyName>
|
||||
<br />
|
||||
<br />That particular example will help you get good ranking on search engines.|,
|
||||
lastUpdated => 1149182155,
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -8,9 +8,7 @@ our $I18N = {
|
|||
},
|
||||
|
||||
'expire subscription codes body' => {
|
||||
message => q|<p>This workflow activity will go through all subscription codes and expire any subscription code whose status is unused after the expiration date for the subscription code has passed. The expiration date is calculated from the date it was created and interval it was set to expire.</p>
|
||||
<p>
|
||||
|,
|
||||
message => q|<p>This workflow activity will go through all subscription codes and expire any subscription code whose status is unused after the expiration date for the subscription code has passed. The expiration date is calculated from the date it was created and interval it was set to expire.</p>|,
|
||||
lastUpdated => 0,
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ my $startingRowNum = 0;
|
|||
my $endingRowNum = 99;
|
||||
my @paginatingData = ($startingRowNum..$endingRowNum);
|
||||
|
||||
plan tests => 11; # increment this value for each test you create
|
||||
plan tests => 12; # increment this value for each test you create
|
||||
|
||||
my $rowCount = $endingRowNum - $startingRowNum + 1;
|
||||
my $NumberOfPages = ceil($rowCount/25); ##Default page size=25
|
||||
|
|
@ -65,3 +65,4 @@ cmp_bag([0..24], $p->getPageData(1), '(101) page 1 data correct');
|
|||
cmp_bag([25..49], $p->getPageData(2), '(101) page 2 data correct');
|
||||
cmp_bag([100 ], $p->getPageData(5), '(101) page 5 data correct');
|
||||
|
||||
is($p->getPageNumber, 1, 'Default page number is 1');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue