Author: dirkv
Date: Mon Jan 31 13:03:02 2005
New Revision: 149300

URL: http://svn.apache.org/viewcvs?view=rev&rev=149300
Log:
change http://nagoya.apache.org/bugzilla
to http://issues.apache.org/bugzilla

Modified:
    jakarta/commons/proper/codec/trunk/project.xml
    
jakarta/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/SoundexTest.java
    
jakarta/commons/proper/jelly/trunk/jelly-tags/soap/src/test/org/apache/commons/jelly/tags/soap/example.jelly
    jakarta/commons/proper/latka/trunk/project.xml
    jakarta/commons/proper/math/trunk/project.properties
    
jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/distribution/TDistributionTest.java
    jakarta/commons/proper/math/trunk/xdocs/developers.xml
    jakarta/commons/proper/transaction/trunk/xdocs/style/basic.xsl

Modified: jakarta/commons/proper/codec/trunk/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/codec/trunk/project.xml?view=diff&r1=149299&r2=149300
==============================================================================
--- jakarta/commons/proper/codec/trunk/project.xml (original)
+++ jakarta/commons/proper/codec/trunk/project.xml Mon Jan 31 13:03:02 2005
@@ -185,7 +185,7 @@
             <url>http://www.junit.org</url>
         </dependency>
     </dependencies>
-    
<issueTrackingUrl>http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Codec&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time</issueTrackingUrl>
+    
<issueTrackingUrl>http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Codec&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time</issueTrackingUrl>
     <build>
         <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>
         <sourceDirectory>src/java</sourceDirectory>

Modified: 
jakarta/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/SoundexTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/SoundexTest.java?view=diff&r1=149299&r2=149300
==============================================================================
--- 
jakarta/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/SoundexTest.java
 (original)
+++ 
jakarta/commons/proper/codec/trunk/src/test/org/apache/commons/codec/language/SoundexTest.java
 Mon Jan 31 13:03:02 2005
@@ -1,18 +1,18 @@
 /*
  * Copyright 2001-2004 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.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 
 // (FYI: Formatted and sorted with Eclipse)
 package org.apache.commons.codec.language;
@@ -26,8 +26,8 @@
 
 /**
  * Tests [EMAIL PROTECTED] Soundex}
- * 
- * @version $Id: SoundexTest.java,v 1.20 2004/10/08 22:56:22 ggregory Exp $
+ *
+ * @version $Id$
  * @author Apache Software Foundation
  */
 public class SoundexTest extends StringEncoderAbstractTest {
@@ -47,7 +47,7 @@
             assertEquals(expectedEncoding, 
this.getEncoder().encode(strings[i]));
         }
     }
-    
+
     /**
         * @return Returns the _encoder.
         */
@@ -139,7 +139,7 @@
         // Examples from 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_setu-sus_3o6w.asp
         assertEquals(4, this.getEncoder().difference("Smith", "Smythe"));
         assertEquals(4, this.getEncoder().difference("Smithers", "Smythers"));
-        assertEquals(2, this.getEncoder().difference("Anothers", "Brothers")); 
       
+        assertEquals(2, this.getEncoder().difference("Anothers", "Brothers"));
     }
 
     public void testEncodeBasic() {
@@ -257,7 +257,7 @@
     /**
         * Consonants from the same code group separated by W or H are treated 
as
         * one.
-        * 
+        *
         * Test data from http://www.myatt.demon.co.uk/sxalg.htm
         */
     public void testHWRuleEx2() {
@@ -340,8 +340,8 @@
 
     /**
      * Fancy characters are not mapped by the default US mapping.
-     * 
-     * http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080
+     *
+     * http://issues.apache.org/bugzilla/show_bug.cgi?id=29080
      */
     public void testUsMappingOWithDiaeresis() {
         assertEquals("O000", this.getEncoder().encode("o"));
@@ -355,8 +355,8 @@
 
     /**
      * Fancy characters are not mapped by the default US mapping.
-     * 
-     * http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29080
+     *
+     * http://issues.apache.org/bugzilla/show_bug.cgi?id=29080
      */
     public void testUsMappingEWithAcute() {
         assertEquals("E000", this.getEncoder().encode("e"));

Modified: 
jakarta/commons/proper/jelly/trunk/jelly-tags/soap/src/test/org/apache/commons/jelly/tags/soap/example.jelly
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/jelly/trunk/jelly-tags/soap/src/test/org/apache/commons/jelly/tags/soap/example.jelly?view=diff&r1=149299&r2=149300
==============================================================================
Binary files - no diff available.

Modified: jakarta/commons/proper/latka/trunk/project.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/latka/trunk/project.xml?view=diff&r1=149299&r2=149300
==============================================================================
--- jakarta/commons/proper/latka/trunk/project.xml (original)
+++ jakarta/commons/proper/latka/trunk/project.xml Mon Jan 31 13:03:02 2005
@@ -239,7 +239,7 @@
     </dependency>
   </dependencies>
 
-  
<issueTrackingUrl><![CDATA[http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;component=Latka]]></issueTrackingUrl>
+  
<issueTrackingUrl><![CDATA[http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;component=Latka]]></issueTrackingUrl>
 
   <build>
     <nagEmailAddress>commons-dev@jakarta.apache.org</nagEmailAddress>

Modified: jakarta/commons/proper/math/trunk/project.properties
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/project.properties?view=diff&r1=149299&r2=149300
==============================================================================
--- jakarta/commons/proper/math/trunk/project.properties (original)
+++ jakarta/commons/proper/math/trunk/project.properties Mon Jan 31 13:03:02 
2005
@@ -41,5 +41,5 @@
                       http://jakarta.apache.org/commons/discovery/api/,\
                       http://jakarta.apache.org/commons/logging/api/
 
-maven.changes.issue.template=http://nagoya.apache.org/bugzilla/show_bug.cgi?id=%ISSUE%
+maven.changes.issue.template=http://issues.apache.org/bugzilla/show_bug.cgi?id=%ISSUE%
 

Modified: 
jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/distribution/TDistributionTest.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/distribution/TDistributionTest.java?view=diff&r1=149299&r2=149300
==============================================================================
--- 
jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/distribution/TDistributionTest.java
 (original)
+++ 
jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/distribution/TDistributionTest.java
 Mon Jan 31 13:03:02 2005
@@ -1,12 +1,12 @@
 /*
  * Copyright 2003-2004 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.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -19,8 +19,8 @@
  * Test cases for TDistribution.
  * Extends ContinuousDistributionAbstractTest.  See class javadoc for
  * ContinuousDistributionAbstractTest for details.
- * 
- * @version $Revision: 1.15 $ $Date: 2004/07/24 21:41:37 $
+ *
+ * @version $Revision: 1.15 $ $Date$
  */
 public class TDistributionTest extends ContinuousDistributionAbstractTest {
 
@@ -33,12 +33,12 @@
     }
 
 //-------------- Implementations for abstract methods -----------------------
-    
+
     /** Creates the default continuous distribution instance to use in tests. 
*/
     public ContinuousDistribution makeDistribution() {
         return DistributionFactory.newInstance().createTDistribution(5.0);
-    }   
-    
+    }
+
     /** Creates the default cumulative probability distribution test input 
values */
     public double[] makeCumulativeTestPoints() {
         // quantiles computed using R version 1.8.1 (linux version)
@@ -46,13 +46,13 @@
             -1.475884, 5.89343, 3.36493, 2.570582,
             2.015048, 1.475884};
     }
-    
+
     /** Creates the default cumulative probability density test expected 
values */
     public double[] makeCumulativeTestValues() {
         return new double[] {0.001d, 0.01d, 0.025d, 0.05d, 0.1d, 0.999d,
-                0.990d, 0.975d, 0.950d, 0.900d}; 
+                0.990d, 0.975d, 0.950d, 0.900d};
     }
-    
+
     // --------------------- Override tolerance  --------------
     protected void setup() throws Exception {
         super.setUp();
@@ -61,7 +61,7 @@
 
     //---------------------------- Additional test cases 
-------------------------
     /**
-     * @see <a href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27243";>
+     * @see <a href="http://issues.apache.org/bugzilla/show_bug.cgi?id=27243";>
      *      Bug report that prompted this unit test.</a>
      */
     public void testCumulativeProbabilityAgaintStackOverflow() throws 
Exception {
@@ -70,7 +70,7 @@
        est = td.cumulativeProbability(.1);
        est = td.cumulativeProbability(.01);
     }
-    
+
     public void testSmallDf() throws Exception {
         
setDistribution(DistributionFactory.newInstance().createTDistribution(1d));
         setTolerance(1E-4);
@@ -82,14 +82,14 @@
         verifyCumulativeProbabilities();
         verifyInverseCumulativeProbabilities();
     }
-    
+
     public void testInverseCumulativeProbabilityExtremes() throws Exception {
         setInverseCumulativeTestPoints(new double[] {0, 1});
         setInverseCumulativeTestValues(
                 new double[] {Double.NEGATIVE_INFINITY, 
Double.POSITIVE_INFINITY});
         verifyInverseCumulativeProbabilities();
     }
-    
+
     public void testDfAccessors() {
         TDistribution distribution = (TDistribution) getDistribution();
         assertEquals(5d, distribution.getDegreesOfFreedom(), Double.MIN_VALUE);
@@ -101,6 +101,6 @@
         } catch (IllegalArgumentException ex) {
             // expected
         }
-    } 
-    
+    }
+
 }

Modified: jakarta/commons/proper/math/trunk/xdocs/developers.xml
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/xdocs/developers.xml?view=diff&r1=149299&r2=149300
==============================================================================
--- jakarta/commons/proper/math/trunk/xdocs/developers.xml (original)
+++ jakarta/commons/proper/math/trunk/xdocs/developers.xml Mon Jan 31 13:03:02 
2005
@@ -16,7 +16,7 @@
   -->
   
 <?xml-stylesheet type="text/xsl" href="xdoc.xsl"?>
-<!-- $Revision: 1.15 $ $Date: 2004/11/08 00:56:06 $ -->
+<!-- $Revision: 1.15 $ $Date$ -->
 <document>
  <properties>
   <title>Developers Guide</title>
@@ -62,20 +62,20 @@
                    Make any proposals here where the group can comment on them.
                </li>
                <li>
-                       <a 
href="http://nagoya.apache.org/bugzilla/createaccount.cgi";>
+                       <a 
href="http://issues.apache.org/bugzilla/createaccount.cgi";>
                        Setup an account on Bugzilla</a> and use it to submit 
patches and
                    identify bugs. Read the 
-                       <a 
href="http://nagoya.apache.org/bugzilla/bugwritinghelp.html";>
+                       <a 
href="http://issues.apache.org/bugzilla/bugwritinghelp.html";>
                        directions</a> for submitting bugs and search the 
database to
                    determine if an issue exists or has already been dealt 
with.                
                        <p>
                                Submitting Issues:      
                        </p>
                        <ul>
-                               <li><a 
href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&amp;product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=Other&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=&amp;cc=&amp;bug_file_loc=&amp;short_desc=%5Bpatch%5D+%22Your+subject+heading+here%22&amp;comment=Please+provide+details+here.+Its+best+to+submit+patches+that+alter+existing+file%0D%0Acontent+in+%22unified+cvs+diff%22+format.+%0D%0A%0D%0ASubmissions+that+provide+new+files+can+be+supplied+as+direct+file+attachments+or%0D%0Aarchives+in+zip+or+tar.gz+format.+please+be+kind+enough+to+identify+the+format%0D%0Aof+the+attached+archive+as+bugzill+tends+to+strip+these+characterstics+by%0D%0Aremoving+the+files+extension.&amp;maketemplate=Remember+values+as+bookmarkable+template&amp;form_name=enter_bug";>
+                               <li><a 
href="http://issues.apache.org/bugzilla/enter_bug.cgi?reporter=&amp;product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=Other&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=&amp;cc=&amp;bug_file_loc=&amp;short_desc=%5Bpatch%5D+%22Your+subject+heading+here%22&amp;comment=Please+provide+details+here.+Its+best+to+submit+patches+that+alter+existing+file%0D%0Acontent+in+%22unified+cvs+diff%22+format.+%0D%0A%0D%0ASubmissions+that+provide+new+files+can+be+supplied+as+direct+file+attachments+or%0D%0Aarchives+in+zip+or+tar.gz+format.+please+be+kind+enough+to+identify+the+format%0D%0Aof+the+attached+archive+as+bugzill+tends+to+strip+these+characterstics+by%0D%0Aremoving+the+files+extension.&amp;maketemplate=Remember+values+as+bookmarkable+template&amp;form_name=enter_bug";>
                                Bookmarkable Template for submitting patches.
                                </a></li>
-                               <li><a 
href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?reporter=&amp;product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=Other&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=&amp;cc=&amp;bug_file_loc=http%3A%2F%2F&amp;short_desc=%5Bbug+report%5D+%22Your+subject+heading+here%22&amp;comment=Please+review+the+bug+writing+guidelines+and+supply+as+much+detail+as+possible%0D%0Ato+allow+us+to+diagnose+and+correct+the+existing+issue.+Please+search+the+bug%0D%0Adatabase+to+determine+if+the+bug+has+possibly+been+addressed+in+the+past.&amp;maketemplate=Remember+values+as+bookmarkable+template&amp;form_name=enter_bug";>
+                               <li><a 
href="http://issues.apache.org/bugzilla/enter_bug.cgi?reporter=&amp;product=Commons&amp;version=unspecified&amp;component=Math&amp;rep_platform=All&amp;op_sys=All&amp;priority=Other&amp;bug_severity=normal&amp;bug_status=NEW&amp;assigned_to=&amp;cc=&amp;bug_file_loc=http%3A%2F%2F&amp;short_desc=%5Bbug+report%5D+%22Your+subject+heading+here%22&amp;comment=Please+review+the+bug+writing+guidelines+and+supply+as+much+detail+as+possible%0D%0Ato+allow+us+to+diagnose+and+correct+the+existing+issue.+Please+search+the+bug%0D%0Adatabase+to+determine+if+the+bug+has+possibly+been+addressed+in+the+past.&amp;maketemplate=Remember+values+as+bookmarkable+template&amp;form_name=enter_bug";>
                                Bookmarkable Template for submitting bugs.
                                </a></li>
                        </ul>
@@ -84,10 +84,10 @@
                                Querying the Database:  
                        </p>
                        <ul>
-                               <li><a 
href="http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Math&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time";>
+                               <li><a 
href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Math&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time";>
                                        New and Existing Issues.
                                </a></li>
-                               <li><a 
href="http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Math&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time";>
+                               <li><a 
href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Commons&amp;component=Math&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;newqueryname=&amp;order=Reuse+same+sort+as+last+time";>
                                        Resolved and Closed Issues.
                                </a></li>
                        </ul>

Modified: jakarta/commons/proper/transaction/trunk/xdocs/style/basic.xsl
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/transaction/trunk/xdocs/style/basic.xsl?view=diff&r1=149299&r2=149300
==============================================================================
--- jakarta/commons/proper/transaction/trunk/xdocs/style/basic.xsl (original)
+++ jakarta/commons/proper/transaction/trunk/xdocs/style/basic.xsl Mon Jan 31 
13:03:02 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 <!-- Temporary Stylesheet for Catalina Developer Documentation -->
-<!-- $Id: basic.xsl,v 1.2 2004/12/19 03:11:06 ozeigermann Exp $ -->
+<!-- $Id$ -->
 
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
   version="1.0">
@@ -317,7 +317,7 @@
       <td>
     <xsl:if test="@bugzilla-id"> [
     <xsl:element name="a">
-    <xsl:attribute 
name="href">http://nagoya.apache.org/bugzilla/show_bug.cgi?id=<xsl:value-of 
select="@bugzilla-id"/></xsl:attribute>
+    <xsl:attribute 
name="href">http://issues.apache.org/bugzilla/show_bug.cgi?id=<xsl:value-of 
select="@bugzilla-id"/></xsl:attribute>
     bug #<xsl:value-of select="@bugzilla-id"/>
     </xsl:element>
     ]</xsl:if>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to