You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by so...@apache.org on 2008/12/18 18:52:07 UTC

svn commit: r727778 - in /myfaces/portlet-bridge/core/trunk: api/pom.xml pom.xml src/site/xdoc/ src/site/xdoc/source-repository.xml

Author: sobryan
Date: Thu Dec 18 09:52:07 2008
New Revision: 727778

URL: http://svn.apache.org/viewvc?rev=727778&view=rev
Log:
Added a custom source-repository.html file so that it refers to the trunk rather then the tag

Added:
    myfaces/portlet-bridge/core/trunk/src/site/xdoc/
    myfaces/portlet-bridge/core/trunk/src/site/xdoc/source-repository.xml
Modified:
    myfaces/portlet-bridge/core/trunk/api/pom.xml
    myfaces/portlet-bridge/core/trunk/pom.xml

Modified: myfaces/portlet-bridge/core/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/trunk/api/pom.xml?rev=727778&r1=727777&r2=727778&view=diff
==============================================================================
--- myfaces/portlet-bridge/core/trunk/api/pom.xml (original)
+++ myfaces/portlet-bridge/core/trunk/api/pom.xml Thu Dec 18 09:52:07 2008
@@ -16,7 +16,7 @@
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>MyFaces Portlet Bridge API</name>
+  <name>MyFaces Portlet Bridge 1.0 API</name>
   <artifactId>portlet-bridge-api</artifactId>
   <version>1.0.0-SNAPSHOT</version>
   <packaging>jar</packaging>

Modified: myfaces/portlet-bridge/core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/trunk/pom.xml?rev=727778&r1=727777&r2=727778&view=diff
==============================================================================
--- myfaces/portlet-bridge/core/trunk/pom.xml (original)
+++ myfaces/portlet-bridge/core/trunk/pom.xml Thu Dec 18 09:52:07 2008
@@ -182,7 +182,7 @@
           <links>
             <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
             <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
-            <link>http://portals.apache.org/pluto/multiproject/portlet-api/apidocs</link>
+            <link>http://portals.apache.org/pluto/portlet-1.0-apidocs/</link>
           </links>
         </configuration>
       </plugin>

Added: myfaces/portlet-bridge/core/trunk/src/site/xdoc/source-repository.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/trunk/src/site/xdoc/source-repository.xml?rev=727778&view=auto
==============================================================================
--- myfaces/portlet-bridge/core/trunk/src/site/xdoc/source-repository.xml (added)
+++ myfaces/portlet-bridge/core/trunk/src/site/xdoc/source-repository.xml Thu Dec 18 09:52:07 2008
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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.	   
+-->
+<document>
+
+  <properties>
+    <title>Source Repository</title>
+  </properties>
+
+  <body>
+    <section name="Overview">
+      <p>
+        This project uses <a href="http://subversion.tigris.org">Subversion</a> to manage its source code. 
+        Instructions on Subversion use can be found at <a href="http://svnbook.red-bean.com/">
+        http://svnbook.red-bean.com/</a>.
+      </p>
+    </section>
+    <section name="Web Access">
+      <p>
+        The following is a link to the online source repository.
+        <source><a href="http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/core/trunk">http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/core/trunk</a></source>
+      </p>
+    </section>
+    <section name="Anonymous Access">
+      <p>
+        The source can be checked out anonymously from SVN with this command:
+        <source>$ svn checkout http://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk portlet-bridge</source>
+      </p>
+    </section>
+    <section name="Developer Access">
+      <p>
+        Everyone can access the Subversion repository via HTTPS, but Committers must checkout the Subversion
+        repository via HTTPS.
+        <source>$ svn checkout https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk portlet-bridge</source>
+        To commit changes to the repository, execute the following command to commit your changes (svn will 
+        prompt you for your password)
+        <source>$ svn commit --username your-username -m "A message"</source>
+      </p>
+    </section>
+    <section name="Access from behind a firewall">
+      <p>
+        For those users who are stuck behind a corporate firewall which is blocking http access to the 
+        Subversion repository, you can try to access it via the developer connection:
+        <source>$ svn checkout https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk portlet-bridge</source>
+      </p>
+    </section>    
+    <section name="Access through a proxy">
+      <p>
+        The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers"
+        configuration file to indicate which proxy to use. The files location depends on your operating system.
+        On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in 
+        "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)
+      </p>
+      <p>
+        There are comments in the file explaining what to do. If you don't have that file, get the latest 
+        Subversion client and run any command; this will cause the configuration directory and template files 
+        to be created.
+      </p>
+      <p>
+        Example : Edit the 'servers' file and add something like :
+        <source>[global]
+http-proxy-host = your.proxy.name
+http-proxy-port = 3128</source>
+      </p>
+    </section>    
+  </body>
+</document>