(as I am not sure if Pepe reads svn notify I fwd it; ... since yesterday I am back now in Chile.)
-------- Original-Nachricht -------- Betreff: Re: [Jump-pilot-svn-notify] SF.net SVN: jump-pilot:[3228] core/trunk/lib/ext/jython Datum: Sat, 12 Jan 2013 22:20:55 +0100 Von: Michaël Michaud <[email protected]> Antwort an: [email protected] An: [email protected] Hi Peppe, I think you've just cancel the fix I've done on startup.py the day before yesterday. You must always update your project before you make a change. By the way, the fix was quite simple, so you can apply it again without reverting your change. See : http://jump-pilot.svn.sourceforge.net/viewvc/jump-pilot/core/trunk/lib/ext/jython/startup.py?r1=1647&r2=3223 Michaël > Revision: 3228 > http://jump-pilot.svn.sourceforge.net/jump-pilot/?rev=3228&view=rev > Author: ma15569 > Date: 2013-01-12 21:05:52 +0000 (Sat, 12 Jan 2013) > Log Message: > ----------- > 2013-01-1218 Giuseppe Aruta ([email protected]) > * Add Icons for Jython tools in Jython/images folder > * Modified startup.py script to read icond > > Modified Paths: > -------------- > core/trunk/lib/ext/jython/startup.py > > Added Paths: > ----------- > core/trunk/lib/ext/jython/images/console_hide.png > core/trunk/lib/ext/jython/images/console_show.png > core/trunk/lib/ext/jython/images/features_merge.png > core/trunk/lib/ext/jython/images/shape_align_bottom.png > core/trunk/lib/ext/jython/images/shape_align_left.png > core/trunk/lib/ext/jython/images/shape_align_right.png > core/trunk/lib/ext/jython/images/shape_align_top.png > core/trunk/lib/ext/jython/images/shape_center_horizontal.png > core/trunk/lib/ext/jython/images/shape_center_vertical.png > core/trunk/lib/ext/jython/images/shape_distribute_horizontal.png > core/trunk/lib/ext/jython/images/shape_distribute_vertical.png > > Added: core/trunk/lib/ext/jython/images/console_hide.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/console_hide.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/console_show.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/console_show.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/features_merge.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/features_merge.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_align_bottom.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/shape_align_bottom.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_align_left.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/shape_align_left.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_align_right.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/shape_align_right.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_align_top.png > =================================================================== > (Binary files differ) > > > Property changes on: core/trunk/lib/ext/jython/images/shape_align_top.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_center_horizontal.png > =================================================================== > (Binary files differ) > > > Property changes on: > core/trunk/lib/ext/jython/images/shape_center_horizontal.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_center_vertical.png > =================================================================== > (Binary files differ) > > > Property changes on: > core/trunk/lib/ext/jython/images/shape_center_vertical.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_distribute_horizontal.png > =================================================================== > (Binary files differ) > > > Property changes on: > core/trunk/lib/ext/jython/images/shape_distribute_horizontal.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Added: core/trunk/lib/ext/jython/images/shape_distribute_vertical.png > =================================================================== > (Binary files differ) > > > Property changes on: > core/trunk/lib/ext/jython/images/shape_distribute_vertical.png > ___________________________________________________________________ > Added: svn:mime-type > + application/octet-stream > > Modified: core/trunk/lib/ext/jython/startup.py > =================================================================== > --- core/trunk/lib/ext/jython/startup.py 2013-01-12 15:34:10 UTC (rev > 3227) > +++ core/trunk/lib/ext/jython/startup.py 2013-01-12 21:05:52 UTC (rev > 3228) > @@ -10,22 +10,22 @@ > toolMenu = toolbox.JMenuBar.getMenu(0) > sep = File.separator # / for linux and \ for windows > > -toolbox.centerPanel.components[0].hide() #comment out to initially show > +toolbox.centerPanel.components[1].hide() #comment out to initially show > #install menu items > -def showConsole(event): toolbox.centerPanel.components[0].show(); > toolbox.pack() > -toolMenu.add(swing.JMenuItem("Show Console", actionPerformed=showConsole)) > -def hideConsole(event): toolbox.centerPanel.components[0].hide(); > toolbox.pack() > -toolMenu.add(swing.JMenuItem("Hide Console", actionPerformed=hideConsole)) > +def showConsole(event): toolbox.centerPanel.components[1].show(); > toolbox.pack() > +toolMenu.add(swing.JMenuItem("Show Console", actionPerformed=showConsole, > icon = swing.ImageIcon(startuppath + "images" + sep + "console_show.png"))) > +def hideConsole(event): toolbox.centerPanel.components[1].hide(); > toolbox.pack() > +toolMenu.add(swing.JMenuItem("Hide Console", actionPerformed=hideConsole, > icon = swing.ImageIcon(startuppath + "images" + sep + "console_hide.png"))) > import UnionSelected #too much code to inline. use module > -toolMenu.add(swing.JMenuItem("Union Selected", > actionPerformed=UnionSelected.unionSelected)) > +toolMenu.add(swing.JMenuItem("Union Selected", > actionPerformed=UnionSelected.unionSelected, icon = > swing.ImageIcon(startuppath + "images" + sep + "features_merge.png"))) > import AlignSelected > -alignMenu = swing.JMenu("Align Selected") > -alignLeftMenu = swing.JMenuItem("Left", > actionPerformed=AlignSelected.alignLeft) > -alignTopMenu = swing.JMenuItem("Top", actionPerformed=AlignSelected.alignTop) > -alignRightMenu = swing.JMenuItem("Right", > actionPerformed=AlignSelected.alignRight) > -alignBottomMenu = swing.JMenuItem("Bottom", > actionPerformed=AlignSelected.alignBottom) > -alignVerticalMenu = swing.JMenuItem("Center Vertical", > actionPerformed=AlignSelected.alignVertical) > -alignHorizontalMenu = swing.JMenuItem("Center Horizontal", > actionPerformed=AlignSelected.alignHorizontal) > +alignMenu = swing.JMenu("Align Selected", icon = swing.ImageIcon(startuppath > + "images" + sep + "shape_align_left.png")) > +alignLeftMenu = swing.JMenuItem("Left", > actionPerformed=AlignSelected.alignLeft, icon = swing.ImageIcon(startuppath + > "images" + sep + "shape_align_left.png")) > +alignRightMenu = swing.JMenuItem("Right", > actionPerformed=AlignSelected.alignRight, icon = swing.ImageIcon(startuppath > + "images" + sep + "shape_align_right.png")) > +alignTopMenu = swing.JMenuItem("Top", > actionPerformed=AlignSelected.alignTop, icon = swing.ImageIcon(startuppath + > "images" + sep + "shape_align_top.png")) > +alignBottomMenu = swing.JMenuItem("Bottom", > actionPerformed=AlignSelected.alignBottom, icon = swing.ImageIcon(startuppath > + "images" + sep + "shape_align_bottom.png")) > +alignVerticalMenu = swing.JMenuItem("Center Vertical", > actionPerformed=AlignSelected.alignVertical, icon = > swing.ImageIcon(startuppath + "images" + sep + "shape_center_vertical.png")) > +alignHorizontalMenu = swing.JMenuItem("Center Horizontal", > actionPerformed=AlignSelected.alignHorizontal, icon = > swing.ImageIcon(startuppath + "images" + sep + "shape_center_horizontal.png")) > alignMenu.add(alignLeftMenu) > alignMenu.add(alignTopMenu) > alignMenu.add(alignRightMenu) > @@ -34,9 +34,9 @@ > alignMenu.add(alignHorizontalMenu) > toolMenu.add(alignMenu) > import DistributeSelected > -distributeMenu = swing.JMenu("Distribute Selected") > -distributeVerticalMenu = swing.JMenuItem("Vertical", > actionPerformed=DistributeSelected.distributeVertical) > -distributeHorizontalMenu = swing.JMenuItem("Horizontal", > actionPerformed=DistributeSelected.distributeHorizontal) > +distributeMenu = swing.JMenu("Distribute Selected", icon = > swing.ImageIcon(startuppath + "images" + sep + > "shape_distribute_vertical.png")) > +distributeVerticalMenu = swing.JMenuItem("Vertical", > actionPerformed=DistributeSelected.distributeVertical, icon = > swing.ImageIcon(startuppath + "images" + sep + > "shape_distribute_vertical.png")) > +distributeHorizontalMenu = swing.JMenuItem("Horizontal", > actionPerformed=DistributeSelected.distributeHorizontal, icon = > swing.ImageIcon(startuppath + "images" + sep + > "shape_distribute_horizontal.png")) > distributeMenu.add(distributeVerticalMenu) > distributeMenu.add(distributeHorizontalMenu) > toolMenu.add(distributeMenu) > > This was sent by the SourceForge.net collaborative development platform, the > world's largest Open Source development site. > > > ------------------------------------------------------------------------------ > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. SALE $99.99 this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122912 > _______________________________________________ > Jump-pilot-svn-notify mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/jump-pilot-svn-notify > > ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only -- learn more at: http://p.sf.net/sfu/learnmore_122912 _______________________________________________ Jump-pilot-svn-notify mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jump-pilot-svn-notify ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only -- learn more at: http://p.sf.net/sfu/learnmore_122912 _______________________________________________ Jump-pilot-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
