[Pydev-cvs] org.python.pydev.help/pydev.sf.net stylesheet.css,NONE,1.1 _template.html,1.1,1.2 build.
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2004-10-13 13:14:18
|
Update of /cvsroot/pydev/org.python.pydev.help/pydev.sf.net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4921/pydev.sf.net Modified Files: _template.html build.py _index.contents.html Added Files: stylesheet.css Log Message: Index: _template.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/_template.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _template.html 8 Oct 2004 16:47:10 -0000 1.1 --- _template.html 13 Oct 2004 13:13:52 -0000 1.2 *************** *** 18,21 **** --- 18,22 ---- <li><a href="Roadmap.html">Roadmap</a></li> <li><a href="Download.html">Download</a></li> + <li><a href="Credits.html">Credits</a></li> </ul> </div> Index: _index.contents.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/_index.contents.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _index.contents.html 8 Oct 2004 16:58:34 -0000 1.2 --- _index.contents.html 13 Oct 2004 13:13:52 -0000 1.3 *************** *** 1,18 **** ! <p>Pydev is a complete <a target="_blank" href="http://www.python.org">python</a> development ! environment for <a target="_blank" href="http://www.eclipse.org">eclipse</a>.</p> ! <P>Pydev has been created by <B>Aleks Totic</B> as a "getting to know Eclipse ! project" and is currently maintained by <B>Fabio Zadrozny</B> ! . ! <P>Other developers that helped (or still are helping) in the development ! of pydev are: ! <LI> <!--StartFragment --> Dana Moore <LI> ! William Wright <LI> ! Grig Gheorghiu <LI> ! Parhaum Toofanian ! </LI> ! <P><STRONG>More information on the pydev plugin can be found at: </STRONG></P> <LI> <A href="http://sourceforge.net/mailarchive/forum.php?forum_id=39082">pydev-code</A>: --- 1,27 ---- ! <p><STRONG>Pydev </STRONG>is a complete <a target="_blank" href="http://www.python.org"> ! python</a> development environment for <a target="_blank" href="http://www.eclipse.org"> ! eclipse</a>.</p> ! <P>It has been created by <B>Aleks Totic</B> as a "getting to know Eclipse project" ! and is currently maintained by <B>Fabio Zadrozny</B> . ! </P> ! <P><STRONG>Quick Summary </STRONG> ! <P>Pydev has still not reached 1.0, but it is already stable enough for ! python editing, with features such as:</P> <LI> ! Code completion <LI> ! Code Folding <LI> ! Outline ! <LI> ! Go to definition ! <LI> ! Refactoring (Bicycle Repair Man) ! <LI> ! Debug ! <LI> ! Etc. (more details can be found at the <a href="Features.html">features</a> page) ! <P><STRONG>More information on the pydev plugin can be found at: </STRONG> ! </P> <LI> <A href="http://sourceforge.net/mailarchive/forum.php?forum_id=39082">pydev-code</A>: *************** *** 27,35 **** <LI> <A href="http://pydev.blogspot.com/">Pydev Adventures weblog</A>: Weblog ! maintained by Fabio Zadrozny with notes about his experiences ! with the pydev development. ! </LI> ! ! <P><STRONG>Mentions in the press:</STRONG></P> <LI> <A href="http://www-106.ibm.com/developerworks/library/os-ecant/?ca=drs-tp2604">Python --- 36,42 ---- <LI> <A href="http://pydev.blogspot.com/">Pydev Adventures weblog</A>: Weblog ! maintained by Fabio Zadrozny with notes about his experiences with the pydev ! development. ! <P><STRONG>Mentions in the press:</STRONG></P> <LI> <A href="http://www-106.ibm.com/developerworks/library/os-ecant/?ca=drs-tp2604">Python *************** *** 38,40 **** --- 45,54 ---- <A href="http://conferences.oreillynet.com/presentations/os2004/moore_python.pdf">Pydev at OsCon</A> + <br> + <FONT size="2"></FONT> </LI> + <P><FONT size="2">Hosted by</FONT> + </P> + <p><A href="http://sourceforge.net"> <IMG src="http://sourceforge.net/sflogo.php?group_id=85796&type=5" width="210" height="62" + border="0" alt="SourceForge.net Logo"> </A> + </p> --- NEW FILE: stylesheet.css --- body { font-family: Arial, Helvetica, sans-serif font-size: 12px; } h1 { font-family: Arial, Helvetica, sans-serif; } div.sidebar { position:static; float: left; width: 180px; height: 150%; background-color: lightyellow; color: white; } .sidebar li { margin-left: 0px; margin-top: 3px; padding: 0px; } div.contents { width: 100%; padding-left: 15px; } li { margin-left: 5px; } a { color: blue; text-decoration: none; } a:hover { text-decoration: underline; } .sidebar a { font-size: medium; } Index: build.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/build.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build.py 8 Oct 2004 16:47:10 -0000 1.1 --- build.py 13 Oct 2004 13:13:52 -0000 1.2 *************** *** 26,29 **** --- 26,30 ---- Template( '_template.html', 'refactoring' ) Template( '_template.html', 'Faq' ) + Template( '_template.html', 'Credits' ) |