Permalink
Please sign in to comment.
Showing
with
44 additions
and 68 deletions.
- +0 −7 .classpath
- +0 −33 .project
- +0 −3 .settings/com.google.appengine.eclipse.core.prefs
- +0 −4 .settings/com.google.gdt.eclipse.core.prefs
- +3 −2 README
- +23 −0 build.xml
- +1 −1 src/{uk/co/connorhd/kindlizer → com/mwaddell/readitkindle}/KindlizerServlet.java
- +1 −1 src/{uk/co/connorhd/kindlizer → com/mwaddell/readitkindle}/KindlizerUser.java
- +2 −2 src/{uk/co/connorhd/kindlizer → com/mwaddell/readitkindle}/PMF.java
- +2 −3 war/WEB-INF/appengine-web.xml
- BIN war/WEB-INF/classes/uk/co/connorhd/kindlizer/KindlizerServlet.class
- BIN war/WEB-INF/classes/uk/co/connorhd/kindlizer/KindlizerUser.class
- BIN war/WEB-INF/classes/uk/co/connorhd/kindlizer/PMF.class
- BIN war/WEB-INF/lib/servlet-api-2.5.jar
- +2 −2 war/articles.jsp
- +2 −2 war/bookmarks.jsp
- +2 −2 war/feeds.jsp
- +2 −2 war/help.jsp
- +4 −4 war/index.jsp
- BIN war/{kindlizer.prc → readitkindle.prc}
- BIN war/tokenized.prc
@@ -1,7 +0,0 @@ | ||
-<?xml version="1.0" encoding="UTF-8"?> | ||
-<classpath> | ||
- <classpathentry kind="src" path="src"/> | ||
- <classpathentry kind="con" path="com.google.appengine.eclipse.core.GAE_CONTAINER"/> | ||
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
- <classpathentry kind="output" path="war/WEB-INF/classes"/> | ||
-</classpath> |
@@ -1,33 +0,0 @@ | ||
-<?xml version="1.0" encoding="UTF-8"?> | ||
-<projectDescription> | ||
- <name>Kindlizer</name> | ||
- <comment></comment> | ||
- <projects> | ||
- </projects> | ||
- <buildSpec> | ||
- <buildCommand> | ||
- <name>org.eclipse.jdt.core.javabuilder</name> | ||
- <arguments> | ||
- </arguments> | ||
- </buildCommand> | ||
- <buildCommand> | ||
- <name>com.google.gdt.eclipse.core.webAppProjectValidator</name> | ||
- <arguments> | ||
- </arguments> | ||
- </buildCommand> | ||
- <buildCommand> | ||
- <name>com.google.appengine.eclipse.core.projectValidator</name> | ||
- <arguments> | ||
- </arguments> | ||
- </buildCommand> | ||
- <buildCommand> | ||
- <name>com.google.appengine.eclipse.core.enhancerbuilder</name> | ||
- <arguments> | ||
- </arguments> | ||
- </buildCommand> | ||
- </buildSpec> | ||
- <natures> | ||
- <nature>org.eclipse.jdt.core.javanature</nature> | ||
- <nature>com.google.appengine.eclipse.core.gaeNature</nature> | ||
- </natures> | ||
-</projectDescription> |
@@ -1,3 +0,0 @@ | ||
-#Sun Mar 06 17:37:43 GMT 2011 | ||
-eclipse.preferences.version=1 | ||
-filesCopiedToWebInfLib=appengine-api-1.0-sdk-1.4.0.jar|appengine-api-labs-1.4.0.jar|appengine-jsr107cache-1.4.0.jar|jsr107cache-1.1.jar|datanucleus-appengine-1.0.8.final.jar|datanucleus-core-1.1.5.jar|datanucleus-jpa-1.1.5.jar|geronimo-jpa_3.0_spec-1.1.1.jar|geronimo-jta_1.1_spec-1.1.1.jar|jdo2-api-2.3-eb.jar |
@@ -1,4 +0,0 @@ | ||
-#Sun Mar 06 17:37:42 GMT 2011 | ||
-eclipse.preferences.version=1 | ||
-warSrcDir=war | ||
-warSrcDirIsOutput=true |
@@ -1,3 +1,4 @@ | ||
-Eclipse project for Kindlizer (http://kindlizer.appspot.com/) | ||
+Eclipse project for ReadItKindle (http://readitkindle.appspot.com/) | ||
-An attempt to make a website for reading content via the Kindle 3 web browser. | ||
+A Kindle-optimized website for accessing ReadItLaterList.com (since Amazon | ||
+won't give me a dev key to create a native Kindle app) :-P |
@@ -0,0 +1,23 @@ | ||
+<?xml version="1.0" encoding="UTF-8"?> | ||
+<project default="build" name="ReadItKindle"> | ||
+ <path id="core.path"> | ||
+ <fileset dir="./war/WEB-INF/lib/"> | ||
+ <include name="**/*.jar" /> | ||
+ </fileset> | ||
+ <pathelement location="./src/" /> | ||
+ </path> | ||
+ | ||
+ <target name="clean"> | ||
+ <delete file="./readitkindle.war" /> | ||
+ <delete dir="./war/WEB-INF/classes/com/" /> | ||
+ </target> | ||
+ | ||
+ <target name="build"> | ||
+ <javac srcdir="./src/" destdir="./war/WEB-INF/classes/" | ||
+ classpathref="core.path" debug="${debug}"> | ||
+ <include name="**/*.java" /> | ||
+ <compilerarg value="-Xlint" /> | ||
+ </javac> | ||
+ <jar jarfile="./readitlater.war" basedir="./war/" /> | ||
+ </target> | ||
+</project> |
@@ -1,11 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> | ||
- <application>kindlizer</application> | ||
+ <application>readitkindle</application> | ||
<version>1</version> | ||
<!-- Configure java.util.logging --> | ||
<system-properties> | ||
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/> | ||
</system-properties> | ||
- | ||
-</appengine-web-app> | ||
+</appengine-web-app> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 comments on commit
6ff0b25