[CONF] Confluence Changes in the last 24 hours
- This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Geronimo Development (GMOxDEV) http://cwiki.apache.org/confluence/display/GMOxDEV | |-Pages Added or Edited in This Space |-- Priorities 1.2 was last edited by adc (11:33 AM). | http://cwiki.apache.org/confluence/display/GMOxDEV/Priorities+1.2 Felix (FELIX) http://cwiki.apache.org/confluence/display/FELIX | |-Pages Added or Edited in This Space |-- October 2006 Board Report was last edited by [EMAIL PROTECTED] (05:57 AM). | http://cwiki.apache.org/confluence/display/FELIX/October+2006+Board+Report |-- Subproject Source Header Updates was last edited by [EMAIL PROTECTED] (12:43 AM). | http://cwiki.apache.org/confluence/display/FELIX/Subproject+Source+Header+Updates Apache CXF 2.0 Documentation (CXF20DOC) http://cwiki.apache.org/confluence/display/CXF20DOC | |-Pages Added or Edited in This Space |-- Index was last edited by ericjohnson (11:33 AM). | http://cwiki.apache.org/confluence/display/CXF20DOC/Index Apache Geronimo v1.1 (GMOxDOC11) http://cwiki.apache.org/confluence/display/GMOxDOC11 | |-Pages Added or Edited in This Space |-- Sample applications was last edited by hcunico (11:14 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/Sample+applications |-- Very simple example of CMP EJB was last edited by hcunico (11:13 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/Very+simple+example+of+CMP+EJB |-- Very simple Session EJB example was last edited by hcunico (11:09 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/Very+simple+Session+EJB+example |-- DB Pool Testing sample application was last edited by pmcmahan (08:55 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/DB+Pool+Testing+sample+application |-- geronimo-web-1.1.xsd was last edited by [EMAIL PROTECTED] (03:47 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/geronimo-web-1.1.xsd |-- geronimo-connector-1.1.xsd was last edited by [EMAIL PROTECTED] (02:37 AM). | http://cwiki.apache.org/confluence/display/GMOxDOC11/geronimo-connector-1.1.xsd Apache Directory Server v1.0 Documentation (DIRxSRVx10) http://cwiki.apache.org/confluence/display/DIRxSRVx10 | |-Pages Added or Edited in This Space |-- ApacheDS v1.0 Developers's Guide was last edited by ersiner (11:24 PM). | http://cwiki.apache.org/confluence/display/DIRxSRVx10/ApacheDS+v1.0+Developers%27s+Guide |-- ApacheDS v1.0 Related Community Articles was created by ersiner (11:14 PM). | http://cwiki.apache.org/confluence/display/DIRxSRVx10/ApacheDS+v1.0+Related+Community+Articles Apache MINA (MINA) http://cwiki.apache.org/confluence/display/MINA | |-Pages Added or Edited in This Space |-- Index was created by husted (08:06 AM). | http://cwiki.apache.org/confluence/display/MINA/Index - CONFLUENCE INFORMATION This message is automatically generated by Confluence Unsubscribe or edit your notifications preferences http://cwiki.apache.org/confluence/users/viewnotifications.action If you think it was sent incorrectly contact one of the administrators http://cwiki.apache.org/confluence/administrators.action If you want more information on Confluence, or have a bug to report see http://www.atlassian.com/software/confluence
svn commit: r452855 - in /struts/sandbox/trunk/tiles/tiles-test/src/main: java/org/apache/tiles/test/servlet/IncludingServlet.java webapp/WEB-INF/web.xml webapp/index.jsp webapp/testput_servlet.jsp
Author: apetrelli Date: Wed Oct 4 04:40:27 2006 New Revision: 452855 URL: http://svn.apache.org/viewvc?view=rev&rev=452855 Log: SB-50 Added proof-of-concept to show how to replace controllerClass and controllerUrl attributes in Added: struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/IncludingServlet.java struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput_servlet.jsp Modified: struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/WEB-INF/web.xml struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/index.jsp Added: struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/IncludingServlet.java URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/IncludingServlet.java?view=auto&rev=452855 == --- struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/IncludingServlet.java (added) +++ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/IncludingServlet.java Wed Oct 4 04:40:27 2006 @@ -0,0 +1,55 @@ +/* + * $Id: ComponentDefinitions.java 307013 2005-10-07 04:49:50Z wsmoak $ + * + * 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. + * 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.tiles.test.servlet; + +import java.io.IOException; + +import javax.servlet.ServletConfig; +import javax.servlet.ServletException; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * Sample servlet that includes a page specified by the include + * init parameter. + * + * @version $Rev: 307013 $ $Date: 2005-10-07 06:49:50 +0200 (ven, 07 ott 2005) $ + */ +public class IncludingServlet extends HttpServlet { + +private String include; + +/** + * Initializes the servlet, reading the include init parameter + */ +public void init(ServletConfig config) throws ServletException { +super.init(config); + +include = config.getInitParameter("include"); +} + +/** + * Processes the request, including the specified page. + */ +protected void doGet(HttpServletRequest request, +HttpServletResponse response) throws ServletException, IOException { +request.getRequestDispatcher(include).include(request, response); +} +} Modified: struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/WEB-INF/web.xml?view=diff&rev=452855&r1=452854&r2=452855 == --- struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/WEB-INF/web.xml (original) +++ struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/WEB-INF/web.xml Wed Oct 4 04:40:27 2006 @@ -17,9 +17,24 @@ 2 + + + +layoutServlet + org.apache.tiles.test.servlet.IncludingServlet + + include + /layout.jsp + + index.jsp + + +layoutServlet +/servlets/layoutServlet + Modified: struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/index.jsp URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/index.jsp?view=diff&rev=452855&r1=452854&r2=452855 == --- struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/index.jsp (original) +++ struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/index.jsp Wed Oct 4 04:40:27 2006 @@ -36,6 +36,7 @@ Test Insert Definition that contains another definition inside using JSP tags Test Insert Definition that contains another definition inside using JSP tags without types Test Put Tag +Test Put Tag using a servlet mapping as a template Test importAttribute Tag Currently not working tests Added: struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput_servlet.jsp URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput_servlet.jsp?view=auto&rev=452855 == --- struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testpu
svn commit: r452854 - in /struts/sandbox/trunk/tiles/tiles-test/src/main/java: ./ org/ org/apache/ org/apache/tiles/ org/apache/tiles/test/ org/apache/tiles/test/servlet/
Author: apetrelli Date: Wed Oct 4 04:40:01 2006 New Revision: 452854 URL: http://svn.apache.org/viewvc?view=rev&rev=452854 Log: SB-50 Added proof-of-concept to show how to replace controllerClass and controllerUrl attributes in Added: struts/sandbox/trunk/tiles/tiles-test/src/main/java/ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/ struts/sandbox/trunk/tiles/tiles-test/src/main/java/org/apache/tiles/test/servlet/
svn commit: r452920 - in /struts/struts2/trunk: all/ core/ core/src/main/java/org/apache/struts2/ core/src/main/java/org/apache/struts2/quickstart/ core/src/main/java/org/apache/struts2/sitegraph/ cor
Author: mrdon Date: Wed Oct 4 08:55:08 2006 New Revision: 452920 URL: http://svn.apache.org/viewvc?view=rev&rev=452920 Log: Creating new 'toolbox' project for client tools WW-1462 Added: struts/struts2/trunk/toolbox/ struts/struts2/trunk/toolbox/pom.xml struts/struts2/trunk/toolbox/src/ struts/struts2/trunk/toolbox/src/main/ struts/struts2/trunk/toolbox/src/main/java/ struts/struts2/trunk/toolbox/src/main/java/org/ struts/struts2/trunk/toolbox/src/main/java/org/apache/ struts/struts2/trunk/toolbox/src/main/java/org/apache/struts2/ struts/struts2/trunk/toolbox/src/main/java/org/apache/struts2/Main.java - copied, changed from r452721, struts/struts2/trunk/core/src/main/java/org/apache/struts2/Main.java struts/struts2/trunk/toolbox/src/main/java/org/apache/struts2/quickstart/ - copied from r452721, struts/struts2/trunk/core/src/main/java/org/apache/struts2/quickstart/ struts/struts2/trunk/toolbox/src/main/java/org/apache/struts2/sitegraph/ - copied from r452721, struts/struts2/trunk/core/src/main/java/org/apache/struts2/sitegraph/ struts/struts2/trunk/toolbox/src/test/ struts/struts2/trunk/toolbox/src/test/java/ struts/struts2/trunk/toolbox/src/test/java/org/ struts/struts2/trunk/toolbox/src/test/java/org/apache/ struts/struts2/trunk/toolbox/src/test/java/org/apache/struts2/ struts/struts2/trunk/toolbox/src/test/java/org/apache/struts2/sitegraph/ - copied from r452721, struts/struts2/trunk/core/src/test/java/org/apache/struts2/sitegraph/ struts/struts2/trunk/toolbox/src/test/resources/ struts/struts2/trunk/toolbox/src/test/resources/org/ struts/struts2/trunk/toolbox/src/test/resources/org/apache/ struts/struts2/trunk/toolbox/src/test/resources/org/apache/struts2/ struts/struts2/trunk/toolbox/src/test/resources/org/apache/struts2/sitegraph/ - copied from r452721, struts/struts2/trunk/core/src/test/resources/org/apache/struts2/sitegraph/ Removed: struts/struts2/trunk/core/src/main/java/org/apache/struts2/Main.java struts/struts2/trunk/core/src/main/java/org/apache/struts2/quickstart/ struts/struts2/trunk/core/src/main/java/org/apache/struts2/sitegraph/ struts/struts2/trunk/core/src/test/java/org/apache/struts2/sitegraph/ struts/struts2/trunk/core/src/test/resources/org/apache/struts2/sitegraph/ Modified: struts/struts2/trunk/all/pom.xml struts/struts2/trunk/core/pom.xml Modified: struts/struts2/trunk/all/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/all/pom.xml?view=diff&rev=452920&r1=452919&r2=452920 == --- struts/struts2/trunk/all/pom.xml (original) +++ struts/struts2/trunk/all/pom.xml Wed Oct 4 08:55:08 2006 @@ -35,6 +35,11 @@ struts2-api ${version} + +org.apache.struts +struts2-toolbox +${version} + ${project.build.directory}/classes Modified: struts/struts2/trunk/core/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?view=diff&rev=452920&r1=452919&r2=452920 == --- struts/struts2/trunk/core/pom.xml (original) +++ struts/struts2/trunk/core/pom.xml Wed Oct 4 08:55:08 2006 @@ -133,57 +133,6 @@ 1.1.1 true - - - -jetty -org.mortbay.jetty -5.1.4 -true - - - -eclipse -jdtcore -3.1.0 -true - - - -ant -ant -1.6.5 -true - - - -tomcat -jasper-compiler -5.5.12 -true - - - -tomcat -jasper-runtime -5.5.12 -true - - - -tomcat -jasper-compiler-jdt -5.5.12 -true - - - -commons-el -commons-el -1.0 -true - - commons-io commons-io @@ -195,21 +144,6 @@ commons-lang commons-lang 2.1 -true - - - - -xstream -xstream -1.1.2 -true - - - -commons-digester -commons-digester -1.7 true Added: struts/struts2/trunk/toolbox/pom.xml URL: http://svn.apache.org/viewvc/struts/struts2/trunk/toolbox/pom.xml?view=auto&rev=45