You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ap...@apache.org on 2007/10/31 21:35:03 UTC

svn commit: r590812 [6/48] - in /struts/struts2/trunk: apps/blank/ apps/blank/src/main/java/example/ apps/blank/src/main/resources/ apps/blank/src/main/resources/example/ apps/blank/src/main/webapp/ apps/mailreader/ apps/mailreader/src/main/java/ apps/...

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java Wed Oct 31 13:32:54 2007
@@ -1,174 +1,174 @@
-/*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.struts2.interceptor.debugging;
-
-import java.beans.IntrospectionException;
-import java.io.Writer;
-import java.util.Collection;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-
-import com.opensymphony.xwork2.util.reflection.ReflectionException;
-import com.opensymphony.xwork2.util.reflection.ReflectionProvider;
-
-/**
- * Writes an object as a table, where each field can be expanded if it is an Object/Collection/Array
- *
- */
-class ObjectToHTMLWriter {
-    private PrettyPrintWriter prettyWriter;
-
-    ObjectToHTMLWriter(Writer writer) {
-        this.prettyWriter = new PrettyPrintWriter(writer);
-        this.prettyWriter.setEscape(false);
-    }
-
-    @SuppressWarnings("unchecked")
-    public void write(ReflectionProvider reflectionProvider, Object root, String expr) throws IntrospectionException,
-        ReflectionException {
-        prettyWriter.startNode("table");
-        prettyWriter.addAttribute("class", "debugTable");
-
-        if (root instanceof Map) {
-            for (Iterator iterator = ((Map) root).entrySet().iterator(); iterator
-                .hasNext();) {
-                Map.Entry property = (Map.Entry) iterator.next();
-                String key = property.getKey().toString();
-                Object value = property.getValue();
-                writeProperty(key, value, expr);
-            }
-        } else if (root instanceof List) {
-            List list = (List) root;
-            for (int i = 0; i < list.size(); i++) {
-                Object element = list.get(i);
-                writeProperty(String.valueOf(i), element, expr);
-            }
-        } else if (root instanceof Set) {
-            Set set = (Set) root;
-            for (Iterator iterator = set.iterator(); iterator.hasNext();) {
-                writeProperty("", iterator.next(), expr);
-            }
-        } else if (root.getClass().isArray()) {
-            Object[] objects = (Object[]) root;
-            for (int i = 0; i < objects.length; i++) {
-                writeProperty(String.valueOf(i), objects[i], expr);
-            }
-        } else {
-            //print properties
-            Map<String, Object> properties = reflectionProvider.getBeanMap(root);
-            for (Map.Entry<String, Object> property : properties.entrySet()) {
-                String name = property.getKey();
-                Object value = property.getValue();
-
-                if ("class".equals(name))
-                    continue;
-
-                writeProperty(name, value, expr);
-            }
-        }
-
-        prettyWriter.endNode();
-    }
-
-    private void writeProperty(String name, Object value, String expr) {
-        prettyWriter.startNode("tr");
-
-        //name cell
-        prettyWriter.startNode("td");
-        prettyWriter.addAttribute("class", "nameColumn");
-        prettyWriter.setValue(name);
-        prettyWriter.endNode();
-
-        //value cell
-        prettyWriter.startNode("td");
-        if (value != null) {
-            //if is is an empty collection or array, don't write a link
-            if (value != null &&
-                (isEmptyCollection(value) || isEmptyMap(value) || (value.getClass()
-                    .isArray() && ((Object[]) value).length == 0))) {
-                prettyWriter.addAttribute("class", "emptyCollection");
-                prettyWriter.setValue("empty");
-            } else {
-                prettyWriter.addAttribute("class", "valueColumn");
-                writeValue(name, value, expr);
-            }
-        } else {
-            prettyWriter.addAttribute("class", "nullValue");
-            prettyWriter.setValue("null");
-        }
-        prettyWriter.endNode();
-
-        //type cell
-        prettyWriter.startNode("td");
-        if (value != null) {
-            prettyWriter.addAttribute("class", "typeColumn");
-            Class clazz = value.getClass();
-            prettyWriter.setValue(clazz.getName());
-        } else {
-            prettyWriter.addAttribute("class", "nullValue");
-            prettyWriter.setValue("unknown");
-        }
-        prettyWriter.endNode();
-
-        //close tr
-        prettyWriter.endNode();
-    }
-
-    /**
-     * Some maps, like AttributeMap will throw an exception when isEmpty() is called
-     */
-    private boolean isEmptyMap(Object value) {
-        try {
-            return value instanceof Map && ((Map) value).isEmpty();
-        } catch (Exception e) {
-            return true;
-        }
-    }
-
-    /**
-     * Some collections might throw an exception when isEmpty() is called
-     */
-    private boolean isEmptyCollection(Object value) {
-        try {
-            return value instanceof Collection && ((Collection) value).isEmpty();
-        } catch (Exception e) {
-            return true;
-        }
-    }
-
-    private void writeValue(String name, Object value, String expr) {
-        Class clazz = value.getClass();
-        if (clazz.isPrimitive() || Number.class.isAssignableFrom(clazz) ||
-            clazz.equals(String.class) || Boolean.class.equals(clazz)) {
-            prettyWriter.setValue(String.valueOf(value));
-        } else {
-            prettyWriter.startNode("a");
-            String path = expr.replaceAll("#", "%23") + "[\"" +
-                name.replaceAll("#", "%23") + "\"]";
-            prettyWriter.addAttribute("onclick", "expand(this, '" + path + "')");
-            prettyWriter.addAttribute("href", "javascript://nop/");
-            prettyWriter.setValue("Expand");
-            prettyWriter.endNode();
-        }
-    }
-}
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.struts2.interceptor.debugging;
+
+import java.beans.IntrospectionException;
+import java.io.Writer;
+import java.util.Collection;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import com.opensymphony.xwork2.util.reflection.ReflectionException;
+import com.opensymphony.xwork2.util.reflection.ReflectionProvider;
+
+/**
+ * Writes an object as a table, where each field can be expanded if it is an Object/Collection/Array
+ *
+ */
+class ObjectToHTMLWriter {
+    private PrettyPrintWriter prettyWriter;
+
+    ObjectToHTMLWriter(Writer writer) {
+        this.prettyWriter = new PrettyPrintWriter(writer);
+        this.prettyWriter.setEscape(false);
+    }
+
+    @SuppressWarnings("unchecked")
+    public void write(ReflectionProvider reflectionProvider, Object root, String expr) throws IntrospectionException,
+        ReflectionException {
+        prettyWriter.startNode("table");
+        prettyWriter.addAttribute("class", "debugTable");
+
+        if (root instanceof Map) {
+            for (Iterator iterator = ((Map) root).entrySet().iterator(); iterator
+                .hasNext();) {
+                Map.Entry property = (Map.Entry) iterator.next();
+                String key = property.getKey().toString();
+                Object value = property.getValue();
+                writeProperty(key, value, expr);
+            }
+        } else if (root instanceof List) {
+            List list = (List) root;
+            for (int i = 0; i < list.size(); i++) {
+                Object element = list.get(i);
+                writeProperty(String.valueOf(i), element, expr);
+            }
+        } else if (root instanceof Set) {
+            Set set = (Set) root;
+            for (Iterator iterator = set.iterator(); iterator.hasNext();) {
+                writeProperty("", iterator.next(), expr);
+            }
+        } else if (root.getClass().isArray()) {
+            Object[] objects = (Object[]) root;
+            for (int i = 0; i < objects.length; i++) {
+                writeProperty(String.valueOf(i), objects[i], expr);
+            }
+        } else {
+            //print properties
+            Map<String, Object> properties = reflectionProvider.getBeanMap(root);
+            for (Map.Entry<String, Object> property : properties.entrySet()) {
+                String name = property.getKey();
+                Object value = property.getValue();
+
+                if ("class".equals(name))
+                    continue;
+
+                writeProperty(name, value, expr);
+            }
+        }
+
+        prettyWriter.endNode();
+    }
+
+    private void writeProperty(String name, Object value, String expr) {
+        prettyWriter.startNode("tr");
+
+        //name cell
+        prettyWriter.startNode("td");
+        prettyWriter.addAttribute("class", "nameColumn");
+        prettyWriter.setValue(name);
+        prettyWriter.endNode();
+
+        //value cell
+        prettyWriter.startNode("td");
+        if (value != null) {
+            //if is is an empty collection or array, don't write a link
+            if (value != null &&
+                (isEmptyCollection(value) || isEmptyMap(value) || (value.getClass()
+                    .isArray() && ((Object[]) value).length == 0))) {
+                prettyWriter.addAttribute("class", "emptyCollection");
+                prettyWriter.setValue("empty");
+            } else {
+                prettyWriter.addAttribute("class", "valueColumn");
+                writeValue(name, value, expr);
+            }
+        } else {
+            prettyWriter.addAttribute("class", "nullValue");
+            prettyWriter.setValue("null");
+        }
+        prettyWriter.endNode();
+
+        //type cell
+        prettyWriter.startNode("td");
+        if (value != null) {
+            prettyWriter.addAttribute("class", "typeColumn");
+            Class clazz = value.getClass();
+            prettyWriter.setValue(clazz.getName());
+        } else {
+            prettyWriter.addAttribute("class", "nullValue");
+            prettyWriter.setValue("unknown");
+        }
+        prettyWriter.endNode();
+
+        //close tr
+        prettyWriter.endNode();
+    }
+
+    /**
+     * Some maps, like AttributeMap will throw an exception when isEmpty() is called
+     */
+    private boolean isEmptyMap(Object value) {
+        try {
+            return value instanceof Map && ((Map) value).isEmpty();
+        } catch (Exception e) {
+            return true;
+        }
+    }
+
+    /**
+     * Some collections might throw an exception when isEmpty() is called
+     */
+    private boolean isEmptyCollection(Object value) {
+        try {
+            return value instanceof Collection && ((Collection) value).isEmpty();
+        } catch (Exception e) {
+            return true;
+        }
+    }
+
+    private void writeValue(String name, Object value, String expr) {
+        Class clazz = value.getClass();
+        if (clazz.isPrimitive() || Number.class.isAssignableFrom(clazz) ||
+            clazz.equals(String.class) || Boolean.class.equals(clazz)) {
+            prettyWriter.setValue(String.valueOf(value));
+        } else {
+            prettyWriter.startNode("a");
+            String path = expr.replaceAll("#", "%23") + "[\"" +
+                name.replaceAll("#", "%23") + "\"]";
+            prettyWriter.addAttribute("onclick", "expand(this, '" + path + "')");
+            prettyWriter.addAttribute("href", "javascript://nop/");
+            prettyWriter.setValue("Expand");
+            prettyWriter.endNode();
+        }
+    }
+}

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/debugging/ObjectToHTMLWriter.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/validation/JSONValidationInterceptor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: StrutsTag.java 502294 2007-02-01 17:28:00Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/annotations/StrutsTagSkipInheritance.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java Wed Oct 31 13:32:54 2007
@@ -1,47 +1,47 @@
-/*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.struts2.views.jsp;
-
-import org.apache.struts2.components.ContextBean;
-
-
-public abstract class ContextBeanTag extends ComponentTagSupport {
-    private String var;
-
-    protected void populateParams() {
-        super.populateParams();
-        
-        ContextBean bean = (ContextBean) component;
-        bean.setVar(var);
-    }
-
-    public void setVar(String var) {
-        this.var = var;
-    }
-
-    /**
-     * To keep backward compatibility 
-     * TODO remove after 2.1
-     */
-    public void setId(String id) {
-        setVar(id);
-    }
-}
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.struts2.views.jsp;
+
+import org.apache.struts2.components.ContextBean;
+
+
+public abstract class ContextBeanTag extends ComponentTagSupport {
+    private String var;
+
+    protected void populateParams() {
+        super.populateParams();
+        
+        ContextBean bean = (ContextBean) component;
+        bean.setVar(var);
+    }
+
+    public void setVar(String var) {
+        this.var = var;
+    }
+
+    /**
+     * To keep backward compatibility 
+     * TODO remove after 2.1
+     */
+    public void setId(String id) {
+        setVar(id);
+    }
+}

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ContextBeanTag.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/InputTransferSelectTag.java
------------------------------------------------------------------------------
--- svn:keywords (original)
+++ svn:keywords Wed Oct 31 13:32:54 2007
@@ -1 +1 @@
-Id Author Date Rev
+Date Author Id Revision HeadURL

Propchange: struts/struts2/trunk/core/src/main/resources/META-INF/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/META-INF/README.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties Wed Oct 31 13:32:54 2007
@@ -1,4 +1,4 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+#  $Id$
 # 
 #  Licensed to the Apache Software Foundation (ASF) under one
 #  or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/default.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <#--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/dispatcher/error.ftl
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl Wed Oct 31 13:32:54 2007
@@ -1,100 +1,100 @@
-<#--
-/*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
--->
-<html>
-    <style>
-        .debugTable {
-            border-style: solid;
-            border-width: 1px;
-        }
-        
-        .debugTable td {
-            border-style: solid;
-            border-width: 1px;
-        }
-        
-        .nameColumn {
-            background-color:#CCDDFF;
-        }
-        
-        .valueColumn {
-            background-color: #CCFFCC;
-        }
-        
-        .nullValue {
-            background-color: #FF0000;
-        }
-        
-        .typeColumn {
-            background-color: white;
-        }
-        
-        .emptyCollection {
-            background-color: #EEEEEE;
-        }
-    </style>
-    <script language="JavaScript" type="text/javascript">
-        // Dojo configuration
-        djConfig = {
-            isDebug: false,
-            bindEncoding: "UTF-8"
-            ,baseRelativePath: "${base}/struts/dojo/"
-            ,baseScriptUri: "${base}/struts/dojo/"
-        };
-    </script>
-
-
-
-    <script language="JavaScript" type="text/javascript"  src="${base}/struts/dojo/dojo.js"></script>
-    <script>
-        dojo.require("dojo.io.*");
-        
-        function expand(src, path) {
-          var baseUrl = location.href;
-          var i = baseUrl.indexOf("&object=");
-          baseUrl = (i > 0 ? baseUrl.substring(0, i) : baseUrl) + "&object=" + path;
-          if (baseUrl.indexOf("decorate") < 0) {
-             baseUrl += "&decorate=false";
-          } 
-          dojo.io.bind({
-            url: baseUrl,
-            load : function(type, data, evt) {
-              var div = document.createElement("div");
-              div.innerHTML = data;
-              src.parentNode.appendChild(div);
-              
-              src.innerHTML = "Collapse";
-              var oldonclick = src.onclick;
-              src.onclick = function() {
-                src.innerHTML = "Expand";
-                src.parentNode.removeChild(div);
-                src.onclick = oldonclick;
-              };
-            }
-          });
-        }
-    </script>
-
-<body>
-    ${debugHtml}
-</body>
+<#--
+/*
+ * $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+-->
+<html>
+    <style>
+        .debugTable {
+            border-style: solid;
+            border-width: 1px;
+        }
+        
+        .debugTable td {
+            border-style: solid;
+            border-width: 1px;
+        }
+        
+        .nameColumn {
+            background-color:#CCDDFF;
+        }
+        
+        .valueColumn {
+            background-color: #CCFFCC;
+        }
+        
+        .nullValue {
+            background-color: #FF0000;
+        }
+        
+        .typeColumn {
+            background-color: white;
+        }
+        
+        .emptyCollection {
+            background-color: #EEEEEE;
+        }
+    </style>
+    <script language="JavaScript" type="text/javascript">
+        // Dojo configuration
+        djConfig = {
+            isDebug: false,
+            bindEncoding: "UTF-8"
+            ,baseRelativePath: "${base}/struts/dojo/"
+            ,baseScriptUri: "${base}/struts/dojo/"
+        };
+    </script>
+
+
+
+    <script language="JavaScript" type="text/javascript"  src="${base}/struts/dojo/dojo.js"></script>
+    <script>
+        dojo.require("dojo.io.*");
+        
+        function expand(src, path) {
+          var baseUrl = location.href;
+          var i = baseUrl.indexOf("&object=");
+          baseUrl = (i > 0 ? baseUrl.substring(0, i) : baseUrl) + "&object=" + path;
+          if (baseUrl.indexOf("decorate") < 0) {
+             baseUrl += "&decorate=false";
+          } 
+          dojo.io.bind({
+            url: baseUrl,
+            load : function(type, data, evt) {
+              var div = document.createElement("div");
+              div.innerHTML = data;
+              src.parentNode.appendChild(div);
+              
+              src.innerHTML = "Collapse";
+              var oldonclick = src.onclick;
+              src.onclick = function() {
+                src.innerHTML = "Expand";
+                src.parentNode.removeChild(div);
+                src.onclick = oldonclick;
+              };
+            }
+          });
+        }
+    </script>
+
+<body>
+    ${debugHtml}
+</body>
 </html>

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/browser.ftl
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/console.ftl
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/console.ftl?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/console.ftl (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/console.ftl Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <#--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/console.ftl
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -19,22 +19,22 @@
  * under the License.
  */
 
-.wc-results {
-    overflow: auto; 
-    margin: 0px; 
-    padding: 5px; 
-    font-family: courier; 
-    color: white; 
-    background-color: black; 
-    height: 400px;
-}
-.wc-results pre {
-    display: inline;
-}
-.wc-command {
-    margin: 0px; 
-    font-family: courier; 
-    color: white; 
-    background-color: black; 
-    width: 100%;
-}
+.wc-results {
+    overflow: auto; 
+    margin: 0px; 
+    padding: 5px; 
+    font-family: courier; 
+    color: white; 
+    background-color: black; 
+    height: 400px;
+}
+.wc-results pre {
+    display: inline;
+}
+.wc-command {
+    margin: 0px; 
+    font-family: courier; 
+    color: white; 
+    background-color: black; 
+    width: 100%;
+}

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.css
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/debugging/webconsole.js
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/wait.ftl
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/wait.ftl?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/wait.ftl (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/wait.ftl Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <#--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/interceptor/wait.ftl
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.css
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/domTT.js
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/inputtransferselect.js
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/optiontransferselect.js
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/tooltip.gif
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/static/utils.js
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages.properties Wed Oct 31 13:32:54 2007
@@ -1,4 +1,4 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+#  $Id$
 # 
 #  Licensed to the Apache Software Foundation (ASF) under one
 #  or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_da.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_da.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_da.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_da.properties Wed Oct 31 13:32:54 2007
@@ -1,4 +1,4 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+#  $Id$
 # 
 #  Licensed to the Apache Software Foundation (ASF) under one
 #  or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_da.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_de.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_de.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_de.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_de.properties Wed Oct 31 13:32:54 2007
@@ -1,4 +1,4 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+#  $Id$
 # 
 #  Licensed to the Apache Software Foundation (ASF) under one
 #  or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_de.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties Wed Oct 31 13:32:54 2007
@@ -1,4 +1,4 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+#  $Id$
 # 
 #  Licensed to the Apache Software Foundation (ASF) under one
 #  or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pl.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties Wed Oct 31 13:32:54 2007
@@ -1,32 +1,32 @@
-#  $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
-# 
-#  Licensed to the Apache Software Foundation (ASF) under one
-#  or more contributor license agreements.  See the NOTICE file
-#  distributed with this work for additional information
-#  regarding copyright ownership.  The ASF licenses this file
-#  to you under the Apache License, Version 2.0 (the
-#  "License"); you may not use this file except in compliance
-#  with the License.  You may obtain a copy of the License at
-# 
-#   http://www.apache.org/licenses/LICENSE-2.0
-# 
-#  Unless required by applicable law or agreed to in writing,
-#  software distributed under the License is distributed on an
-#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#  KIND, either express or implied.  See the License for the
-#  specific language governing permissions and limitations
-#  under the License.
-
-struts.messages.invalid.token=O formulario já foi processado ou nenhum token foi gerado, por favor tente novamente.
-struts.internal.invalid.token=O token do formulário {0} é diferente do token de sessão {1}.
-
-struts.messages.bypass.request=Ignorando {0}/ {1}
-struts.messages.current.file=Arquivo {0} {1} {2} {3}
-struts.messages.invalid.file=Não foi possível encontra um Nome de Arquivo para {0}. Verifique se um arquivo válido foi submetido.
-struts.messages.invalid.content.type=Não foi possível encontrar um Content-Type para {0}. Verifique se um arquivo válido foi submetido.
-struts.messages.removing.file=Removendo arquivo {0} {1}
-struts.messages.error.uploading=Erro de uploading: {0}
-struts.messages.error.file.too.large=Arquivo muito grande: {0} "{1}" {2}
-struts.messages.error.content.type.not.allowed=Content-Type não permitido: {0} "{1}" {2}
-
-devmode.notification=Notificação para o Desenvolvedor (altere o paramêtro struts.devMode para false para desabilitar esta mensagem):\n{0}
+#  $Id$
+# 
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+# 
+#   http://www.apache.org/licenses/LICENSE-2.0
+# 
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+
+struts.messages.invalid.token=O formulario já foi processado ou nenhum token foi gerado, por favor tente novamente.
+struts.internal.invalid.token=O token do formulário {0} é diferente do token de sessão {1}.
+
+struts.messages.bypass.request=Ignorando {0}/ {1}
+struts.messages.current.file=Arquivo {0} {1} {2} {3}
+struts.messages.invalid.file=Não foi possível encontra um Nome de Arquivo para {0}. Verifique se um arquivo válido foi submetido.
+struts.messages.invalid.content.type=Não foi possível encontrar um Content-Type para {0}. Verifique se um arquivo válido foi submetido.
+struts.messages.removing.file=Removendo arquivo {0} {1}
+struts.messages.error.uploading=Erro de uploading: {0}
+struts.messages.error.file.too.large=Arquivo muito grande: {0} "{1}" {2}
+struts.messages.error.content.type.not.allowed=Content-Type não permitido: {0} "{1}" {2}
+
+devmode.notification=Notificação para o Desenvolvedor (altere o paramêtro struts.devMode para false para desabilitar esta mensagem):\n{0}

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/struts-messages_pt.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/util/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/util/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/util/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/util/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/util/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/freemarker/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/freemarker/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/freemarker/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/freemarker/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/freemarker/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/iterator/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/iterator/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/iterator/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/iterator/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/iterator/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/table/package.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/table/package.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/table/package.html (original)
+++ struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/table/package.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/org/apache/struts2/views/jsp/ui/table/package.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/overview.html
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/overview.html?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/overview.html (original)
+++ struts/struts2/trunk/core/src/main/resources/overview.html Wed Oct 31 13:32:54 2007
@@ -1,6 +1,6 @@
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/overview.html
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/struts-2.0.dtd
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/struts-2.0.dtd?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/struts-2.0.dtd (original)
+++ struts/struts2/trunk/core/src/main/resources/struts-2.0.dtd Wed Oct 31 13:32:54 2007
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
 /*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/struts-2.0.dtd
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/struts.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/struts.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/struts.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/struts.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/struts.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/struts.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a-close.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/a.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div-close.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/div.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form-close.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/form.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/submit.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab-close.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/ajax/tab.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkbox.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/checkboxlist.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/combobox.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/debug.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/doubleselect.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/empty.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/file.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form-close.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/form.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/hidden.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/label.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/password.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/radiomap.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/scripting-events.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/struts2/trunk/core/src/main/resources/template/archive/simple/select.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: struts/struts2/trunk/core/src/main/resources/template/archive/simple/submit.vm
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/archive/simple/submit.vm?rev=590812&r1=590811&r2=590812&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/archive/simple/submit.vm (original)
+++ struts/struts2/trunk/core/src/main/resources/template/archive/simple/submit.vm Wed Oct 31 13:32:54 2007
@@ -1,5 +1,5 @@
 #*
- * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
+ * $Id$
  *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file