[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jedit-cvs
Subject:    [ jEdit-commits ] SF.net SVN: jedit:[23092] jEdit/trunk
From:       ezust () users ! sourceforge ! net
Date:       2013-07-28 19:02:04
Message-ID: E1V3WEG-0002Me-Rk () sfp-svn-1 ! v30 ! ch3 ! sourceforge ! com
[Download RAW message or body]

Revision: 23092
          http://jedit.svn.sourceforge.net/jedit/?rev=23092&view=rev
Author:   ezust
Date:     2013-07-28 19:02:04 +0000 (Sun, 28 Jul 2013)
Log Message:
-----------
Show dependencies in a flowlayout with comma separator, instead of a column

Modified Paths:
--------------
    jEdit/trunk/doc/CHANGES.txt
    jEdit/trunk/org/gjt/sp/jedit/pluginmgr/PluginDetailPanel.java

Modified: jEdit/trunk/doc/CHANGES.txt
===================================================================
--- jEdit/trunk/doc/CHANGES.txt	2013-07-28 17:03:02 UTC (rev 23091)
+++ jEdit/trunk/doc/CHANGES.txt	2013-07-28 19:02:04 UTC (rev 23092)
@@ -13,10 +13,7 @@
    (#3614229 - Alan Ezust)
    
  - Reload optionally dependent plugins when a plugin is unloaded.
-   (#3614456 - Dale Anson)
-   
- - Plugin dependencies are shown in the plugin manager details pane for all three 
-   tabs. (#3614465 - Dale Anson)  
+   (#3614456 - Dale Anson)  
 
 }}}
 {{{ API Changes
@@ -28,6 +25,9 @@
 }}}
 {{{ UI improvements
 
+ - Plugin dependencies are shown in the plugin manager details pane for all three 
+   tabs. (#3614465 - Dale Anson)  
+
  - The column titles are missing in shortcuts option pane
    (#3614404 Matthieu Casanova) [merged into 5.1.x]
 

Modified: jEdit/trunk/org/gjt/sp/jedit/pluginmgr/PluginDetailPanel.java
===================================================================
--- jEdit/trunk/org/gjt/sp/jedit/pluginmgr/PluginDetailPanel.java	2013-07-28 17:03:02 \
                UTC (rev 23091)
+++ jEdit/trunk/org/gjt/sp/jedit/pluginmgr/PluginDetailPanel.java	2013-07-28 19:02:04 \
UTC (rev 23092) @@ -129,9 +129,12 @@
 			builder.append("<br><br><b>").append(jEdit.getProperty("install-plugins.info.depends", \
"Depends on")).append("</b>:");  List<String> depends = new ArrayList(dependencies);
 			Collections.sort(depends);
+			int i = 0;
 			for (String dep : depends) 
 			{
-				builder.append("<br>").append(dep);		
+				if (i > 0) builder.append(",");
+				builder.append(" ").append(dep);
+				++i;				
 			}
 		}
 		return builder.toString();

This was sent by the SourceForge.net collaborative development platform, the world's \
largest Open Source development site.


------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
jEdit-CVS mailing list
jEdit-CVS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jedit-cvs


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic