You are viewing a plain text version of this content. The canonical link for it is here.
Posted to imperius-commits@incubator.apache.org by pr...@apache.org on 2008/03/05 16:43:17 UTC

svn commit: r633924 - in /incubator/imperius/site: build/site/en/docs/ build/tmp/ build/tmp/cocoon-work/cache-dir/ src/documentation/content/xdocs/docs/

Author: prabalig
Date: Wed Mar  5 08:43:16 2008
New Revision: 633924

URL: http://svn.apache.org/viewvc?rev=633924&view=rev
Log:
fixed some typos in the spl reference doc

Modified:
    incubator/imperius/site/build/site/en/docs/spl_reference.html
    incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.data
    incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.index
    incubator/imperius/site/build/tmp/pluginlist2fetchbuild.xml
    incubator/imperius/site/build/tmp/projfilters.properties
    incubator/imperius/site/src/documentation/content/xdocs/docs/spl_reference.xml

Modified: incubator/imperius/site/build/site/en/docs/spl_reference.html
URL: http://svn.apache.org/viewvc/incubator/imperius/site/build/site/en/docs/spl_reference.html?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
--- incubator/imperius/site/build/site/en/docs/spl_reference.html (original)
+++ incubator/imperius/site/build/site/en/docs/spl_reference.html Wed Mar  5 08:43:16 2008
@@ -1058,7 +1058,7 @@
 <td colspan="1" rowspan="1"><strong>ReplaceSubString</strong></td>
             <td colspan="1" rowspan="1">Returns a string resulting from replacing all instances of the
                fromSubstring with toSubstring in a given string.</td>
-            <td colspan="1" rowspan="1">MatchesRegExp( &lt;string expression1&gt;,&lt;from string expression&gt;,&lt;to string expression&gt;)</td>
+            <td colspan="1" rowspan="1">ReplaceSubString( &lt;string expression1&gt;,&lt;from string expression&gt;,&lt;to string expression&gt;)</td>
             <td colspan="1" rowspan="1"> ReplaceSubString(name,"cat","dog") </td>
           
 </tr>
@@ -1231,7 +1231,7 @@
 <td colspan="1" rowspan="1"><strong>InCollection</strong></td>
             <td colspan="1" rowspan="1">Returns true if the given value is a member of the collection (of compatible type) </td>
             <td colspan="1" rowspan="1">InCollection( &lt;expression&gt;,&lt;collection&gt;)</td>
-            <td colspan="1" rowspan="1"> EqCollection(2,arr1) //where arr1 = [2,3,4]  returns true</td>
+            <td colspan="1" rowspan="1"> InCollection(2,arr1) //where arr1 = [2,3,4]  returns true</td>
           
 </tr> 
           
@@ -1330,8 +1330,8 @@
 <td colspan="1" rowspan="1"><strong>GetDayOfWeek</strong></td>
             <td colspan="1" rowspan="1">Returns the day of week for the given datetime argument. Sunday = 1, Monday = 2 etc
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td colspan="1" rowspan="1">GetDayOfMonth(&lt;datetime&gt;)</td>
-            <td colspan="1" rowspan="1"> GetDayOfMonth("20081013143920.000000-300") //returns 2</td>
+            <td colspan="1" rowspan="1">GetDayOfWeek(&lt;datetime&gt;)</td>
+            <td colspan="1" rowspan="1"> GetDayOfWeek("20081013143920.000000-300") //returns 2</td>
           
 </tr>    
           
@@ -1354,8 +1354,8 @@
 <td colspan="1" rowspan="1"><strong>GetDayOfYear</strong></td>
             <td colspan="1" rowspan="1">Returns the day of year for the given datetime argument. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td colspan="1" rowspan="1">GetDayOfMonth(&lt;datetime&gt;)</td>
-            <td colspan="1" rowspan="1"> GetDayOfMonth("20080113143920.000000-300") //returns 13</td>
+            <td colspan="1" rowspan="1">GetDayOfYear(&lt;datetime&gt;)</td>
+            <td colspan="1" rowspan="1"> GetDayOfYear("20080113143920.000000-300") //returns 13</td>
           
 </tr>
           
@@ -1374,8 +1374,8 @@
 <td colspan="1" rowspan="1"><strong>GetHour24</strong></td>
             <td colspan="1" rowspan="1">Returns the hour for the given datetime argument in 24 hr format. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td colspan="1" rowspan="1">GetHour12(&lt;datetime&gt;)</td>
-            <td colspan="1" rowspan="1"> GetHour12("20080113143920.000000-300") //returns 14</td>
+            <td colspan="1" rowspan="1">GetHour24(&lt;datetime&gt;)</td>
+            <td colspan="1" rowspan="1"> GetHour24("20080113143920.000000-300") //returns 14</td>
           
 </tr>
           
@@ -1384,8 +1384,8 @@
 <td colspan="1" rowspan="1"><strong>GetMillisecond</strong></td>
             <td colspan="1" rowspan="1">Returns the millisecond for the given datetime argument. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td colspan="1" rowspan="1">GetHour12(&lt;datetime&gt;)</td>
-            <td colspan="1" rowspan="1"> GetHour12("20080113143920.000234-300") //returns 234</td>
+            <td colspan="1" rowspan="1">GetMillisecond(&lt;datetime&gt;)</td>
+            <td colspan="1" rowspan="1"> GetMillisecond("20080113143920.000234-300") //returns 234</td>
           
 </tr>
           

Modified: incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.data
URL: http://svn.apache.org/viewvc/incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.data?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.index
URL: http://svn.apache.org/viewvc/incubator/imperius/site/build/tmp/cocoon-work/cache-dir/cocoon-ehcache-1.index?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/imperius/site/build/tmp/pluginlist2fetchbuild.xml
URL: http://svn.apache.org/viewvc/incubator/imperius/site/build/tmp/pluginlist2fetchbuild.xml?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
--- incubator/imperius/site/build/tmp/pluginlist2fetchbuild.xml (original)
+++ incubator/imperius/site/build/tmp/pluginlist2fetchbuild.xml Wed Mar  5 08:43:16 2008
@@ -38,7 +38,7 @@
 <echo>Trying to locally get ${local-plugin-name}${local-plugin-version}</echo>
 <trycatch property="plugin-found">
 <try>
-<for param="plugin-src-dir" list="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8/plugins,C:\neeraj\downloads\apacheprojects\apache-forrest-0.8/whiteboard/plugins">
+<for param="plugin-src-dir" list="C:\apache-forrest-0.8\apache-forrest-0.8/plugins,C:\apache-forrest-0.8\apache-forrest-0.8/whiteboard/plugins">
 <sequential>
 <echo>Looking in local @{plugin-src-dir}</echo>
 <if>
@@ -61,10 +61,10 @@
 </target>
 <target depends="keep-original-zip,get-from-remote-site,is-downloaded,remove-original-zip" name="download"/>
 <target if="original.zip.exists" depends="available-original-zip" name="keep-original-zip">
-<copy preservelastmodified="true" file="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip" tofile="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
+<copy preservelastmodified="true" file="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip" tofile="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
 </target>
 <target name="available-original-zip">
-<available property="original.zip.exists" file="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
+<available property="original.zip.exists" file="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
 </target>
 <target name="get-from-remote-site">
 <echo>Tying to download ${download-plugin-name}${download-plugin-version} from the distribution site ...</echo>
@@ -76,8 +76,8 @@
 <echo>Using Forrest version : ${download-forrest-version}</echo>
 </then>
 </if>
-<get ignoreerrors="true" usetimestamp="true" verbose="true" src="http://forrest.apache.org/plugins//${download-forrest-version}${download-plugin-name}${download-plugin-version}.zip" dest="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
-<available property="desired.plugin.zip.present" file="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
+<get ignoreerrors="true" usetimestamp="true" verbose="true" src="http://forrest.apache.org/plugins//${download-forrest-version}${download-plugin-name}${download-plugin-version}.zip" dest="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
+<available property="desired.plugin.zip.present" file="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip"/>
 <condition property="plugin-found">
 <and>
 <isset property="desired.plugin.zip.present"/>
@@ -88,7 +88,7 @@
 </condition>
 </target>
 <target if="original.zip.exists" name="is-downloaded">
-<uptodate property="no-difference-found" srcfile="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip" targetfile="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
+<uptodate property="no-difference-found" srcfile="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip" targetfile="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
 <if>
 <not>
 <isset property="no-difference-found"/>
@@ -99,7 +99,7 @@
 </if>
 </target>
 <target if="original.zip.exists" name="remove-original-zip">
-<delete file="C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
+<delete file="C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/${download-plugin-name}.zip.orig"/>
 </target>
 <target depends="has-been-downloaded,downloaded-message,uptodate-message,not-found-message" name="final-check"/>
 <target if="desired.plugin.zip.present" name="has-been-downloaded">
@@ -139,6 +139,6 @@
   To manually install a plugin, download the plugin zip file from
   http://forrest.apache.org/plugins/ and
   extract it into
-  C:\neeraj\downloads\apacheprojects\apache-forrest-0.8\build\plugins/org.apache.forrest.plugin.output.pdf</fail>
+  C:\apache-forrest-0.8\apache-forrest-0.8\build\plugins/org.apache.forrest.plugin.output.pdf</fail>
 </target>
 </project>

Modified: incubator/imperius/site/build/tmp/projfilters.properties
URL: http://svn.apache.org/viewvc/incubator/imperius/site/build/tmp/projfilters.properties?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
--- incubator/imperius/site/build/tmp/projfilters.properties (original)
+++ incubator/imperius/site/build/tmp/projfilters.properties Wed Mar  5 08:43:16 2008
@@ -1,30 +1,30 @@
 #Ant properties
-#Wed Feb 27 14:53:55 EST 2008
+#Wed Mar 05 22:09:19 IST 2008
 project.sitemap=src/documentation/sitemap.xmap
-project.war=C\:\\neeraj\\spl\\workspace\\imperius-final\\site\\build\\my-project.war
+project.war=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1\\build\\my-project.war
 project.name=my-project
-project.brokenlinkfile=C\:\\neeraj\\spl\\workspace\\imperius-final\\site\\build\\tmp\\brokenlinks.xml
+project.brokenlinkfile=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1\\build\\tmp\\brokenlinks.xml
 project.stylesheets-dir=src/documentation/resources/stylesheets
-project.webapp=C\:\\neeraj\\spl\\workspace\\imperius-final\\site\\build\\webapp
+project.webapp=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1\\build\\webapp
 project.skinconf=src/documentation/skinconf.xml
 project.debuglevel=ERROR
 project.skin=pelt
-project.configfile=C\:\\neeraj\\downloads\\apacheprojects\\apache-forrest-0.8\\main\\webapp/WEB-INF/cli.xconf
+project.configfile=C\:\\apache-forrest-0.8\\apache-forrest-0.8\\main\\webapp/WEB-INF/cli.xconf
 project.images-dir=src/documentation/resources/images
 project.conf-dir=src/documentation/conf
-project.temp-dir=C\:\\neeraj\\spl\\workspace\\imperius-final\\site/build/tmp
+project.temp-dir=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1/build/tmp
 project.translations-dir=src/documentation/translations
 project.menu-scheme=tab_attributes
 project.lib-dir=src/documentation/lib
-project.build-dir=C\:\\neeraj\\spl\\workspace\\imperius-final\\site/build
+project.build-dir=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1/build
 project.classes-dir=src/documentation/classes
 project.resources-dir=src/documentation/resources
 project.grammars-dir=src/documentation/resources/grammars
 project.start-uri=linkmap.html
 project.sitemap-dir=src/documentation
-project.required.plugins.src=C\:\\neeraj\\downloads\\apacheprojects\\apache-forrest-0.8/plugins,C\:\\neeraj\\downloads\\apacheprojects\\apache-forrest-0.8/whiteboard/plugins
+project.required.plugins.src=C\:\\apache-forrest-0.8\\apache-forrest-0.8/plugins,C\:\\apache-forrest-0.8\\apache-forrest-0.8/whiteboard/plugins
 project.logger=debug
-project.cocoon-work-dir=C\:\\neeraj\\spl\\workspace\\imperius-final\\site\\build\\tmp\\cocoon-work
+project.cocoon-work-dir=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1\\build\\tmp\\cocoon-work
 project.schema-dir=src/documentation/resources/schema
 project.status=status.xml
 project.xdocs-dir=src/documentation/content/xdocs
@@ -33,9 +33,9 @@
 project.skins-dir=src/documentation/skins
 project.i18n=true
 project.catalog=src/documentation/resources/schema/catalog.xcat
-project.site-dir=C\:\\neeraj\\spl\\workspace\\imperius-final\\site\\build\\site\\en
+project.site-dir=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1\\build\\site\\en
 project.site=site
 project.raw-content-dir=src/documentation/content
 project.content-dir=src/documentation
-project.logkitfile=C\:\\neeraj\\downloads\\apacheprojects\\apache-forrest-0.8\\main\\webapp/WEB-INF/logkit.xconf
-project.home=C\:\\neeraj\\spl\\workspace\\imperius-final\\site
+project.logkitfile=C\:\\apache-forrest-0.8\\apache-forrest-0.8\\main\\webapp/WEB-INF/logkit.xconf
+project.home=C\:\\CIMSPL\\CIMSPL_CVS_CHECKOUT_3\\imperiusSite_1

Modified: incubator/imperius/site/src/documentation/content/xdocs/docs/spl_reference.xml
URL: http://svn.apache.org/viewvc/incubator/imperius/site/src/documentation/content/xdocs/docs/spl_reference.xml?rev=633924&r1=633923&r2=633924&view=diff
==============================================================================
--- incubator/imperius/site/src/documentation/content/xdocs/docs/spl_reference.xml (original)
+++ incubator/imperius/site/src/documentation/content/xdocs/docs/spl_reference.xml Wed Mar  5 08:43:16 2008
@@ -696,7 +696,7 @@
             <td><strong>ReplaceSubString</strong></td>
             <td>Returns a string resulting from replacing all instances of the
                fromSubstring with toSubstring in a given string.</td>
-            <td>MatchesRegExp( &lt;string expression1&gt;,&lt;from string expression&gt;,&lt;to string expression&gt;)</td>
+            <td>ReplaceSubString( &lt;string expression1&gt;,&lt;from string expression&gt;,&lt;to string expression&gt;)</td>
             <td> ReplaceSubString(name,&quot;cat&quot;,&quot;dog&quot;) </td>
           </tr>
           <tr>
@@ -826,7 +826,7 @@
             <td><strong>InCollection</strong></td>
             <td>Returns true if the given value is a member of the collection (of compatible type) </td>
             <td>InCollection( &lt;expression&gt;,&lt;collection&gt;)</td>
-            <td> EqCollection(2,arr1) //where arr1 = [2,3,4]  returns true</td>
+            <td> InCollection(2,arr1) //where arr1 = [2,3,4]  returns true</td>
           </tr> 
           <tr>
             <td><strong>Max</strong></td>
@@ -896,8 +896,8 @@
             <td><strong>GetDayOfWeek</strong></td>
             <td>Returns the day of week for the given datetime argument. Sunday = 1, Monday = 2 etc
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td>GetDayOfMonth(&lt;datetime&gt;)</td>
-            <td> GetDayOfMonth(&quot;20081013143920.000000-300&quot;) //returns 2</td>
+            <td>GetDayOfWeek(&lt;datetime&gt;)</td>
+            <td> GetDayOfWeek(&quot;20081013143920.000000-300&quot;) //returns 2</td>
           </tr>    
           <tr>
             <td><strong>GetDayOfWeekInMonth</strong></td>
@@ -914,8 +914,8 @@
             <td><strong>GetDayOfYear</strong></td>
             <td>Returns the day of year for the given datetime argument. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td>GetDayOfMonth(&lt;datetime&gt;)</td>
-            <td> GetDayOfMonth(&quot;20080113143920.000000-300&quot;) //returns 13</td>
+            <td>GetDayOfYear(&lt;datetime&gt;)</td>
+            <td> GetDayOfYear(&quot;20080113143920.000000-300&quot;) //returns 13</td>
           </tr>
           <tr>
             <td><strong>GetHour12</strong></td>
@@ -928,15 +928,15 @@
             <td><strong>GetHour24</strong></td>
             <td>Returns the hour for the given datetime argument in 24 hr format. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td>GetHour12(&lt;datetime&gt;)</td>
-            <td> GetHour12(&quot;20080113143920.000000-300&quot;) //returns 14</td>
+            <td>GetHour24(&lt;datetime&gt;)</td>
+            <td> GetHour24(&quot;20080113143920.000000-300&quot;) //returns 14</td>
           </tr>
           <tr>
             <td><strong>GetMillisecond</strong></td>
             <td>Returns the millisecond for the given datetime argument. 
              The argument must be eithera string of the form yyyymmddHHMMSS.mmmmmmsUUU or a java.util.Calendar</td>
-            <td>GetHour12(&lt;datetime&gt;)</td>
-            <td> GetHour12(&quot;20080113143920.000234-300&quot;) //returns 234</td>
+            <td>GetMillisecond(&lt;datetime&gt;)</td>
+            <td> GetMillisecond(&quot;20080113143920.000234-300&quot;) //returns 234</td>
           </tr>
           <tr>
             <td><strong>GetMinute</strong></td>