Author: rgardler
Date: Sun Dec 3 14:39:25 2006
New Revision: 481954
URL: http://svn.apache.org/viewvc?view=rev&rev=481954
Log:
Change the name of the pattern attribute to regexp to pave the way for
different pattern expression languages (see FOR-947)
Modified:
forrest/trunk/whiteboard/forrest2/wicket-demo/src/locationmap.xml
Modified: forrest/trunk/whiteboard/forrest2/wicket-demo/src/locationmap.xml
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/forrest2/wicket-demo/src/locationmap.xml?view=diff&rev=481954&r1=481953&r2=481954
==============================================================================
--- forrest/trunk/whiteboard/forrest2/wicket-demo/src/locationmap.xml (original)
+++ forrest/trunk/whiteboard/forrest2/wicket-demo/src/locationmap.xml Sun Dec
3 14:39:25 2006
@@ -16,24 +16,24 @@
limitations under the License.
-->
<locationmap>
- <location pattern="header/(.*)\..*">
+ <location regexp="header/(.*)\..*">
<source href="classpath:/panel/header/$(1).xhtml2"/>
<source href="classpath:/panel/header/default.xhtml2"/>
</location>
- <location pattern="navigation/(.*/)*(.*)\..*">
+ <location regexp="navigation/(.*/)*(.*)\..*">
<source href="navigation:classpath:/$(1)navigation.xml"/>
<source href="navigation:classpath:/navigation.xml"/>
</location>
- <location pattern="body/(.*/)*(.*)\..*">
+ <location regexp="body/(.*/)*(.*)\..*">
<source href="classpath:/$(1)$(2).xhtml2"/>
<source href="classpath:/$(2).xhtml2"/>
<source href="classpath:/$(1)notFound.xhtml2"/>
<source href="classpath:/notFound.xhtml2"/>
</location>
- <location pattern="footer/(.*)\..*">
+ <location regexp="footer/(.*)\..*">
<source href="classpath:/panel/footer/$(1).xhtml2"/>
<source href="classpath:/panel/footer/default.xhtml2"/>
</location>