You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2010/03/12 12:34:44 UTC

svn commit: r922220 - in /myfaces/extensions/scripting/trunk: pom.xml src/site/apt/download.apt src/site/xdoc/download.xml src/site/xdoc/installation.xml

Author: werpu
Date: Fri Mar 12 11:34:44 2010
New Revision: 922220

URL: http://svn.apache.org/viewvc?rev=922220&view=rev
Log:
https://issues.apache.org/jira/browse/EXTSCRIPT-41

adding download apts due to broken links if I generate it from xdoc
taking the original trinidad page mostly
still not done yet
but tomorrow the docs will be done for a first release

Added:
    myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml   (with props)
Modified:
    myfaces/extensions/scripting/trunk/pom.xml
    myfaces/extensions/scripting/trunk/src/site/apt/download.apt
    myfaces/extensions/scripting/trunk/src/site/xdoc/installation.xml

Modified: myfaces/extensions/scripting/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/pom.xml?rev=922220&r1=922219&r2=922220&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/pom.xml (original)
+++ myfaces/extensions/scripting/trunk/pom.xml Fri Mar 12 11:34:44 2010
@@ -26,6 +26,12 @@
         <module>examples</module>
     </modules>
 
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk/</developerConnection>
+        <url>http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/</url>
+    </scm>
+
     <repositories>
         <repository>
             <id>maven2-repository.dev.java.net</id>
@@ -54,9 +60,7 @@
     </repositories>
 
     <dependencies>
-
         <!-- compile -->
-
         <dependency>
             <groupId>javax.el</groupId>
             <artifactId>el-api</artifactId>

Modified: myfaces/extensions/scripting/trunk/src/site/apt/download.apt
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/apt/download.apt?rev=922220&r1=922219&r2=922220&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/apt/download.apt (original)
+++ myfaces/extensions/scripting/trunk/src/site/apt/download.apt Fri Mar 12 11:34:44 2010
@@ -0,0 +1,85 @@
+ ~~ 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.
+ 
+ ------
+Download Apache MyFaces Extension Scripting
+ ------
+
+Download Apache MyFaces Extension Scripting
+
+ As of now the project is in alpha stage, so no stable release has happened.
+ While we personally think the project already has beta quality, no official beta has been done yet.
+
+ The best bet to try Ext-Scritping for now is a source build from maven (see link below)
+ For Binary Builds from maven you can use the Alpha Repository or the trunk
+ (see  {{{installation.html} the Ext-Scripting Installation Page }} for further information)
+
+ The Binary Alpha 1 Release Maven packages can be found in {{{http://people.apache.org/~lu4242/extscript100alpha}}}
+ 
+
+Latest source code from SVN repository
+
+  If you want to use the latest Apache MyFaces Ext-Scripting features, the source code is under
+  version control with SVN.  Click {{{source-repository.html} here }}
+  for information on how to use the ASF MyFaces Ext-Scripting SVN Repository.
+
+
+Verifying checksums
+
+    It is essential that you verify the integrity of the downloaded
+    files using the PGP and MD5 signatures. MD5 verification ensures the
+    file was not corrupted during the download process. PGP verification
+    ensures that the file came from a certain person.
+
+    To verify the MD5 signature on the files, you need to use a program
+    called <<<md5>>> or <<<md5sum>>>, which is
+    included in many UNIX distributions.  It is also available as part of
+    {{{http://www.gnu.org/software/textutils/textutils.html}GNU Textutils}}.
+    Windows users can get binary md5 programs from {{{http://www.fourmilab.ch/md5/}here}},
+    {{{http://www.pc-tools.net/win32/freeware/console/}here}}, or
+    {{{http://www.slavasoft.com/fsum/}here}}.
+
+
+Verifying signatures
+
+  	PGP verification ensures that the file came from a certain person.  We strongly recommend
+	you verify your downloads with both PGP and MD5.
+
+	The PGP signatures can be verified using {{{http://www.pgpi.org/}PGP}} or
+	{{{http://www.gnupg.org/}GPG}}.  First download the Apache MyFaces Trinidad
+	{{http://svn.apache.org/repos/asf/myfaces/trinidad/trunk/KEYS/}KEYS}}	as well as the <<<asc>>> signature file
+	for the particular distribution. It is important that you get these files from the ultimate
+	trusted source - the main ASF distribution site, rather than from a mirror.
+	Then verify the signatures using ...
+
+	<<<
+	% pgpk -a KEYS
+	% pgpv trinidad-1.0.12-dist.tar.gz.asc trinidad-1.0.12-dist.tar.gz
+	>>>
+
+	<or>
+
+	<<<
+	% pgp -ka KEYS
+	% pgp trinidad-1.0.12-dist.tar.gz.asc trinidad-1.0.12-dist.tar.gz
+	>>>
+
+	  <or>
+
+	<<<
+  	% gpg --import KEYS
+	% gpg --verify trinidad-1.0.12-dist.tar.gz.asc trinidad-1.0.12-dist.tar.gz
+	>>>
+    
\ No newline at end of file

Added: myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml?rev=922220&view=auto
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml (added)
+++ myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml Fri Mar 12 11:34:44 2010
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!--
+    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>
+    <section name="General Information">
+        <p>As of now the project is in alpha stage, so no stable release has happened.
+            While we personally think the project already has beta quality, no official beta has been done yet.
+        </p>
+        <p>The best bet to try Ext-Scritping for now is a source build from maven (see link below)</p>
+        <p>For Binary Builds from maven you can use the Alpha Repository or the trunk
+            (see
+            <a href="installation">The Ext-Script Installation Page</a>
+            for further information)
+        </p>
+        <p>The Binary Alpha 1 Release can be found in http://people.apache.org/~lu4242/extscript100alpha</p>
+        <p>Binary Packages for manual installation will follow before or with the final Release</p>
+    </section>
+
+    <section name="Links">
+        <ul>
+            <li>
+                <a href="/svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk">The svn trunk under,
+                    http://svn.apache.org/repos/asf/myfaces/extensions/scripting/trunk
+                </a>
+            </li>
+        </ul>
+        <ul>
+            <li>
+                <a href="/svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/1.0-ALPHA-1">Alpha1
+                    Tag under,
+                    http://svn.apache.org/repos/asf/myfaces/extensions/scripting/tags/1.0-ALPHA-1
+                </a>
+            </li>
+        </ul>
+        <ul>
+            <li>
+                <a href="/people.apache.org/~lu4242/extscript100alpha">Path to the Maven Repository Hosting the Extensions Scripting Alpha 1 Binary Release (http://people.apache.org/~lu4242/extscript100alpha)
+                </a>
+            </li>
+        </ul>
+    </section>
+</document>    
\ No newline at end of file

Propchange: myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/extensions/scripting/trunk/src/site/xdoc/download.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/extensions/scripting/trunk/src/site/xdoc/installation.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/src/site/xdoc/installation.xml?rev=922220&r1=922219&r2=922220&view=diff
==============================================================================
--- myfaces/extensions/scripting/trunk/src/site/xdoc/installation.xml (original)
+++ myfaces/extensions/scripting/trunk/src/site/xdoc/installation.xml Fri Mar 12 11:34:44 2010
@@ -80,6 +80,8 @@
                 </ul>
 
             </subsection>
+            TODO add the ALPHA 1 Installation here as separate link!
+
             <subsection name="Preparations via Apache Maven 2">
                 <p>The easiest way once Extension scripting is compiled is probably a setup via Apache Maven 2
                 </p>