From: <fwi...@us...> - 2009-05-28 01:25:56
|
Revision: 6405 http://jython.svn.sourceforge.net/jython/?rev=6405&view=rev Author: fwierzbicki Date: 2009-05-28 01:25:48 +0000 (Thu, 28 May 2009) Log Message: ----------- Some cleanup, added "jsync" which is just a semi-hardcoded rsync for my convenience. Modified Paths: -------------- trunk/website/build.xml trunk/website/left.nav Added Paths: ----------- trunk/website/index.txt trunk/website/jsync Removed Paths: ------------- trunk/website/redirects/index.txt Modified: trunk/website/build.xml =================================================================== --- trunk/website/build.xml 2009-05-27 23:09:36 UTC (rev 6404) +++ trunk/website/build.xml 2009-05-28 01:25:48 UTC (rev 6405) @@ -32,7 +32,7 @@ <include name="left.nav"/> </fileset> </copy> - <copy todir="dist/Project"> + <copy todir="dist"> <fileset dir="."> <include name="*.txt"/> </fileset> Copied: trunk/website/index.txt (from rev 6403, trunk/website/redirects/index.txt) =================================================================== --- trunk/website/index.txt (rev 0) +++ trunk/website/index.txt 2009-05-28 01:25:48 UTC (rev 6405) @@ -0,0 +1,21 @@ +================== +The Jython Project +================== +.. admonition:: Latest News + + The Jython development team is proud to announce the release of `Jython 2.5rc3 <http://downloads.sourceforge.net/jython/jython_installer-2.5rc3.jar>`__! + +Jython 2.5 Documentation +======================== + +The documentation for Jython 2.5 is being developed on our wiki_. Please help +Jython by adding content and updating our wiki. As the content matures for 2.5 +it will be pulled back into this website. Archived versions of the old webpages +are available below: + +* Old website for `Jython 2.2`_ +* Old website for `Jython 2.1`_. + +.. _wiki: http://wiki.python.org/jython +.. _Jython 2.1: ./archive/21/index.html +.. _Jython 2.2: ./archive/22/index.html Added: trunk/website/jsync =================================================================== --- trunk/website/jsync (rev 0) +++ trunk/website/jsync 2009-05-28 01:25:48 UTC (rev 6405) @@ -0,0 +1,8 @@ +LOCAL_DIR=/Users/frank/svn/jython/trunk +WEB_ADMIN=fwierzbicki +SSH_COMMAND=/opt/local/bin/ssh + +rsync --progress --stats --compress --rsh=$SSH_COMMAND \ + --recursive --links --delete \ + --exclude "*bak" --exclude "*~" --exclude ".svn" \ + $LOCAL_DIR/website/dist/ $WEB...@di...:/data/jython/ Property changes on: trunk/website/jsync ___________________________________________________________________ Added: svn:executable + * Modified: trunk/website/left.nav =================================================================== --- trunk/website/left.nav 2009-05-27 23:09:36 UTC (rev 6404) +++ trunk/website/left.nav 2009-05-28 01:25:48 UTC (rev 6405) @@ -3,19 +3,15 @@ menupageitem | License | /license.html menupageitem | Old 2.1 Website | /archive/21/index.html menupageitem | Old 2.2 Website | /archive/22/index.html -menupageitem | Contributors | /contributors.html -menupageitem | Jython Roadmap | /roadmap.html menupageitem | Mailing Lists | http://sourceforge.net/mail/?group_id=12867 section | Wiki links -menupageitem | Front page | http://wiki.python.org/jython/ -menupageitem | Installation | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | FAQ | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | News | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | History | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | Download | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | User Guide | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | Books and Articles | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | CPython comparison | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | Developer FAQ | http://wiki.python.org/jython/JythonDeveloperGuide +menupageitem | Front page/News | http://wiki.python.org/jython/ +menupageitem | Installation | http://wiki.python.org/jython/InsallationInstructions +menupageitem | FAQ | http://wiki.python.org/jython/JythonFaq +menupageitem | Download | http://wiki.python.org/jython/DownloadInstructions +menupageitem | User Guide | http://wiki.python.org/jython/UserGuide +menupageitem | Books and Articles | http://wiki.python.org/jython/JythonBibliography +#menupageitem | CPython comparison | http://wiki.python.org/jython/FIXME +#menupageitem | Developer FAQ | http://wiki.python.org/jython/JythonDeveloperGuide menupageitem | Developer Guide | http://wiki.python.org/jython/JythonDeveloperGuide -menupageitem | Reporting Bugs | http://wiki.python.org/jython/JythonDeveloperGuide +#menupageitem | Reporting Bugs | http://wiki.python.org/jython/JythonDeveloperGuide Deleted: trunk/website/redirects/index.txt =================================================================== --- trunk/website/redirects/index.txt 2009-05-27 23:09:36 UTC (rev 6404) +++ trunk/website/redirects/index.txt 2009-05-28 01:25:48 UTC (rev 6405) @@ -1,21 +0,0 @@ -================== -The Jython Project -================== -.. admonition:: Latest News - - The Jython development team is proud to announce the release of Jython 2.5rc3! `Jython 2.5.0! <http://downloads.sourceforge.net/jython/jython_installer-2.5rc3.jar>`__ - -Jython 2.5 Documentation -======================== - -The documentation for Jython 2.5 is being developed on our wiki_. Please help -Jython by adding content and updating our wiki. As the content matures for 2.5 -it will be pulled back into this website. Archived versions of the old webpages -are available below: - -* Old website for `Jython 2.2`_ -* Old website for `Jython 2.1`_. - -.. _wiki: http://wiki.python.org/jython -.. _Jython 2.1: ./archive/21/index.html -.. _Jython 2.2: ./archive/22/index.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |