You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-commits@xmlgraphics.apache.org by de...@apache.org on 2006/04/25 12:50:55 UTC

svn commit: r396831 - in /xmlgraphics/batik/trunk: MAINTAIN sources/org/apache/batik/apps/svgbrowser/LocalHistory.java

Author: deweese
Date: Tue Apr 25 03:50:52 2006
New Revision: 396831

URL: http://svn.apache.org/viewcvs?rev=396831&view=rev
Log:
'Go' menu now sets full URI as 'tool tip'

Modified:
    xmlgraphics/batik/trunk/MAINTAIN
    xmlgraphics/batik/trunk/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java

Modified: xmlgraphics/batik/trunk/MAINTAIN
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/trunk/MAINTAIN?rev=396831&r1=396830&r2=396831&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/MAINTAIN (original)
+++ xmlgraphics/batik/trunk/MAINTAIN Tue Apr 25 03:50:52 2006
@@ -142,19 +142,17 @@
 
 For creating the web site, the following steps must be done:
 
-[Note: due to JVM font-rendering problems, this is best done on a windows machine]
+[Note: due to JVM font-rendering problems, this is best done on a
+       windows machine]
 
- 1) make sure you checked out the module "xml-site/targets/batik" in
-    the same directory as your project module
+ 1) Make sure you checked out the SVN directory
+     https://svn.apache.org/repos/asf/xmlgraphics/site/deploy/batik
+    as "xml-site/targets/batik" in the same directory as your project module
  2) run the build script with target "site"
- 3) commit the xml-site/targets/[project] directory
+ 3) commit the site/deploy/batik directory
  4) connect to xml.apache.org with your account
- 5) execute "cd /www/xml.apache.org/[project]"
- 6) execute "cvs update"
- 7) zip the Batik javadoc of the latest stable Batik release
- 8) ftp the Batik javadoc to xml.apache.org/batik 
- 9) upzip the Batik java so that the javadoc is available
-    at xml.apache.org/batik/javadoc/index.html
+ 5) execute "cd /www/xmlgraphics.apache.org/batik"
+ 6) execute "svn update"
  
 [NOTE: you must have commit access on xml-site to be able to do this]
 
@@ -162,4 +160,4 @@
 --------------
 
 The nightly builds are current performed by a crontab entry in
-Thomas DeWeese's cvs.apache.org account: /home/deweese/bin/nightly.csh
+Thomas DeWeese's people.apache.org account: /home/deweese/bin/nightly.csh

Modified: xmlgraphics/batik/trunk/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/trunk/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java?rev=396831&r1=396830&r2=396831&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java (original)
+++ xmlgraphics/batik/trunk/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java Tue Apr 25 03:50:52 2006
@@ -197,14 +197,14 @@
         int i = uri.lastIndexOf('/');
         if (i == -1) {
             i = uri.lastIndexOf('\\' );
-            if (i != -1) {
-                text = uri.substring(i + 1);
-            }
-        } else {
+        }
+         
+        if (i != -1) {
             text = uri.substring(i + 1);
         }
 
         JMenuItem mi = new JRadioButtonMenuItem(text);
+        mi.setToolTipText(uri);
         mi.setActionCommand(uri);
         mi.addActionListener(actionListener);
         group.add(mi);