Changeset 12729 for trunk/abcl/examples/google-app-engine
- Timestamp:
- 05/24/10 16:38:08 (14 years ago)
- Location:
- trunk/abcl/examples/google-app-engine
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/examples/google-app-engine/build.xml
r12231 r12729 1 <project> 2 <property name="sdk.dir" location="../appengine-java-sdk" /> 1 <project default="compile"> 2 3 <property name="sdk.dir" 4 location="../../../appengine-java-sdk" /> 3 5 <import file="${sdk.dir}/config/user/ant-macros.xml" /> 6 4 7 <path id="project.classpath"> 5 8 <pathelement path="war/WEB-INF/classes" /> … … 11 14 </fileset> 12 15 </path> 16 13 17 <target name="copyjars" 14 18 description="Copies the App Engine and ABCL JARs to the WAR."> … … 19 23 <include name="**/*.jar" /> 20 24 </fileset> 21 <fileset dir="../ abcl">25 <fileset dir="../.."> 22 26 <include name="dist/*.jar" /> 23 27 </fileset> … … 30 34 </copy> 31 35 </target> 32 <target name="compile" depends="copyjars" 36 37 <target name="compile" depends="copyjars,abcl.jar" 33 38 description="Compiles Java source and copies other source files to the WAR."> 34 39 <mkdir dir="war/WEB-INF/classes" /> … … 42 47 destdir="war/WEB-INF/classes" 43 48 classpathref="project.classpath" 49 includeantruntime="false" 44 50 debug="on" /> 45 51 </target> 52 53 <target name="abcl.jar"> 54 <ant dir="../.." target="abcl.jar"/> 55 </target> 56 46 57 <target name="clean" description="Cleans all the jars and fasls."> 47 58 <delete> -
trunk/abcl/examples/google-app-engine/src/abcl_ae/AbclInit.java
r12277 r12729 9 9 import org.armedbear.lisp.Symbol; 10 10 import org.armedbear.lisp.Pathname; 11 import org.armedbear.lisp.ConditionThrowable;12 11 13 12 public final class AbclInit { -
trunk/abcl/examples/google-app-engine/src/abcl_ae/HelloWorldServlet.java
r12277 r12729 10 10 import org.armedbear.lisp.Symbol; 11 11 import org.armedbear.lisp.SpecialBinding; 12 import org.armedbear.lisp.SpecialBindingsMark; 12 13 import org.armedbear.lisp.Load; 13 14 import org.armedbear.lisp.Stream; … … 31 32 currentThread.bindSpecial( 32 33 Symbol.STANDARD_OUTPUT, 33 new Stream(resp.getOutputStream(), Symbol.CHARACTER, false)); 34 new Stream(Symbol.SYSTEM_STREAM, resp.getOutputStream(), 35 Symbol.CHARACTER, false)); 34 36 35 37 try {
Note: See TracChangeset
for help on using the changeset viewer.