Author: gnodet
Date: Fri Jan 12 06:41:29 2007
New Revision: 495583

URL: http://svn.apache.org/viewvc?view=rev&rev=495583
Log:
Fix servicemix-web-console and apache-servicemix-web

Added:
    incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt   
(with props)
    incubator/servicemix/trunk/web/servicemix-web-console/README.txt   (with 
props)
    
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/sitemesh-decorator.tld
      - copied unchanged from r495576, 
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/tags/sitemesh-decorator.tld
    
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/sitemesh-page.tld
      - copied unchanged from r495576, 
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/tags/sitemesh-page.tld
Removed:
    
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/tags/sitemesh-decorator.tld
    
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/tags/sitemesh-page.tld
Modified:
    
incubator/servicemix/trunk/distributions/apache-servicemix-web/src/main/webapp/WEB-INF/web.xml
    
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/web.xml

Added: incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt?view=auto&rev=495583
==============================================================================
--- incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt 
(added)
+++ incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt 
Fri Jan 12 06:41:29 2007
@@ -0,0 +1,26 @@
+/*
+ * 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.
+ */
+
+Welcome to the Servicemix Web Application Distribution
+=================================================
+
+To quickly run it, just launch
+   mvn jetty:run-war
+   
+and browse the application at
+   http://localhost:8080/apache-servicemix-web
+

Propchange: 
incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/servicemix/trunk/distributions/apache-servicemix-web/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: 
incubator/servicemix/trunk/distributions/apache-servicemix-web/src/main/webapp/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/distributions/apache-servicemix-web/src/main/webapp/WEB-INF/web.xml?view=diff&rev=495583&r1=495582&r2=495583
==============================================================================
--- 
incubator/servicemix/trunk/distributions/apache-servicemix-web/src/main/webapp/WEB-INF/web.xml
 (original)
+++ 
incubator/servicemix/trunk/distributions/apache-servicemix-web/src/main/webapp/WEB-INF/web.xml
 Fri Jan 12 06:41:29 2007
@@ -118,6 +118,22 @@
     <!--         Factor out common headers in JSP pages            -->
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
-->
          <jsp-config>
+      <taglib>
+        <taglib-uri>
+          http://www.opensymphony.com/sitemesh/decorator
+        </taglib-uri>
+        <taglib-location>
+          /WEB-INF/sitemesh-decorator.tld
+        </taglib-location>
+      </taglib>
+      <taglib>
+        <taglib-uri>
+          http://www.opensymphony.com/sitemesh/page
+        </taglib-uri>
+        <taglib-location>
+          /WEB-INF/sitemesh-page.tld
+        </taglib-location>
+      </taglib>
            <jsp-property-group>
               <url-pattern>*.jsp</url-pattern>
               <include-prelude>/WEB-INF/jspf/headertags.jspf</include-prelude>

Added: incubator/servicemix/trunk/web/servicemix-web-console/README.txt
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/web/servicemix-web-console/README.txt?view=auto&rev=495583
==============================================================================
--- incubator/servicemix/trunk/web/servicemix-web-console/README.txt (added)
+++ incubator/servicemix/trunk/web/servicemix-web-console/README.txt Fri Jan 12 
06:41:29 2007
@@ -0,0 +1,26 @@
+/*
+ * 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.
+ */
+
+Welcome to the Servicemix Web Console
+========================================================
+
+To quickly run it, start a ServiceMix instance and then launch
+   mvn jetty:run
+   
+and browse the application at
+   http://localhost:8080/servicemix-web-console
+

Propchange: incubator/servicemix/trunk/web/servicemix-web-console/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/web/servicemix-web-console/README.txt
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: incubator/servicemix/trunk/web/servicemix-web-console/README.txt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: 
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/web.xml?view=diff&rev=495583&r1=495582&r2=495583
==============================================================================
--- 
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/web.xml
 (original)
+++ 
incubator/servicemix/trunk/web/servicemix-web-console/src/main/webapp/WEB-INF/web.xml
 Fri Jan 12 06:41:29 2007
@@ -109,6 +109,22 @@
     <!--         Factor out common headers in JSP pages            -->
     <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
-->
          <jsp-config>
+      <taglib>
+        <taglib-uri>
+          http://www.opensymphony.com/sitemesh/decorator
+        </taglib-uri>
+        <taglib-location>
+          /WEB-INF/sitemesh-decorator.tld
+        </taglib-location>
+      </taglib>
+      <taglib>
+        <taglib-uri>
+          http://www.opensymphony.com/sitemesh/page
+        </taglib-uri>
+        <taglib-location>
+          /WEB-INF/sitemesh-page.tld
+        </taglib-location>
+      </taglib>
            <jsp-property-group>
               <url-pattern>*.jsp</url-pattern>
               <include-prelude>/WEB-INF/jspf/headertags.jspf</include-prelude>


Reply via email to