You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2008/02/11 08:32:19 UTC

svn commit: r620432 - in /incubator/sling/trunk/launchpad/launchpad-webapp: README.txt pom.xml

Author: cziegeler
Date: Sun Feb 10 23:32:18 2008
New Revision: 620432

URL: http://svn.apache.org/viewvc?rev=620432&view=rev
Log:
Use 8888 as the default port to keep Continuum happy.

Modified:
    incubator/sling/trunk/launchpad/launchpad-webapp/README.txt
    incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml

Modified: incubator/sling/trunk/launchpad/launchpad-webapp/README.txt
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/launchpad-webapp/README.txt?rev=620432&r1=620431&r2=620432&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/launchpad-webapp/README.txt (original)
+++ incubator/sling/trunk/launchpad/launchpad-webapp/README.txt Sun Feb 10 23:32:18 2008
@@ -19,15 +19,15 @@
   cd launchpad/launchpad-webapp
   mvn clean package jetty:run
   
-Once the webapp starts, http://localhost:8080/sling should display the Sling 
+Once the webapp starts, http://localhost:8888/sling should display the Sling 
 web console.
 
 4) Test node creation and display
 To create a node with curl:
 
-	 curl -D - -Ftitle=something http://admin:admin@localhost:8080/testing/this
+	 curl -D - -Ftitle=something http://admin:admin@localhost:8888/testing/this
 	 
-Then, http://admin:admin@localhost:8080/testing/this should display a default HTML
+Then, http://admin:admin@localhost:8888/testing/this should display a default HTML
 representation, including the value of the "title" property.
 
 Add a txt or json extension to see other output formats.

Modified: incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml?rev=620432&r1=620431&r2=620432&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml (original)
+++ incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml Sun Feb 10 23:32:18 2008
@@ -48,7 +48,7 @@
     <!--
       Jetty default port (override with -D)
     -->
-    <http.port>8080</http.port>
+    <http.port>8888</http.port>
 
     <!--
       Disable Jetty webapp rescan (override with -D) 
@@ -92,7 +92,7 @@
 
           <connectors>
             <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
-              <port>8080</port>
+              <port>8888</port>
               <maxIdleTime>60000</maxIdleTime>
               <port>${http.port}</port>
             </connector>
@@ -193,11 +193,11 @@
             -->
             <property>
               <name>launchpad.http.server.url</name>
-              <value>http://localhost:8080</value>
+              <value>http://localhost:8888</value>
             </property>
             <property>
               <name>launchpad.webdav.server.url</name>
-              <value>http://localhost:8080/dav/default</value>
+              <value>http://localhost:8888/dav/default</value>
             </property>
           </systemProperties>
         </configuration>
@@ -246,11 +246,11 @@
                     -->
                     <property>
                       <name>launchpad.http.server.url</name>
-                      <value>http://localhost:8080/${project.build.finalName}</value>
+                      <value>http://localhost:8888/${project.build.finalName}</value>
                     </property>
                     <property>
                       <name>launchpad.webdav.server.url</name>
-                      <value>http://localhost:8080/${project.build.finalName}/dav/default</value>
+                      <value>http://localhost:8888/${project.build.finalName}/dav/default</value>
                     </property>
                   </systemProperties>
                 </configuration>