Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 11cb9ac

Browse files
author
Peter Mount
committed
Some more additions to contrib for JDBC
1 parent d09fc12 commit 11cb9ac

File tree

11 files changed

+4003
-5
lines changed

11 files changed

+4003
-5
lines changed

contrib/retep/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Tue Jan 23 10:19:00 GMT 2001 peter@retep.org.uk
2+
- Finished the XML Export classes
3+
- First of the test data suite now in CVS.
4+

contrib/retep/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
build file to build the donated retep tools packages
44
5-
$Id: build.xml,v 1.1 2001/01/18 14:50:14 peter Exp $
5+
$Id: build.xml,v 1.2 2001/01/23 10:22:18 peter Exp $
66
77
-->
88

@@ -44,7 +44,7 @@
4444
<!-- Builds the various jar files -->
4545
<target name="jar" depends="xml">
4646
<jar jarfile="${jars}/retepTools.jar" basedir="${dest}">
47-
<include name="${package}/xml/parser/**" if="xml" />
47+
<include name="${package}/xml/**" if="xml" />
4848
</jar>
4949
</target>
5050

contrib/retep/data/cds.dtd

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!ELEMENT album (track*)+>
2+
<!ATTLIST album
3+
title CDATA #IMPLIED
4+
aid CDATA #IMPLIED
5+
>
6+
<!ELEMENT catalogue (group)>
7+
<!ELEMENT group (album*)>
8+
<!ATTLIST group
9+
name CDATA #IMPLIED
10+
>
11+
<!ELEMENT track (#PCDATA)>
12+
<!ATTLIST track
13+
tid CDATA #IMPLIED
14+
id CDATA #IMPLIED
15+
>
16+

contrib/retep/data/cds.xml

Lines changed: 2691 additions & 0 deletions
Large diffs are not rendered by default.

contrib/retep/retep.jpx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<property category="sys" name="CompanyLabel" value="Company:" />
1616
<property category="sys" name="Copyright" value="Copyright (c) 2001" />
1717
<property category="sys" name="CopyrightLabel" value="Copyright:" />
18-
<property category="sys" name="DefaultPackage" value="org.postgresql.core" />
18+
<property category="sys" name="DefaultPackage" value="uk.org.retep.xml.jdbc" />
1919
<property category="sys" name="Description" value="" />
2020
<property category="sys" name="DescriptionLabel" value="Description:" />
2121
<property category="sys" name="DocPath" value="doc" />
@@ -25,7 +25,7 @@
2525
<property category="sys" name="InstanceVisibility" value="0" />
2626
<property category="sys" name="JDK" value="java 1.3.0-C" />
2727
<property category="sys" name="LastTag" value="0" />
28-
<property category="sys" name="Libraries" value="JAXP" />
28+
<property category="sys" name="Libraries" value="JAXP;Oracle JDBC" />
2929
<property category="sys" name="MakeStable" value="0" />
3030
<property category="sys" name="OutPath" value="build" />
3131
<property category="sys" name="SourcePath" value="." />
@@ -34,6 +34,8 @@
3434
<property category="sys" name="Version" value="1.0" />
3535
<property category="sys" name="VersionLabel" value="@version" />
3636
<property category="sys" name="WorkingDirectory" value="." />
37+
<node type="Folder" name="core" />
38+
<node type="Package" name="uk.org.retep.xml.core" />
3739
<node type="Package" name="uk.org.retep.xml.jdbc" />
3840
<node type="Package" name="uk.org.retep.xml.parser" />
3941
<file path="build.xml" />

0 commit comments

Comments
 (0)