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:43:31 UTC

svn commit: r396827 - in /xmlgraphics/batik/branches/svg11: ./ sources/org/apache/batik/apps/svgbrowser/ xdocs/ xdocs/images/ xdocs/skins/printer/stylesheets/ xdocs/skins/xml.apache.org/resources/ xdocs/skins/xml.apache.org/stylesheets/

Author: deweese
Date: Tue Apr 25 03:43:25 2006
New Revision: 396827

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

Modified:
    xmlgraphics/batik/branches/svg11/MAINTAIN
    xmlgraphics/batik/branches/svg11/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java
    xmlgraphics/batik/branches/svg11/xdocs/faq.xml
    xmlgraphics/batik/branches/svg11/xdocs/images/splash.xsl
    xmlgraphics/batik/branches/svg11/xdocs/index.xml
    xmlgraphics/batik/branches/svg11/xdocs/pr.xml
    xmlgraphics/batik/branches/svg11/xdocs/skins/printer/stylesheets/changes2document.xsl
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-hi.gif
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-lo.gif
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/logo.gif
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/script.js
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/changes2document.xsl
    xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/document2html.xsl
    xmlgraphics/batik/branches/svg11/xdocs/svgrasterizer.xml
    xmlgraphics/batik/branches/svg11/xdocs/whoAreWe.xml

Modified: xmlgraphics/batik/branches/svg11/MAINTAIN
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/MAINTAIN?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/MAINTAIN (original)
+++ xmlgraphics/batik/branches/svg11/MAINTAIN Tue Apr 25 03:43:25 2006
@@ -105,7 +105,7 @@
     This makes sure that the distribution is mirrored nicely around
     the world.
 
-    Start by logging into cvs.apache.org (e.g. 'ssh vhardy@cvs.apache.org').
+    Start by logging into people.apache.org (e.g. 'ssh vhardy@people.apache.org').
 
     First make sure file permissions are correct.  The
     new files should be owned by group 'xml' and be group writable.
@@ -141,19 +141,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]
 
@@ -161,4 +159,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/branches/svg11/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java (original)
+++ xmlgraphics/batik/branches/svg11/sources/org/apache/batik/apps/svgbrowser/LocalHistory.java Tue Apr 25 03:43:25 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);

Modified: xmlgraphics/batik/branches/svg11/xdocs/faq.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/faq.xml?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/faq.xml (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/faq.xml Tue Apr 25 03:43:25 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!--
 
-   Copyright 2000-2005  The Apache Software Foundation 
+   Copyright 2000-2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -251,9 +251,9 @@
     <question>How does Batik relate to other Apache projects?</question>
     <answer>
         <p>
-        Batik is used in <link href="http://xml.apache.org/cocoon/index.html">Cocoon</link> 
+        Batik is used in <link href="http://cocoon.apache.org/">Cocoon</link> 
         for server side rasterization of SVG images. In addition, the Batik is used in the 
-        <link href="http://xml.apache.org/fop/index.html">FOP</link> project to convert 
+        <link href="http://xmlgraphics.apache.org/fop/">FOP</link> project to convert 
         SVG images to PDF format.
         </p>
     </answer>
@@ -385,9 +385,8 @@
         these solutions:
         </p>
         <ul>
-            <li><link href="http://xml.apache.org/xalan-j/index.html">Xalan for XSLT</link></li>
-            <li><link href="http://xml.apache.org/xerces-j/index.html">Xerces</link> and
-                <link href="http://java.sun.com/xml/download.html">Crimson</link> for the DOM API</li>
+            <li><link href="http://xalan.apache.org/">Xalan for XSLT</link></li>
+            <li><link href="http://xerces.apache.org/">Xerces</link> for the DOM API</li>
             <li><link href="svggen.html">SVG Generator</link></li>
         </ul>
     </answer>
@@ -812,7 +811,7 @@
     What is happening?
     </question>
     <answer>
-    <p>The Batik <link href="http://xml.apache.org/batik/batikDemo.html">demo</link> uses Java Web Start. Java Web Start (under the Applications/Utilities
+    <p>The Batik <link href="http://xmlgraphics.apache.org/batik/batikDemo.html">demo</link> uses Java Web Start. Java Web Start (under the Applications/Utilities
     folder), lets you start a Java application from a web browser. You can see the debug
     traces by enabling the Java console for Java Web Start. If you do, you will see that
     there is a <code>java.lang.NoSuchMethodError</code> exception thrown.</p>

Modified: xmlgraphics/batik/branches/svg11/xdocs/images/splash.xsl
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/images/splash.xsl?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/images/splash.xsl (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/images/splash.xsl Tue Apr 25 03:43:25 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0" standalone="no"?>
 <!--
 
-   Copyright 2002,2004-2005  The Apache Software Foundation 
+   Copyright 2002,2004-2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -101,7 +101,7 @@
         <text x="246" y="95"><tspan font-size="95"
         >batik</tspan> <xsl:value-of select="$version" /></text>
         <text font-size="17" x="246" y="130"
-          >http://xml.apache.org/batik</text>
+          >http://xmlgraphics.apache.org/batik</text>
       </g>
 
       <xsl:if test="$revisionType != 'revisionType'">

Modified: xmlgraphics/batik/branches/svg11/xdocs/index.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/index.xml?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/index.xml (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/index.xml Tue Apr 25 03:43:25 2006
@@ -3,7 +3,7 @@
 
 <!--
 
-   Copyright 2000-2004  The Apache Software Foundation 
+   Copyright 2000-2004,2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -188,8 +188,8 @@
         <p>While it is hard to track projects and products which are using Batik, here are a few
         ones which are known:</p>
         <ul>
-        <li><link href="http://xml.apache.org/cocoon">The Apache Cocoon project</link> uses Batik to rasterize SVG images. </li>
-        <li><link href="http://xml.apache.org/fop">The Apache FOP project</link> uses Batik to handle SVG images. It uses the SVG rasterizer and extends the Batik transcoder architecture to offer SVG to PDF conversion.</li>
+        <li><link href="http://cocoon.apache.org/">The Apache Cocoon project</link> uses Batik to rasterize SVG images. </li>
+        <li><link href="http://xmlgraphics.apache.org/fop">The Apache FOP project</link> uses Batik to handle SVG images. It uses the SVG rasterizer and extends the Batik transcoder architecture to offer SVG to PDF conversion.</li>
         <li><link href="http://www.bitflash.com/products/brilliance.asp">BitFlash Brilliance</link> delivers a robust set of graphic-design and source-code editing tools for fast and flexible Mobile SVG development. It uses Batik to display SVG Images.</li>
         <li><link href="http://burma.free.fr">eDoc</link>, a page layout software, is using the Batik SVG generator to export pages to SVG</li>
         <li><link href="http://www.elixirtech.com/ElixirReport">ElixirTech's ElixirReport</link> uses Batik for charting and for its SVG component.</li>

Modified: xmlgraphics/batik/branches/svg11/xdocs/pr.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/pr.xml?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/pr.xml (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/pr.xml Tue Apr 25 03:43:25 2006
@@ -3,7 +3,7 @@
 
 <!--
 
-   Copyright 2000-2002,2004-2005  The Apache Software Foundation 
+   Copyright 2000-2002,2004-2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -146,7 +146,7 @@
 
 <p>Batik delivers a number of sample applications that leverage its core
 modules, such as an SVG browser. Screenshots of that browser can
-be seen at: <link href="http://xml.apache.org/batik/svgviewer.html">http://xml.apache.org/batik/svgviewer.html</link></p>
+be seen at: <link href="http://xmlgraphics.apache.org/batik/svgviewer.html">http://xmlgraphics.apache.org/batik/svgviewer.html</link></p>
  
 <p>In the near future, the Batik team aims to provide developers worldwide
 support for full dynamic behavior, including scripting and SMIL
@@ -192,7 +192,7 @@
 <link href="http://xmlgraphics.apache.org/mail.html">http://xmlgraphics.apache.org/mail.html</link></p>
  
 <p>For more information about the Batik project please see
-<link href="http://xml.apache.org/batik/">http://xml.apache.org/batik/</link></p>
+<link href="http://xmlgraphics.apache.org/batik/">http://xmlgraphics.apache.org/batik/</link></p>
  
 <p><em>ABOUT THE APACHE SOFTWARE FOUNDATION</em><br /><br />
  

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/printer/stylesheets/changes2document.xsl
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/printer/stylesheets/changes2document.xsl?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/skins/printer/stylesheets/changes2document.xsl (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/skins/printer/stylesheets/changes2document.xsl Tue Apr 25 03:43:25 2006
@@ -2,7 +2,7 @@
 
 <!--
 
-   Copyright 2000-2001 The Apache Software Foundation 
+   Copyright 2000-2001,2006 The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -58,7 +58,7 @@
 
    <xsl:if test="@fixes-bug">
     <xsl:text> Fixes </xsl:text>
-    <link href="http://xml.apache.org/bugs/show_bug.cgi?id={@fixes-bug}">
+    <link href="http://issues.apache.org/bugzilla/show_bug.cgi?id={@fixes-bug}">
      <xsl:text>bug </xsl:text><xsl:value-of select="@fixes-bug"/>
     </link>
     <xsl:text>.</xsl:text>
@@ -70,4 +70,4 @@
   <!-- remove -->
  </xsl:template>
 
-</xsl:stylesheet>
\ No newline at end of file
+</xsl:stylesheet>

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-hi.gif
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-hi.gif?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
Binary files - no diff available.

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-lo.gif
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/button-xml-lo.gif?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
Binary files - no diff available.

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/logo.gif
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/logo.gif?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
Binary files - no diff available.

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/script.js
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/script.js?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/script.js (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/resources/script.js Tue Apr 25 03:43:25 2006
@@ -2,11 +2,13 @@
 rolloverImagesOff=new Array();
 
 function rolloverOn(name) {
-  document.images[name].src=rolloverImagesOn[name].src;
+    if (rolloverImagesOn[name])
+      document.images[name].src=rolloverImagesOn[name].src;
 }
 
 function rolloverOff(name) {
-  document.images[name].src=rolloverImagesOff[name].src;
+    if (rolloverImagesOff[name])
+      document.images[name].src=rolloverImagesOff[name].src;
 }
 
 function rolloverLoad(name,on,off) {

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/changes2document.xsl
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/changes2document.xsl?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/changes2document.xsl (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/changes2document.xsl Tue Apr 25 03:43:25 2006
@@ -2,7 +2,7 @@
 
 <!--
 
-   Copyright 2000-2001 The Apache Software Foundation 
+   Copyright 2000-2001,2006 The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -59,7 +59,7 @@
 
    <xsl:if test="@fixes-bug">
     <xsl:text> Fixes </xsl:text>
-    <link href="http://xml.apache.org/bugs/show_bug.cgi?id={@fixes-bug}">
+    <link href="http://issues.apache.org/bugzilla/show_bug.cgi?id={@fixes-bug}">
      <xsl:text>bug </xsl:text><xsl:value-of select="@fixes-bug"/>
     </link>
     <xsl:text>.</xsl:text>

Modified: xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/document2html.xsl
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/document2html.xsl?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/document2html.xsl (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/skins/xml.apache.org/stylesheets/document2html.xsl Tue Apr 25 03:43:25 2006
@@ -63,12 +63,12 @@
             <td width="100%" height="20" valign="top" align="left" bgcolor="#0086b2" background="resources/bottom.gif">
               <img width="3" height="20" src="resources/bottom.gif" hspace="0" vspace="0" border="0" align="left"/>
             </td>
-            <td align="right" bgcolor="#0086b2" height="20" valign="top" width="288" background="resources/bottom.gif">
-              <table border="0" cellpadding="0" cellspacing="0" width="288">
+            <td align="right" bgcolor="#0086b2" height="20" valign="top" width="336" background="resources/bottom.gif">
+              <table border="0" cellpadding="0" cellspacing="0" width="336">
                 <tr>
-                  <td width="96" height="20" valign="top" align="left">
-                    <a href="http://xml.apache.org/" onMouseOver="rolloverOn('xml');" onMouseOut="rolloverOff('xml');" target="new">
-                      <img alt="http://xml.apache.org/" width="96" height="20" src="resources/button-xml-lo.gif"
+                  <td width="144" height="20" valign="top" align="left">
+                    <a href="http://xmlgraphics.apache.org/" onMouseOver="rolloverOn('xml');" onMouseOut="rolloverOff('xml');" target="new">
+                      <img alt="http://xmlgraphics.apache.org/" width="144" height="20" src="resources/button-xml-lo.gif"
                            name="xml" hspace="0" vspace="0" border="0"
                            onLoad="rolloverLoad('xml','resources/button-xml-hi.gif','resources/button-xml-lo.gif');"/>
                     </a>

Modified: xmlgraphics/batik/branches/svg11/xdocs/svgrasterizer.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/svgrasterizer.xml?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/svgrasterizer.xml (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/svgrasterizer.xml Tue Apr 25 03:43:25 2006
@@ -3,7 +3,7 @@
 
 <!--
 
-   Copyright 2000-2003  The Apache Software Foundation 
+   Copyright 2000-2003,2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -127,7 +127,7 @@
                     <li><code>java -jar batik-rasterizer.jar -d myDir -m image/jpeg samples/*.svg</code> will generate JPEG images
                     for all the SVG files found in the samples directory.</li>
                 </ul>
-                <p><strong>NOTE:</strong> to run MIME type <code>application/pdf</code> need to have (see <link href="http://xml.apache.org/fop/index.html">FOP</link>) installed.</p>
+                <p><strong>NOTE:</strong> to run MIME type <code>application/pdf</code> need to have (see <link href="http://xmlgraphics.apache.org/fop/">FOP</link>) installed.</p>
             </s2>
 
             <s2 title="Using the source distribution">
@@ -172,7 +172,7 @@
 
             <p>The task is able to produce four raster formats: PNG, JPEG, Tiff 
             and PDF. You need to have 
-            <link href="http://xml.apache.org/fop/">FOP</link> installed (versions after 
+            <link href="http://xmlgraphics.apache.org/fop/">FOP</link> installed (versions after 
             0.20.2 should work) in your <em>CLASSPATH</em> if you want to 
             produce result images in PDF format.</p>
 

Modified: xmlgraphics/batik/branches/svg11/xdocs/whoAreWe.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/batik/branches/svg11/xdocs/whoAreWe.xml?rev=396827&r1=396826&r2=396827&view=diff
==============================================================================
--- xmlgraphics/batik/branches/svg11/xdocs/whoAreWe.xml (original)
+++ xmlgraphics/batik/branches/svg11/xdocs/whoAreWe.xml Tue Apr 25 03:43:25 2006
@@ -3,7 +3,7 @@
 
 <!--
 
-   Copyright 2000-2003,2005  The Apache Software Foundation 
+   Copyright 2000-2003,2005-2006  The Apache Software Foundation 
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
@@ -212,7 +212,7 @@
               mailing lists.</li>
           <li><link href="mailto:Christophe.Held@sophia.inria.fr">Christophe Held</link> - Contributed a math formula in SVG 
               generated from MathML. </li>
-          <li><link href="mailto:keiron@aftexsw.com">Keiron Liddle</link> - A <link href="http://xml.apache.org/fop">FOP</link>
+          <li><link href="mailto:keiron@aftexsw.com">Keiron Liddle</link> - A <link href="http://xmlgraphics.apache.org/fop/">FOP</link>
               member who is working on an SVG to PDF transcoder that will be part of FOP but that will work in 
               the Batik infrastructure</li>
           <li><link href="mailto:john.morrison@uk.experian.com">John Morrison</link> - Contributed a set of XSL stylesheets