Remove all references to Jikes since it won't work on a 1.6 jdk
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 14 Jun 2010 09:36:55 +0000 (09:36 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 14 Jun 2010 09:36:55 +0000 (09:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@954384 13f79535-47bb-0310-9956-ffa450edef68

bin/setclasspath.sh
conf/web.xml
webapps/docs/changelog.xml
webapps/docs/jasper-howto.xml

index 4c559f2..abb4544 100755 (executable)
@@ -98,17 +98,6 @@ if [ -z "$JAVA_ENDORSED_DIRS" ]; then
   JAVA_ENDORSED_DIRS="$BASEDIR"/endorsed
 fi
 
-# OSX hack to CLASSPATH
-JIKESPATH=
-if [ `uname -s` = "Darwin" ]; then
-  OSXHACK="/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Classes"
-  if [ -d "$OSXHACK" ]; then
-    for i in "$OSXHACK"/*.jar; do
-      JIKESPATH="$JIKESPATH":"$i"
-    done
-  fi
-fi
-
 # Set standard commands for invoking Java.
 _RUNJAVA="$JRE_HOME"/bin/java
 if [ "$os400" != "true" ]; then
index c1bde17..4db42c3 100644 (file)
   <!--                                                                      -->
   <!--   xpoweredBy          Determines whether X-Powered-By response       -->
   <!--                       header is added by generated servlet  [false]  -->
-  <!--                                                                      -->
-  <!-- If you wish to use Jikes to compile JSP pages:                       -->
-  <!--   Please see the "Using Jikes" section of the Jasper-HowTo           -->
-  <!--   page in the Tomcat documentation.                                  -->
 
     <servlet>
         <servlet-name>jsp</servlet-name>
index 3caa990..02401bb 100644 (file)
@@ -33,6 +33,7 @@
   </properties>
 
 <body>
+<!--  Catalina, Coyote, Jasper, HA, Webapps, Extras, Other -->
 <section name="Tomcat 7.0.1 (markt)">
   <subsection name="Catalina">
     <changelog>
       </fix>
     </changelog>
   </subsection>
+  <subsection name="Jasper">
+    <changelog>
+      <update>
+        Remove references to Jikes since it does not support Java 6. (markt)
+      </update>
+    </changelog>
+  </subsection>
 </section>
 <section name="Tomcat 7.0.0 (markt)">
   <subsection name="Catalina">
index ce6f596..3f69547 100644 (file)
@@ -373,30 +373,6 @@ depending on the application.</li>
 </p>
 </section>
 
-<section name="Using Jikes">
-
-<p>If you wish to use
-<a href="http://oss.software.ibm.com/developerworks/opensource/jikes/">
-Jikes</a> to compile JSP pages:
-<ul>
-<li>From your <a href="ant.apache.org">Ant</a> installation, copy ant.jar
-and (if it's available: Ant 1.5 and later) ant-launcher.jar to 
-<code>$CATALINA_HOME/lib</code>.</li>
-<li>Download and install jikes. jikes must support the -encoding option.
-Execute <code>jikes -help</code> to verify that it was built with support
-for <code>-encoding</code>.</li>
-<li>Set the init parameter <code>compiler</code> to <code>jikes</code>.</li>
-<li>Define the property <code>-Dbuild.compiler.emacs=true</code> when starting
-Tomcat by adding it to your <code>CATALINA_OPTS</code> environment variable.
-This changes how jikes outputs error messages so that it is compatible with
-Jasper.</li>
-<li>If you get an error reporting that jikes can't use UTF8 encoding, try
-setting the init parameter <code>javaEncoding</code> to
-<code>ISO-8859-1</code>.</li>
-</ul>
-</p>
-
-</section>
 </body>
 
 </document>