jvanzyl 2004/04/07 19:45:59 Modified: . project.xml maven-plugins/maven-xdoc-plugin/src/main/java/org/apache/maven/xdoc/render DefaultXMLWriter.java DefaultXdocRenderer.java maven-project/xdocs index.xml Added: maven-plugins/maven-hello-plugin NOTES.txt maven-project/xdocs navigation.xml Removed: . COMPAT.txt GOALS.txt MAVEN-2.x.txt build-all maven-core/src/main/java/org/apache/maven MavenException.java maven-model maven.xml maven-project/src/main/java/org/apache/maven/artifact/factory DefaultMavenArtifactory.java MavenArtifactory.java Log: o cleanup Revision Changes Path 1.4 +2 -1 maven-components/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/maven-components/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 7 Apr 2004 20:27:44 -0000 1.3 +++ project.xml 8 Apr 2004 02:45:58 -0000 1.4 @@ -10,7 +10,8 @@ <gumpRepositoryId>jakarta</gumpRepositoryId> <description></description> <shortDescription>Java Project Management Tools</shortDescription> - + <url>http://maven.apache.org</url> + <organization> <name>Apache Software Foundation</name> <url>http://www.apache.org/</url> 1.1 maven-components/maven-plugins/maven-hello-plugin/NOTES.txt Index: NOTES.txt =================================================================== This is an example of a plugin that is akin to the clean plugin where dependencies don't have to be satisfied in order for the plugin to be able to execute. That's a bit of information that is missing that needs to be incorporated into the plugin descriptor ... 1.2 +3 -3 maven-components/maven-plugins/maven-xdoc-plugin/src/main/java/org/apache/maven/xdoc/render/DefaultXMLWriter.java Index: DefaultXMLWriter.java =================================================================== RCS file: /home/cvs/maven-components/maven-plugins/maven-xdoc-plugin/src/main/java/org/apache/maven/xdoc/render/DefaultXMLWriter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DefaultXMLWriter.java 7 Apr 2004 01:36:04 -0000 1.1 +++ DefaultXMLWriter.java 8 Apr 2004 02:45:58 -0000 1.2 @@ -42,9 +42,9 @@ // We might have to revisit this but for elements with embedded html we // don't want to escape the characters. - //text = text.replaceAll( "&", "&" ); - //text = text.replaceAll( "<", "<" ); - //text = text.replaceAll( ">", ">" ); + text = text.replaceAll( "&", "&" ); + text = text.replaceAll( "<", "<" ); + text = text.replaceAll( ">", ">" ); write( text ); } 1.6 +3 -1 maven-components/maven-plugins/maven-xdoc-plugin/src/main/java/org/apache/maven/xdoc/render/DefaultXdocRenderer.java Index: DefaultXdocRenderer.java =================================================================== RCS file: /home/cvs/maven-components/maven-plugins/maven-xdoc-plugin/src/main/java/org/apache/maven/xdoc/render/DefaultXdocRenderer.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- DefaultXdocRenderer.java 8 Apr 2004 00:50:33 -0000 1.5 +++ DefaultXdocRenderer.java 8 Apr 2004 02:45:58 -0000 1.6 @@ -78,6 +78,8 @@ elements.add( "th" ); + elements.add( "pre" ); + for ( Iterator i = renderers.keySet().iterator(); i.hasNext(); ) { elements.add( i.next() ); 1.2 +1 -1 maven-components/maven-project/xdocs/index.xml Index: index.xml =================================================================== RCS file: /home/cvs/maven-components/maven-project/xdocs/index.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- index.xml 19 Mar 2004 17:11:06 -0000 1.1 +++ index.xml 8 Apr 2004 02:45:58 -0000 1.2 @@ -21,7 +21,7 @@ because when you write it to disk again you've obviously lost the real values. The same goes with inherited values i.e. you do not want to write back to disk the dependencies inherited from a parent project as that's - implicit using the <extend> element. + implicit using the extend element. </p> <p> The project also carries any runtime notions like artifacts (Michal this is 1.1 maven-components/maven-project/xdocs/navigation.xml Index: navigation.xml =================================================================== <?xml version="1.0" encoding="ISO-8859-1"?> <project name="Maven"> <title>Maven</title> <body> <links> <item name="Plexus" href="http://plexus.codehaus.org"/> </links> </body> </project>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]