cvs commit: jakarta-bcel/xdocs index.xml navigation.xml news.xml projects.xml

[email protected]
Newsgroups gmane.comp.jakarta.bcel.devel
Message-ID <[email protected]>
mdahm       2003/04/25 01:25:40

  Modified:    .        build.xml project.xml
               xdocs    index.xml navigation.xml news.xml projects.xml
  Log:
  updates
  
  Revision  Changes    Path
  1.11      +4 -3      jakarta-bcel/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	18 Apr 2002 07:52:13 -0000	1.10
  +++ build.xml	25 Apr 2003 08:25:36 -0000	1.11
  @@ -249,8 +249,9 @@
       <mkdir dir="${distDir}"/>
   
       <!-- Copy README and LICENSE -->
  -    <copy todir="${distDir}" file="README"/>
  -    <copy todir="${distDir}" file="LICENSE"/>
  +    <copy todir="${distDir}" file="README.JustIce"/>
  +    <copy todir="${distDir}" file="TODO.JustIce"/>
  +    <copy todir="${distDir}" file="LICENSE.txt"/>
   
       <!-- Copy Jars -->
       <copy todir="${distDir}">
  
  
  
  1.8       +1 -1      jakarta-bcel/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/project.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- project.xml	25 Apr 2003 07:27:04 -0000	1.7
  +++ project.xml	25 Apr 2003 08:25:36 -0000	1.8
  @@ -50,7 +50,7 @@
       <developer>
         <name>Markus Dahm</name>
         <id>mdahm</id>
  -      <email>[email protected]</email>
  +      <email>[email protected]</email>
         <organization>it-frameworksolutions</organization>
       </developer>
   
  
  
  
  1.5       +8 -9      jakarta-bcel/xdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/index.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- index.xml	11 Apr 2002 14:09:04 -0000	1.4
  +++ index.xml	25 Apr 2003 08:25:37 -0000	1.5
  @@ -11,11 +11,12 @@
     
     <section name="BCEL">
     <p>
  -    The Byte Code Engineering Library (formerly known as JavaClass) is intended
  -    to give users a convenient possibility to analyze, create, and manipulate 
  -    (binary) Java class files (those ending with .class). Classes are represented 
  -    by objects which contain all the symbolic information of the given class:
  -    methods, fields and byte code instructions, in particular. 
  +    The Byte Code Engineering Library is intended to give users a
  +    convenient possibility to analyze, create, and manipulate (binary)
  +    Java class files (those ending with .class). Classes are
  +    represented by objects which contain all the symbolic information
  +    of the given class: methods, fields and byte code instructions, in
  +    particular.
     </p>
     
     <p>
  @@ -29,10 +30,8 @@
     
     <p>
       BCEL is already being used successfully in several projects such
  -    as compilers, optimizers, obsfuscators and analysis tools, the
  -    most popular probably being the <a
  -    href="http://xml.apache.org/xalan-j/">Xalan XSLT processor</a> at
  -    Apache.
  +    as compilers, optimizers, obsfuscators, code generators
  +    and analysis tools.
     </p>
     
     </section>
  
  
  
  1.3       +2 -6      jakarta-bcel/xdocs/navigation.xml
  
  Index: navigation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/navigation.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- navigation.xml	14 Mar 2003 10:37:16 -0000	1.2
  +++ navigation.xml	25 Apr 2003 08:25:37 -0000	1.3
  @@ -6,17 +6,13 @@
     <body>
       <menu name="BCEL">
         <item name="Front Page" href="/index.html"/>
  -      <item name="News &amp; Status" href="/news.html"/>
  +      <item name="News and Status" href="/news.html"/>
  +      <item name="Distributions" href="http://jakarta.apache.org/builds/jakarta-bcel/release/"/>
       </menu>
   
       <menu name="Documentation">
         <item name="Manual" href="/manual.html"/>
         <item name="FAQ" href="/faq.html"/>
  -    </menu>
  -
  -    <menu name="Distribution">
  -      <item name="Source Code" href="http://jakarta.apache.org/site/sourceindex.cgi"/>
  -      <item name="Binary Code" href="http://jakarta.apache.org/site/binindex.cgi"/>
       </menu>
   
       <menu name="Get Involved">
  
  
  
  1.2       +9 -1      jakarta-bcel/xdocs/news.xml
  
  Index: news.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/news.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- news.xml	10 Nov 2001 02:19:46 -0000	1.1
  +++ news.xml	25 Apr 2003 08:25:37 -0000	1.2
  @@ -8,7 +8,7 @@
   
     <body>
   
  -  <section name="News &amp; Status">
  +  <section name="News and Status">
   
     <h3>27 October 2001 - BCEL moves to Jakarta!</h3>
   
  @@ -16,6 +16,14 @@
       The Byte Code Engineering Library is now an official
       subproject of Jakarta. A special thanks goes to Markus Dahm
       for donating the code to the Jakarta Project.
  +  </p>
  +
  +  <h3>25 April 2003 - BCEL 5.1 released!</h3>
  +
  +  <p>
  +    The Byte Code Engineering Library version 5.1 has been released
  +    after a long period of testing. It mainly contains bug fixes
  +    and introduces the possibility to use custom repositories.
     </p>
   
     <hr noshade="" size="1"/>
  
  
  
  1.8       +1 -1      jakarta-bcel/xdocs/projects.xml
  
  Index: projects.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/projects.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- projects.xml	14 Mar 2003 10:37:16 -0000	1.7
  +++ projects.xml	25 Apr 2003 08:25:37 -0000	1.8
  @@ -13,7 +13,7 @@
   
     <ul>
       <li>
  -      Apache's <a href="http://xml.apache.org/xalan-j/">Xalan</a> XSLT Compiler
  +     <a href="http://xml.apache.org/xalan-j/">Xalan</a> XSLT Compiler
       </li>
       <li>
         <a HREF="http://objectscript.sourceforge.net/">ObjectScript</a>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.