[Struts Wiki] Update of "StrutsConsultants" by SingChyun

2006-09-01 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by SingChyun:
http://wiki.apache.org/struts/StrutsConsultants

The comment on the change is:
Added 1 entry in Singapore

--
   * Jarek Krochmalski -- http://jotkacafe.prv.pl  (mailto://[EMAIL PROTECTED])
  
  '''Singapore'''
+  * Azimuth Labs Pte Ltd -- http://www.azimuthlabs.com.sg (mailto:[EMAIL 
PROTECTED])
-  * Ernitech Consulting Pte Ltd -- http://www.ernitech.com
+  * Ernitech Consulting Pte Ltd -- http://www.ernitech.com 
  
  '''Spain'''
  


svn commit: r439376 - in /struts/struts2/trunk/apps/mailreader/src/main: resources/mailreader-default.xml resources/mailreader-support.xml webapp/pages/tour.html

2006-09-01 Thread husted
Author: husted
Date: Fri Sep  1 09:58:55 2006
New Revision: 439376

URL: http://svn.apache.org/viewvc?rev=439376&view=rev
Log:
WW-1429 Fix authentifcation/interceptor settings.

Modified:

struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-default.xml

struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-support.xml
struts/struts2/trunk/apps/mailreader/src/main/webapp/pages/tour.html

Modified: 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-default.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-default.xml?rev=439376&r1=439375&r2=439376&view=diff
==
--- 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-default.xml 
(original)
+++ 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-default.xml 
Fri Sep  1 09:58:55 2006
@@ -26,11 +26,6 @@
 
 
 
-
-
-
-
-
 
 
 

Modified: 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-support.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-support.xml?rev=439376&r1=439375&r2=439376&view=diff
==
--- 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-support.xml 
(original)
+++ 
struts/struts2/trunk/apps/mailreader/src/main/resources/mailreader-support.xml 
Fri Sep  1 09:58:55 2006
@@ -28,13 +28,13 @@
 
-
+
 
 
 
 /pages/Registration.jsp
 MainMenu
-
+
 
 
 

Modified: struts/struts2/trunk/apps/mailreader/src/main/webapp/pages/tour.html
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/mailreader/src/main/webapp/pages/tour.html?rev=439376&r1=439375&r2=439376&view=diff
==
--- struts/struts2/trunk/apps/mailreader/src/main/webapp/pages/tour.html 
(original)
+++ struts/struts2/trunk/apps/mailreader/src/main/webapp/pages/tour.html Fri 
Sep  1 09:58:55 2006
@@ -1448,8 +1448,8 @@
 
 
 
-The MailReader defines four custom Interceptor stacks: "user", 
"user-submit",
-"guest", and "guest-submit".
+The MailReader defines three custom Interceptor stacks: "user", 
"user-submit",
+and "guest".
 
 
 
@@ -1467,10 +1467,6 @@
   
   
   
-  
-  
-  
-  
   
 
 




svn commit: r439413 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java

2006-09-01 Thread tmjee
Author: tmjee
Date: Fri Sep  1 11:28:11 2006
New Revision: 439413

URL: http://svn.apache.org/viewvc?rev=439413&view=rev
Log:
WW-1430
  - Bug in Struts TLD (setter for listKey and listValue is defined in tld but 
missing in OptGroupTag.java) 


Modified:

struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java?rev=439413&r1=439412&r2=439413&view=diff
==
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptGroupTag.java
 Fri Sep  1 11:28:11 2006
@@ -35,6 +35,8 @@
protected String list;
protected String label;
protected String disabled;
+   protected String listKey;
+   protected String listValue;

public Component getBean(OgnlValueStack stack, HttpServletRequest req, 
HttpServletResponse res) {
return new OptGroup(stack, req, res);
@@ -47,6 +49,8 @@
optGroup.setList(list);
optGroup.setLabel(label);
optGroup.setDisabled(disabled);
+   optGroup.setListKey(listKey);
+   optGroup.setListValue(listValue);
}

public void setList(String list) {
@@ -59,5 +63,13 @@

public void setDisabled(String disabled) {
this.disabled = disabled;
+   }
+   
+   public void setListKey(String listKey) {
+   this.listKey = listKey;
+   }
+
+   public void setListValue(String listValue) {
+   this.listValue = listValue;
}
 }




svn commit: r439491 - in /struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl: helloWorld.ftl index.ftl

2006-09-01 Thread husted
Author: husted
Date: Fri Sep  1 14:55:57 2006
New Revision: 439491

URL: http://svn.apache.org/viewvc?rev=439491&view=rev
Log:
WW-1350 Update prefixes. 

Modified:

struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/helloWorld.ftl

struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/index.ftl

Modified: 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/helloWorld.ftl
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/helloWorld.ftl?rev=439491&r1=439490&r2=439491&view=diff
==
--- 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/helloWorld.ftl
 (original)
+++ 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/helloWorld.ftl
 Fri Sep  1 14:55:57 2006
@@ -6,7 +6,7 @@
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 
Hello World
-   <@saf.head />
+   <@s.head />
 
 
Hello ${name}.

Modified: 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/index.ftl
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/index.ftl?rev=439491&r1=439490&r2=439491&view=diff
==
--- 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/index.ftl
 (original)
+++ 
struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/ftl/index.ftl
 Fri Sep  1 14:55:57 2006
@@ -5,13 +5,13 @@
 http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
 
Index
-   <@saf.head />
+   <@s.head />
 
 
-   <@saf.form action="helloWorld">
-   <@saf.textfield label="What is your name?" name="name" />
-   <@saf.submit />
-   
+   <@s.form action="helloWorld">
+   <@s.textfield label="What is your name?" name="name" />
+   <@s.submit />
+   
 
 





svn commit: r439523 - in /struts/maven/trunk/struts2-archetype-starter: README.txt pom.xml

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 19:11:13 2006
New Revision: 439523

URL: http://svn.apache.org/viewvc?rev=439523&view=rev
Log:
Update version numbers and add a  to the pom.
WW-1359

Modified:
struts/maven/trunk/struts2-archetype-starter/README.txt
struts/maven/trunk/struts2-archetype-starter/pom.xml

Modified: struts/maven/trunk/struts2-archetype-starter/README.txt
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/README.txt?rev=439523&r1=439522&r2=439523&view=diff
==
--- struts/maven/trunk/struts2-archetype-starter/README.txt (original)
+++ struts/maven/trunk/struts2-archetype-starter/README.txt Fri Sep  1 19:11:13 
2006
@@ -1,9 +1,9 @@
 INFORMATION
 ===
-- This is Struts 2's maven archetype plugin. 
+- This is Struts 2's "Starter" Maven Archetype
 - To be used to create a simple webapp template that one could alter to meet 
his/her needs.
 - The created template contains
-  - sitemesh integeration
+  - sitemesh integration
   - a simple Struts action
   - a simple Struts action level validation
   - a simple Struts action alias level validation
@@ -31,7 +31,7 @@
-DartifactId=myWebApp \
-DarchetypeGroupId=org.apache.struts \
-DarchetypeArtifactId=struts2-archetype-starter \
-   -DarchetypeVersion=1.0-SNAPSHOT \
+   -DarchetypeVersion=2.0.0-SNAPSHOT \

-DremoteRepositories=http://people.apache.org/maven-snapshot-repository
 
 THis will create the sample Web app template

Modified: struts/maven/trunk/struts2-archetype-starter/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/pom.xml?rev=439523&r1=439522&r2=439523&view=diff
==
--- struts/maven/trunk/struts2-archetype-starter/pom.xml (original)
+++ struts/maven/trunk/struts2-archetype-starter/pom.xml Fri Sep  1 19:11:13 
2006
@@ -4,11 +4,13 @@
   
 org.apache.struts
 struts-master
-3-SNAPSHOT
+3
   
 
   4.0.0
   struts2-archetype-starter
-  1.0-SNAPSHOT
-  maven-plugin
+  2.0.0-SNAPSHOT
+  jar
+  Struts 2 Archetypes - Starter
+
 




svn commit: r439526 - in /struts/sandbox/trunk/tiles/src/site: fml/ fml/faq.fml site.xml xdoc/index.xml

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 19:58:10 2006
New Revision: 439526

URL: http://svn.apache.org/viewvc?rev=439526&view=rev
Log:
Add a FAQ with entries to explain the missing tag attributes.
SB-21

Added:
struts/sandbox/trunk/tiles/src/site/fml/
struts/sandbox/trunk/tiles/src/site/fml/faq.fml
Modified:
struts/sandbox/trunk/tiles/src/site/site.xml
struts/sandbox/trunk/tiles/src/site/xdoc/index.xml

Added: struts/sandbox/trunk/tiles/src/site/fml/faq.fml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/src/site/fml/faq.fml?rev=439526&view=auto
==
--- struts/sandbox/trunk/tiles/src/site/fml/faq.fml (added)
+++ struts/sandbox/trunk/tiles/src/site/fml/faq.fml Fri Sep  1 19:58:10 2006
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+What happened to 'attribute' and 'definition'?
+
+The 'attribute' and 'definition' tag attributes were 
removed.
+Use 'name' instead.
+
+
+
+
+What happened to 'beanName' and 
'beanProperty'?
+
+The 'beanName' and 'beanProperty' tag attributes were 
removed
+with no replacement. Use EL instead. For example:
+
+
+
+
+
+

Modified: struts/sandbox/trunk/tiles/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/src/site/site.xml?rev=439526&r1=439525&r2=439526&view=diff
==
--- struts/sandbox/trunk/tiles/src/site/site.xml (original)
+++ struts/sandbox/trunk/tiles/src/site/site.xml Fri Sep  1 19:58:10 2006
@@ -21,6 +21,12 @@
 
 
 
+
+
 http://struts.apache.org/struts-sandbox"/>
 http://struts.apache.org/struts-sandbox/tiles"/>
+href="/index.html"/>
 
 
 ${modules}

Modified: struts/sandbox/trunk/tiles/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/src/site/xdoc/index.xml?rev=439526&r1=439525&r2=439526&view=diff
==
--- struts/sandbox/trunk/tiles/src/site/xdoc/index.xml (original)
+++ struts/sandbox/trunk/tiles/src/site/xdoc/index.xml Fri Sep  1 19:58:10 2006
@@ -77,7 +77,7 @@
 href="http://struts.apache.org/mail.html";>here.
 
 When posting to the list, please prefix your subject lines with
-"[tiles]" so that list members can filter messages as desired.
+"[tiles2]" so that list members can filter messages as desired.
 
 
 




svn commit: r439531 - in /struts/sandbox/trunk/tiles: src/site/fml/faq.fml tiles-core/src/main/resources/META-INF/tiles-core.tld

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 21:42:42 2006
New Revision: 439531

URL: http://svn.apache.org/viewvc?rev=439531&view=rev
Log:
Bring over the documentation as-is from the Struts Tiles 1.3.5 TLD.
Update the FAQ.
SB-21

Modified:
struts/sandbox/trunk/tiles/src/site/fml/faq.fml

struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld

Modified: struts/sandbox/trunk/tiles/src/site/fml/faq.fml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/src/site/fml/faq.fml?rev=439531&r1=439530&r2=439531&view=diff
==
--- struts/sandbox/trunk/tiles/src/site/fml/faq.fml (original)
+++ struts/sandbox/trunk/tiles/src/site/fml/faq.fml Fri Sep  1 21:42:42 2006
@@ -18,7 +18,7 @@
 -->
 
 
-
+
 What happened to 'attribute' and 'definition'?
 
 The 'attribute' and 'definition' tag attributes were 
removed.
@@ -26,13 +26,36 @@
 
 
 
+
+What happened to 'page' and 'component'?
+
+The 'page' and 'component' tag attributes were removed.
+Use 'template' instead.
+
+
+
 
-What happened to 'beanName' and 
'beanProperty'?
+What happened to beanName, beanProperty and beanScope?
+
 
-The 'beanName' and 'beanProperty' tag attributes were 
removed
-with no replacement. Use EL instead. For example:
+The 'beanName', 'beanProperty', and 'beanScope' tag 
attributes
+were removed with no replacement. Use EL instead. For 
example:
 
 
+
+
+
+What happened to controllerURL and controllerClass?
+
+
+TODO - Did this change to 'type'?
+
+
+
+What happened to the 'id' attribute of DefinitionTag?
+
+
+TODO - Did this change to 'name'?
 
 
 

Modified: 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld?rev=439531&r1=439530&r2=439531&view=diff
==
--- 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
 (original)
+++ 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
 Fri Sep  1 21:42:42 2006
@@ -3,40 +3,134 @@
 "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" 
 "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd";>
 
-   0.2
+   2.0
1.2
tiles
http://struts.apache.org/tags-tiles
+   
+   
+   

   insert
   org.apache.tiles.taglib.InsertTag
   JSP
+  
+  
+  
   
  template
  false
  true
+ 
+ 
+ 
   
   
  name
  false
  true
+ 
+ 
+ 
   
   
  flush
  false
  false
  boolean
+ 
+ 
+ 
   
   
  ignore
  false
  true
  boolean
+ 
+ 
+ 
   
   
  role
  false
  true
+ 
+ 
+ 
   
   
  type
@@ -48,143 +142,367 @@
   definition
   org.apache.tiles.taglib.DefinitionTag
   JSP
+  
+ 
+ 
   
  name
  true
  false
+ 
+ 
+ 
   
   
  scope
  false
  false
+ 
+ 
+ 
   
   
  template
  false
  true
+ 
+ 
+ 
   
   
  role
  false
  true
+ 
+ 
+ 
   
   
  extends
  false
  true
+ 
+ 
+ 
   


   put
   org.apache.tiles.taglib.PutTag
   JSP
+  
+  
+  
   
  name
  false
  false
+ 
+ 
+ 
   
   
  value
  false
  true
+ 
+ 
+ 
   
   
  direct
  false
  false
+ 
+ 
+ 
   
   
  type
  false
  false
+ 
+ 
+ 
   
   
  role
  false
  true
+ 
+ 
+ 
   


   putList
   org.apache.tiles.taglib.PutListTag
   JSP
+  
+  
+  
   
  name
  true
  false
+ 
+ 
+  

svn commit: r439533 - in /struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib: TagUtils.java html/FormTag.java

2006-09-01 Thread pbenedict
Author: pbenedict
Date: Fri Sep  1 21:46:01 2006
New Revision: 439533

URL: http://svn.apache.org/viewvc?rev=439533&view=rev
Log:
STR-2864: FormTag to recognize actionId, plus any tags that can build URLs from 
an action

Modified:

struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/TagUtils.java

struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java

Modified: 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/TagUtils.java
URL: 
http://svn.apache.org/viewvc/struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/TagUtils.java?rev=439533&r1=439532&r2=439533&view=diff
==
--- 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/TagUtils.java
 (original)
+++ 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/TagUtils.java
 Fri Sep  1 21:46:01 2006
@@ -24,6 +24,7 @@
 import org.apache.struts.action.ActionErrors;
 import org.apache.struts.action.ActionMessage;
 import org.apache.struts.action.ActionMessages;
+import org.apache.struts.action.ActionServlet;
 import org.apache.struts.config.ForwardConfig;
 import org.apache.struts.config.ModuleConfig;
 import org.apache.struts.taglib.html.Constants;
@@ -388,8 +389,16 @@
 } else if (href != null) {
 url.append(href);
 } else if (action != null) {
-url.append(instance.getActionMappingURL(action, module,
-pageContext, false));
+ActionServlet servlet = (ActionServlet) 
pageContext.getServletContext().getAttribute(Globals.ACTION_SERVLET_KEY);
+String actionIdPath = RequestUtils.actionIdURL(action, 
moduleConfig, servlet);
+if (actionIdPath != null) {
+action = actionIdPath;
+url.append(request.getContextPath());
+url.append(actionIdPath);
+} else {
+url.append(instance.getActionMappingURL(action, module,
+pageContext, false));
+}
 } else /* if (page != null) */
  {
 url.append(request.getContextPath());

Modified: 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java
URL: 
http://svn.apache.org/viewvc/struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java?rev=439533&r1=439532&r2=439533&view=diff
==
--- 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java
 (original)
+++ 
struts/struts1/trunk/taglib/src/main/java/org/apache/struts/taglib/html/FormTag.java
 Fri Sep  1 21:46:01 2006
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,6 +21,7 @@
 import org.apache.struts.action.ActionForm;
 import org.apache.struts.action.ActionMapping;
 import org.apache.struts.action.ActionServlet;
+import org.apache.struts.config.ActionConfig;
 import org.apache.struts.config.FormBeanConfig;
 import org.apache.struts.config.ModuleConfig;
 import org.apache.struts.taglib.TagUtils;
@@ -764,6 +765,13 @@
 postbackAction = postbackAction.substring(prefix.length());
 }
 calcAction = postbackAction;
+} else {
+// Translate the action if it is an actionId
+ActionConfig actionConfig = 
moduleConfig.findActionConfigId(this.action);
+if (actionConfig != null) {
+this.action = actionConfig.getPath();
+calcAction = this.action;
+}
 }
 
 servlet =




svn commit: r439536 - /struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 22:13:25 2006
New Revision: 439536

URL: http://svn.apache.org/viewvc?rev=439536&view=rev
Log:
Remove references to  'tile' 'component' and 'page', leaving only 'template'.
SB-21

Modified:

struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld

Modified: 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld?rev=439536&r1=439535&r2=439536&view=diff
==
--- 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
 (original)
+++ 
struts/sandbox/trunk/tiles/tiles-core/src/main/resources/META-INF/tiles-core.tld
 Fri Sep  1 22:13:25 2006
@@ -9,11 +9,7 @@
http://struts.apache.org/tags-tiles




@@ -22,8 +18,8 @@
   JSP
   
   
  
   
@@ -91,7 +77,7 @@
  
  
  
   
@@ -144,9 +130,9 @@
   JSP
   
  
@@ -180,7 +166,7 @@
  true
  
  
  
@@ -215,9 +201,9 @@
   JSP
   
   
  
   
@@ -457,10 +443,10 @@
   
   

svn commit: r439546 - /struts/sandbox/trunk/tiles/src/site/xdoc/index.xml

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 23:07:17 2006
New Revision: 439546

URL: http://svn.apache.org/viewvc?rev=439546&view=rev
Log:
Add a link to the tiles-test example webapp in the snapshot repo.

Modified:
struts/sandbox/trunk/tiles/src/site/xdoc/index.xml

Modified: struts/sandbox/trunk/tiles/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/src/site/xdoc/index.xml?rev=439546&r1=439545&r2=439546&view=diff
==
--- struts/sandbox/trunk/tiles/src/site/xdoc/index.xml (original)
+++ struts/sandbox/trunk/tiles/src/site/xdoc/index.xml Fri Sep  1 23:07:17 2006
@@ -53,6 +53,10 @@
 here, or a nightly build, http://people.apache.org/builds/struts/nightlies/tiles/";>here.
 
+   You can see Tiles 2 in action by downloading a snapshot of the 
'tiles-test' webapp,
+   http://people.apache.org/repo/m2-snapshot-repository/org/apache/struts/tiles/tiles-test/2.0-SNAPSHOT/";>
+   here.
+
 
 
 




svn commit: r439549 - /struts/sandbox/trunk/tiles/pom.xml

2006-09-01 Thread wsmoak
Author: wsmoak
Date: Fri Sep  1 23:32:26 2006
New Revision: 439549

URL: http://svn.apache.org/viewvc?rev=439549&view=rev
Log:
Update the struts-master pom version and remove  which is inherited.

Modified:
struts/sandbox/trunk/tiles/pom.xml

Modified: struts/sandbox/trunk/tiles/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/pom.xml?rev=439549&r1=439548&r2=439549&view=diff
==
--- struts/sandbox/trunk/tiles/pom.xml (original)
+++ struts/sandbox/trunk/tiles/pom.xml Fri Sep  1 23:32:26 2006
@@ -26,7 +26,7 @@

   org.apache.struts
   struts-master
-  3
+  4-SNAPSHOT

 
 4.0.0
@@ -53,11 +53,6 @@
 
 
 
-
-   apache-maven-test-builds
-   Apache Maven Repository (Test Builds)
-   
scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository
-
 
 apache-site
 
scp://people.apache.org/www/struts.apache.org/struts-sandbox/tiles