Skip to content

Commit

Permalink
import from bazaar at version 265
Browse files Browse the repository at this point in the history
  • Loading branch information
dpierron@gmail.com committed Aug 25, 2011
0 parents commit c22dd74
Show file tree
Hide file tree
Showing 529 changed files with 84,886 additions and 0 deletions.
50 changes: 50 additions & 0 deletions Calibre2Opds - template.app/Contents/Info.plist
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9">
<dict>
<key>CFBundleName</key>
<string>calibre2opds</string>
<key>CFBundleIdentifier</key>
<string>Gui</string>
<key>CFBundleVersion</key>
<string>2.3.0</string>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleExecutable</key>
<string>JavaApplicationStub</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleGetInfoString</key>
<string>calibre2opds 2.3.0</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>icon.icns</string>
<key>Java</key>
<dict>
<key>MainClass</key>
<string>Gui</string>
<key>JVMVersion</key>
<string>1.5+</string>
<key>ClassPath</key>
<array>
<string>$JAVAROOT/OpdsOutput-2.3-SNAPSHOT.jar</string>
<string>$JAVAROOT/DataModel-2.3-SNAPSHOT.jar</string>
<string>$JAVAROOT/jdom-1.1.jar</string>
<string>$JAVAROOT/junit-4.7.jar</string>
<string>$JAVAROOT/log4j-1.2.12.jar</string>
<string>$JAVAROOT/sqlite-jdbc-3.6.17.1.jar</string>
<string>$JAVAROOT/Tools-2.2-SNAPSHOT.jar</string>
</array>
<key>Properties</key>
<dict>
<key>apple.laf.useScreenMenuBar</key>
<string>true</string>
</dict>
</dict>
</dict>
</plist>
Binary file not shown.
1 change: 1 addition & 0 deletions Calibre2Opds - template.app/Contents/PkgInfo
@@ -0,0 +1 @@
APPL????
Binary file not shown.
Empty file.
24 changes: 24 additions & 0 deletions DataModel/DataModel.iml
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="DBNavigator.Module.ConnectionManager">
<connections />
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: log4j:log4j:1.2.12" level="project" />
<orderEntry type="library" name="Maven: org.xerial:sqlite-jdbc:3.6.17.1" level="project" />
<orderEntry type="module" module-name="Tools" />
<orderEntry type="library" name="Maven: junit:junit:4.7" level="project" />
</component>
</module>

Binary file added DataModel/metadata.db
Binary file not shown.
32 changes: 32 additions & 0 deletions DataModel/pom.xml
@@ -0,0 +1,32 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>calibre2opds</artifactId>
<groupId>com.gmail.dpierron.calibre</groupId>
<version>2.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.dpierron.calibre</groupId>
<artifactId>DataModel</artifactId>
<name>Datamodel</name>
<version>2.5-SNAPSHOT</version>
<description>The datamodel of the Calibre SQLite database</description>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.6.17.1</version>
</dependency>
<dependency>
<groupId>com.gmail.dpierron</groupId>
<artifactId>Tools</artifactId>
<version>2.5-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

0 comments on commit c22dd74

Please sign in to comment.