[Pydev-cvs] org.python.pydev.help/pydev.sf.net _faq.contents.html,1.4,1.5 _template.html,1.10,1.11 b
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2005-02-25 12:34:35
|
Update of /cvsroot/pydev/org.python.pydev.help/pydev.sf.net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24804/pydev.sf.net Modified Files: _faq.contents.html _template.html build.py stylesheet.css _index.contents.html Log Message: Index: _template.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/_template.html,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** _template.html 15 Feb 2005 14:42:21 -0000 1.10 --- _template.html 25 Feb 2005 12:34:17 -0000 1.11 *************** *** 16,20 **** <center> <p class="header_text">Last Site Update: %(date)s | ! Latest Version: 0.9.0</p> </center> </td> --- 16,20 ---- <center> <p class="header_text">Last Site Update: %(date)s | ! Latest Version: 0.9.1</p> </center> </td> Index: _faq.contents.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/_faq.contents.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _faq.contents.html 15 Feb 2005 14:42:21 -0000 1.4 --- _faq.contents.html 25 Feb 2005 12:34:17 -0000 1.5 *************** *** 186,189 **** --- 186,199 ---- </tr> + <tr> + <td><strong>Format Code</strong></td> + <td>Ctrl+Shift+F </td> + </tr> + + <tr> + <td><strong>Sort imports alphabetically (or selection)</strong></td> + <td>Ctrl+Shift+O </td> + </tr> + Index: _index.contents.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/_index.contents.html,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** _index.contents.html 15 Feb 2005 14:42:21 -0000 1.19 --- _index.contents.html 25 Feb 2005 12:34:17 -0000 1.20 *************** *** 15,40 **** <h2>News:</h2> <li> ! Homepage update: Check available keybindings for PyDev in the <a href="faq.html">FAQ</a> </li> <li> ! Homepage update: Check our <a href="sponsors.html">sponsors</a> section (and become one). </li> - <br> - <p> - <strong>New Release: 0.9.0!!</strong><br><br> <li> ! This release claims support for the 2.4 syntax (sort of - see details <a href = "version_2_4.html">here</a>). </li> <li> ! Keep you 'quality standards': <a href="pylint.html">PyLint 0.6</a> is integrated with PyDev!! <br> ! PyLint can help you verify your code for some 'quality standard', ! and can find many errors in your program without having to run it. </li> <li> ! Builders can be disabled if you want (check our <a href=faq.html>FAQ</a> as this can be a problem or a solution). </li> --- 15,46 ---- <h2>News:</h2> + <br> + <p> + <strong>New Release: 0.9.1!!</strong><br><br> + + Lot's of 'sugar' in this release... + <li> ! Code Formatter (simple, but already useful) - Ctrl+Shift+F </li> + <li> ! Keep your 'quality standards' with <a href="pylint.html">PyLint 0.6.3</a>: now does not block the interface. </li> <li> ! Organize imports/selection alphabetically - Ctrl+Shift+O </li> <li> ! Content Assistants: They now have icons!! </li> <li> ! Scott Schlesier provided a patch for the editor preferences! It is much better now! ! </li> ! ! <li> ! Code completion has been improved! </li> *************** *** 47,50 **** --- 53,57 ---- <IMG src="images/tks_smiley4.gif" border="0" > Thanks to everyone that supports this project... It feels really good know that the effort to support this project is being appreciated! + Check our <a href="sponsors.html">sponsors</a> section (and become one) <br> <br> Index: stylesheet.css =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/stylesheet.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** stylesheet.css 30 Nov 2004 17:34:55 -0000 1.3 --- stylesheet.css 25 Feb 2005 12:34:17 -0000 1.4 *************** *** 1,2 **** --- 1,3 ---- + body { margin-left: 0px; *************** *** 4,8 **** margin-right: 0px; margin-bottom: 0px; ! background-color:#d5efd5 ; } .download_text { --- 5,9 ---- margin-right: 0px; margin-bottom: 0px; ! background-color:#d5efd8 ; } .download_text { Index: build.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/build.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** build.py 15 Feb 2005 14:42:21 -0000 1.13 --- build.py 25 Feb 2005 12:34:17 -0000 1.14 *************** *** 130,164 **** def Main(): ! channelPydev = '6798751939' ! channelPydevFeatures = '1935586933' ! channelPydevFeaturesMain = '9124732182' ! channelPydevIndex = '0232202381' ! channelPydevFaq = '9395062605' ! channelPydevSponsors = '9586823051' Template( '_template.html', 'index' , 'Pydev' ,None , channelPydevIndex , None) ! Template( '_template.html', 'version_2_4' , 'Python 2.4 Support' ,None , channelPydev , None) Template( '_template.html', 'sponsors' , 'Sponsors' ,None , channelPydevSponsors , None) ! Template( '_template.html', 'screenshots' , 'Screenshots' ,None , channelPydev , None) ! Template( '_template.html', 'download' , 'Download' ,None , channelPydev , None) ! Template( '_template.html', 'roadmap' , 'Roadmap' ,None , channelPydev , None) ! Template( '_template.html', 'codecompletionsnapshots' , 'Code Completion Snapshots',None , channelPydevFeatures , None) Template( '_template.html', 'faq' , 'FAQ' ,None , channelPydevFaq , None) ! Template( '_template.html', 'credits' , 'Credits' ,None , channelPydev , None) ! Template( '_template.html', 'run' , 'Run' ,None , channelPydev , None) ! Template( '_template.html', 'debug_prefs' , 'Debug Preferences' ,None , channelPydev , None) ! Template( '_template.html', 'pychecker' , 'PyChecker' ,None , channelPydevFeatures , None) Template( '_template.html', 'features' , 'Features' ,_topicFeatures() , channelPydevFeaturesMain , _otherFeatures()) ! Template( '_template.html', 'codecompletion' , 'Code Completion' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'templates' , 'Templates' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'contentassist' , 'Content Assist (Ctrl+1)' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'refactoring' , 'Refactoring' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'codecoverage' , 'Code Coverage' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'debug' , 'Debugger' ,_topicFeatures() , channelPydev , _otherFeatures()) ! Template( '_template.html', 'editor_prefs' , 'Editor Preferences' ,_topicFeatures() , channelPydev , _otherFeatures()) ! Template( '_template.html', 'editor' , 'Editor' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'pylint' , 'PyLint' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) ! Template( '_template.html', 'tasks' , 'Tasks' ,_topicFeatures() , channelPydevFeatures , _otherFeatures()) print "done" --- 130,179 ---- def Main(): ! # channelPydev = '6798751939' ! # channelPydevFeatures = '1935586933' ! channelPydevFeaturesMain = '9124732182' ! channelPydevIndex = '0232202381' ! channelPydevFaq = '9395062605' ! channelPydevSponsors = '9586823051' ! channelPydevVersion24 = '8139721027' ! channelPydevScreenshots = '7446949127' ! channelPydevDownload = '4850861835' ! channelPydevRoadmap = '7477309072' ! channelPydevRun = '8142059816' ! channelPydevDebugPrefs = '2396011149' ! channelPydevCodeComplScre = '1729524630' ! channelPydevCodeCompl = '4190535423' ! channelPydevTemplates = '9692148260' ! channelPydevContentAss = '3352888466' ! channelPydevRefactoring = '6336735894' ! channelPydevCodeCover = '8064582308' ! channelPydevDebug = '5155326690' ! channelPydevEditor = '1542865200' ! channelPydevEditorPrefs = '9616384936' ! channelPydevPyLint = '5824164055' ! channelPydevTasks = '0662167821' Template( '_template.html', 'index' , 'Pydev' ,None , channelPydevIndex , None) ! Template( '_template.html', 'version_2_4' , 'Python 2.4 Support' ,None , channelPydevVersion24 , None) Template( '_template.html', 'sponsors' , 'Sponsors' ,None , channelPydevSponsors , None) ! Template( '_template.html', 'screenshots' , 'Screenshots' ,None , channelPydevScreenshots , None) ! Template( '_template.html', 'download' , 'Download' ,None , channelPydevDownload , None) ! Template( '_template.html', 'roadmap' , 'Roadmap' ,None , channelPydevRoadmap , None) ! Template( '_template.html', 'codecompletionsnapshots' , 'Code Completion Snapshots',None , channelPydevCodeComplScre, None) Template( '_template.html', 'faq' , 'FAQ' ,None , channelPydevFaq , None) ! Template( '_template.html', 'run' , 'Run' ,None , channelPydevRun , None) ! Template( '_template.html', 'debug_prefs' , 'Debug Preferences' ,None , channelPydevDebugPrefs , None) Template( '_template.html', 'features' , 'Features' ,_topicFeatures() , channelPydevFeaturesMain , _otherFeatures()) ! Template( '_template.html', 'codecompletion' , 'Code Completion' ,_topicFeatures() , channelPydevCodeCompl , _otherFeatures()) ! Template( '_template.html', 'templates' , 'Templates' ,_topicFeatures() , channelPydevTemplates , _otherFeatures()) ! Template( '_template.html', 'contentassist' , 'Content Assist (Ctrl+1)' ,_topicFeatures() , channelPydevContentAss , _otherFeatures()) ! Template( '_template.html', 'refactoring' , 'Refactoring' ,_topicFeatures() , channelPydevRefactoring , _otherFeatures()) ! Template( '_template.html', 'codecoverage' , 'Code Coverage' ,_topicFeatures() , channelPydevCodeCover , _otherFeatures()) ! Template( '_template.html', 'debug' , 'Debugger' ,_topicFeatures() , channelPydevDebug , _otherFeatures()) ! Template( '_template.html', 'editor' , 'Editor' ,_topicFeatures() , channelPydevEditor , _otherFeatures()) ! Template( '_template.html', 'editor_prefs' , 'Editor Preferences' ,_topicFeatures() , channelPydevEditorPrefs , _otherFeatures()) ! Template( '_template.html', 'pylint' , 'PyLint' ,_topicFeatures() , channelPydevPyLint , _otherFeatures()) ! Template( '_template.html', 'tasks' , 'Tasks' ,_topicFeatures() , channelPydevTasks , _otherFeatures()) print "done" |