Modified: db/jdo/site/docs/issue-tracking.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/issue-tracking.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/issue-tracking.html (original) +++ db/jdo/site/docs/issue-tracking.html Sat Jan 12 12:10:57 2008 @@ -4,5 +4,5 @@ @import url("./style/maven-theme.css");

\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/issuetracking.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/issuetracking.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/issuetracking.html (original) +++ db/jdo/site/docs/issuetracking.html Sat Jan 12 12:10:57 2008 @@ -22,5 +22,5 @@ Release Notes for released versions

\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/javadoc.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/javadoc.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/javadoc.html (original) +++ db/jdo/site/docs/javadoc.html Sat Jan 12 12:10:57 2008 @@ -10,5 +10,5 @@

JDO 1.1 javadoc

JDO 1.1 is the Apache JDO implementation of JSR-12.

Browse JDO 1.1 javadoc online

Download JDO 1.1 javadoc


\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdo_dtd.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdo_dtd.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdo_dtd.html (original) +++ db/jdo/site/docs/jdo_dtd.html Sat Jan 12 12:10:57 2008 @@ -32,5 +32,5 @@ Your MetaData should match either the DTD or the XSD specification.


\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdo_v_jpa.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdo_v_jpa.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdo_v_jpa.html (original) +++ db/jdo/site/docs/jdo_v_jpa.html Sat Jan 12 12:10:57 2008 @@ -11,8 +11,8 @@ features of JPA1. Below we show some of the differences of these 2 standards to give you assistance in selecting what you need. Highlighted in bold are the notable differences where one specification provides something not available in the other. -

FeatureJDO2JPA1
JDK Requirement1.3+1.5+
UsageJ2EE, J2SEJ2EE, J2SE
Persistence specification mechanismMetaData, Annotations [1]MetaData, Annotations
Datastore supportedAnyRDBMS only
Restrictions on persisted classesno-arg constructor (could be added by compiler/enhancer)No final classes. No final methods. Non-private no-arg constructor. Identity Field. - Version Field.
TransactionsPessimistic, OptimisticOptimistic
Object Identitydatastore-identity, application-identityapplication-identity
Object Identity generationSequence, Table, Identity, Auto, UUID String, UUID HexSequence, Table, Identity, Auto
Change objects identityThrow exception when not allowedUndefined, so expect anything !!
Supported typesJava primitive types, wrappers of primitive types, java.lang.String, java.lang.Number, java.math.BigInteger, java.math.BigDecimal, +

FeatureJDO2JPA1
JDK Requirement1.3+1.5+
UsageJ2EE, J2SEJ2EE, J2SE
Persistence specification mechanismMetaData, Annotations [1]MetaData, Annotations
Datastore supportedAnyRDBMS only
Restrictions on persisted classesno-arg constructor (could be added by compiler/enhancer)No final classes. No final methods. Non-private no-arg constructor. Identity Field. + Version Field.
TransactionsPessimistic, OptimisticOptimistic
Object Identitydatastore-identity, application-identityapplication-identity
Object Identity generationSequence, Table, Identity, Auto, UUID String, UUID HexSequence, Table, Identity, Auto
Change objects identityThrow exception when not allowedUndefined, so expect anything !!
Supported typesJava primitive types, wrappers of primitive types, java.lang.String, java.lang.Number, java.math.BigInteger, java.math.BigDecimal, java.util.Currency, java.util.Locale, java.util.Date, java.sql.Time, java.sql.Date, java.sql.Timestamp, java.io.Serializable, boolean[], byte[], char[], double[], float[], int[], long[], short[], java.lang.Object, interface, @@ -25,13 +25,13 @@ java.util.Date, java.util.Calendar, java.sql.Date, java.sql.Time, java.sql.Timestamp, java.io.Serializable, byte[], Byte[], char[], Character[], Enums, java.util.Collection, java.util.Set, java.util.List, java.util.Map - Collection/List/Map of persistable types
Embedded FieldsEmbedded persistent objects, Embedded Collections, Embedded MapsEmbedded persistent objects
Access a non-detached fieldThrow exceptionUndefined, so expect anything !!
InheritanceEach class has its own strategyRoot class defines the strategy
Operation cascade defaultpersist, (delete)
Operation Cascade configurationdeletepersist, delete, refresh
Query LanguageJDOQL, SQLJPQL, SQL
Query candidatesCandidate without subclasses, Candidate and its subclassesCandidate and its subclasses
Object retrieval controlLazy loading, eager fet ching, fetch groupsLazy loading, eager fetching
Bulk update/deleteJDOQL Bulk DeleteJPQL Bulk Delete, Bulk Update
RDBMS Schema ControlTables, columns, PK columns, PK constraints, FK columns, FK constraints, index columns, - index constraints, unique key columns, unique key constraintsTables, columns, PK columns, FK columns, unique key columns
ORM RelationshipsFull range of Collection, Map, List, Array, 1-1, 1-N, M-N using - PC, Non-PC and interface objectsBasic 1-1, 1-N, M-N only
Caching interfaceL2 Caching APINothing
    + Collection/List/Map of persistable types
Embedded FieldsEmbedded persistent objects, Embedded Collections, Embedded MapsEmbedded persistent objects
Access a non-detached fieldThrow exceptionUndefined, so expect anything !!
InheritanceEach class has its own strategyRoot class defines the strategy
Operation cascade defaultpersist, (delete)
Operation Cascade configurationdeletepersist, delete, refresh
Query LanguageJDOQL, SQLJPQL, SQL
Query candidatesCandidate without subclasses, Candidate and its subclassesCandidate and its subclasses
Object retrieval controlLazy loading, eager fet ching, fetch groupsLazy loading, eager fetching
Bulk update/deleteJDOQL Bulk DeleteJPQL Bulk Delete, Bulk Update
RDBMS Schema ControlTables, columns, PK columns, PK constraints, FK columns, FK constraints, index columns, + index constraints, unique key columns, unique key constraintsTables, columns, PK columns, FK columns, unique key columns
ORM RelationshipsFull range of Collection, Map, List, Array, 1-1, 1-N, M-N using + PC, Non-PC and interface objectsBasic 1-1, 1-N, M-N only
Caching interfaceL2 Caching APINothing

As an overall conclusion "JPA1" is a subset of what is already available in "JDO2". "JDO2.1" adds on some of the few new features found in "JPA1".


\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdo_v_jpa_api.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdo_v_jpa_api.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdo_v_jpa_api.html (original) +++ db/jdo/site/docs/jdo_v_jpa_api.html Sat Jan 12 12:10:57 2008 @@ -7,5 +7,5 @@ API.

OperationJDO2JPA1
Persist Objectpm.makePersistent()em.persist
Update Objectpm.makePersistent()em.merge()
Remove Objectpm.deletePersistent()em.remove()
Retrieve Objectpm.getObjectById()

pm.getExtent()
em.find()
Refresh Objectpm.refresh()em.refresh()
Flush changespm.flush()em.flush()
Access transactionpm.currentTransaction()em.getTransaction()
New Querypm.newQuery()em.createQuery()
New Named Querypm.newNamedQuery()em.createNamedQuery()

\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdo_v_jpa_orm.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdo_v_jpa_orm.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdo_v_jpa_orm.html (original) +++ db/jdo/site/docs/jdo_v_jpa_orm.html Sat Jan 12 12:10:57 2008 @@ -9,5 +9,5 @@ against it which specification supports it. This list is not yet complete but will be added to to provide a comprehensive list of relationship type and where you can find it.

List<PC>
Field TypeRelationJDO2JPA1
PC1-1 Unidirectional
PC1-1 Bidirectional
PC1-1 serialised
PC1-1 CompoundIdentity Unidirectional
PC1-N CompoundIdentity Collection Bidirectional
PC1-N CompoundIdentity Map Bidirectional< /td>
Interface1-1 Unidirectional
Interface1-1 Bidirectional
Interface1-1 serialised?
Collection<PC>1-N ForeignKey Unidirectional Collection
Collection<PC>1-N ForeignKey Bidirectional Collection
Collection<PC>1-N JoinTable Unidirecti onal Collection
Collection<PC>1-N JoinTable Bidirectional Collection
Collection<Non-PC>1-N JoinTable Collection
Collection<PC>1-N JoinTable Collection using shared JoinTable
Collection<PC>1-N ForeignKey Collection using shared ForeignKey
Collection<PC>M-N JoinTable
Collection<PC>1-N CompoundIdentity Unidirectional
Collection<PC>1-N serialised Collection
Collection<PC>1-N JoinTable Collection of serialised elements
List<PC>1-N ForeignKey Unidirectional Indexed List
List<PC>1-N ForeignKey Bidirectional Indexed List
List<PC>1-N JoinTable U nidirectional Indexed List
List<PC>1-N JoinTable Bidirectional Indexed List
List<Non-PC>1-N JoinTable Indexed List
List<PC>1-N ForeignKey Unidirectional Ordered List
List<PC>1-N ForeignKey Bidirectional Ordered List
List<PC>1-N JoinTable Unidirectional Ordered List
1-N JoinTable Bidirectional Ordered List
Map<PC, PC>1-N JoinTable Map
Map<Non-PC, PC>1-N JoinTable Map
Map<PC, Non-PC>1-N JoinTable Map
Map<Non-PC, Non-PC>1-N JoinTable Map
Map<Non-PC, PC>1-N ForeignKey Map Unidirectional (key stored in value)
Map<Non-PC, PC>1-N ForeignKey Map Bidirectional (key stored in value)
Map<PC, Non-PC>1-N ForeignKey Map Unidirectional (value stored in key)
Map<PC, PC>1-N serialised Map
Map<PC, PC>1-N JoinTable Map of serialised keys/values
PC[ ]1-N ForeignKey Unidirectional Array
PC[ ]1-N JoinTable Unidirectional Array
PC[ ]1-N serialised Array
Non-PC[ ]1-N JoinTable Unidirectional Array

< /hr>
\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdocentral.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdocentral.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdocentral.html (original) +++ db/jdo/site/docs/jdocentral.html Sat Jan 12 12:10:57 2008 @@ -11,5 +11,5 @@ Visit the other pages on the Apache JDO site to find out what's going on with JDO. Join the mailing lists to get involved and provide feedback.


\ No newline at end of file + Documentation published: 12 January 2008

+ © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdohelper.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdohelper.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdohelper.html (original) +++ db/jdo/site/docs/jdohelper.html Sat Jan 12 12:10:57 2008 @@ -63,5 +63,5 @@
  • isDetached(Object pc) - returns whether the passed object is detached

  • \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/jdoquery_dtd.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/jdoquery_dtd.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/jdoquery_dtd.html (original) +++ db/jdo/site/docs/jdoquery_dtd.html Sat Jan 12 12:10:57 2008 @@ -32,5 +32,5 @@ Your MetaData should match either the DTD or the XSD specification.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/mail-lists.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/mail-lists.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/mail-lists.html (original) +++ db/jdo/site/docs/mail-lists.html Sat Jan 12 12:10:57 2008 @@ -29,6 +29,16 @@

    Archive

    + +

    Commits List : jdo-commits@db.apache.org

    + +

    Subscribe

    + +

    Unsubscribe

    + +

    +Archive +


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/maven-reports.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/maven-reports.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/maven-reports.html (original) +++ db/jdo/site/docs/maven-reports.html Sat Jan 12 12:10:57 2008 @@ -7,5 +7,5 @@ Maven. Each report is briefly described below.

    Overview

    DocumentDescription

    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/metadata.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/metadata.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/metadata.html (original) +++ db/jdo/site/docs/metadata.html Sat Jan 12 12:10:57 2008 @@ -39,5 +39,5 @@ JDO 2.1 provides support for annotations. Classes and fields/properties can be annotated defining the persistence and, optionally, any ORM information.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/newshistory.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/newshistory.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/newshistory.html (original) +++ db/jdo/site/docs/newshistory.html Sat Jan 12 12:10:57 2008 @@ -12,5 +12,5 @@ Corporate Contributor License Agreement (CCLA) between The Apache Software Foundation and Sun Microsystems, Inc.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/object_retrieval.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/object_retrieval.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/object_retrieval.html (original) +++ db/jdo/site/docs/object_retrieval.html Sat Jan 12 12:10:57 2008 @@ -49,5 +49,5 @@ If the objects found by the query are in the JDO cache then they are retrieved from there, otherwise the JDO implementation goes to the datastore. When the objects are retrieved their fields are populated according to the Fetch Group.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/orm_dtd.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/orm_dtd.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/orm_dtd.html (original) +++ db/jdo/site/docs/orm_dtd.html Sat Jan 12 12:10:57 2008 @@ -32,5 +32,5 @@ Your MetaData should match either the DTD or the XSD specification.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/pm.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/pm.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/pm.html (original) +++ db/jdo/site/docs/pm.html Sat Jan 12 12:10:57 2008 @@ -177,5 +177,5 @@ ... (code to work on "my_obj")

    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/pmf.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/pmf.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/pmf.html (original) +++ db/jdo/site/docs/pmf.html Sat Jan 12 12:10:57 2008 @@ -110,5 +110,5 @@ "persistence-unit" concept from JPA for use with JDO 2.1.

    javax.jdo.option.ServerTimeZoneID
    DescriptionId of the TimeZone under which the datastore server is running. If this is not specified or is set to null it is assumed that the datastore server is running in the same timezone as the JVM under which the implementation is running.


    javax.jdo.option.Name
    DescriptionName of the PMF. This is for use with "named PMF" functionality in JDO 2.1





    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/project-info.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/project-info.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/project-info.html (original) +++ db/jdo/site/docs/project-info.html Sat Jan 12 12:10:57 2008 @@ -22,5 +22,5 @@ project. Issues (bugs, features, change requests) can be created and queried using this link.

    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/references.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/references.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/references.html (original) +++ db/jdo/site/docs/references.html Sat Jan 12 12:10:57 2008 @@ -23,5 +23,5 @@ Core Java Data Objects by Sameer Tyagi, Michael Vorburger, Keiron McCammon, Heiko Bobzin. Publisher: Prentice Hall


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/releases/release-2.0-beta.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0-beta.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/releases/release-2.0-beta.html (original) +++ db/jdo/site/docs/releases/release-2.0-beta.html Sat Jan 12 12:10:57 2008 @@ -73,5 +73,5 @@ hhttp://www.pc-tools.net/win32/freeware/console. Windows SlavaSoft fsum supports MD5 and SHA1.

    We highly recommend verifying the PGP signature, though.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/releases/release-2.0-rc1.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0-rc1.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/releases/release-2.0-rc1.html (original) +++ db/jdo/site/docs/releases/release-2.0-rc1.html Sat Jan 12 12:10:57 2008 @@ -77,5 +77,5 @@ hhttp://www.pc-tools.net/win32/freeware/console. Windows SlavaSoft fsum supports MD5 and SHA1.

    We highly recommend verifying the PGP signature, though.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/releases/release-2.0.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/releases/release-2.0.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/releases/release-2.0.html (original) +++ db/jdo/site/docs/releases/release-2.0.html Sat Jan 12 12:10:57 2008 @@ -124,5 +124,5 @@ hhttp://www.pc-tools.net/win32/freeware/console. Windows SlavaSoft fsum supports MD5 and SHA1.

    We highly recommend verifying the PGP signature, though.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/roadmap.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/roadmap.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/roadmap.html (original) +++ db/jdo/site/docs/roadmap.html Sat Jan 12 12:10:57 2008 @@ -6,5 +6,5 @@

    Submit an Idea


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/specifications.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/specifications.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/specifications.html (original) +++ db/jdo/site/docs/specifications.html Sat Jan 12 12:10:57 2008 @@ -17,5 +17,5 @@
  • The JDO 2.1 Specification 17 Oct 2007 Draft
  • The JDO 2.1 Specification 2 August Draft

  • \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/state_transition.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/state_transition.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/state_transition.html (original) +++ db/jdo/site/docs/state_transition.html Sat Jan 12 12:10:57 2008 @@ -81,5 +81,5 @@





    Possible state transitions

    The following diagram shows the state transitions possible with JDO.



    JDO State Transition


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/svn.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/svn.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/svn.html (original) +++ db/jdo/site/docs/svn.html Sat Jan 12 12:10:57 2008 @@ -54,5 +54,5 @@
  • Copy the servers file and the auth folder from the sygwin ~/.subversion directory to C:\Documents and Settings\<user>\Application Data\Subversion used by Win32 subversion.

  • Note that windows svn uses backslash as the path separator when displaying file names. You cannot just copy and paste this file name to another svn command when running from within a cygwin shell. You need to enclose the file name into double quotes.

    Alternatively, Windows users can set file permissions in Windows Explorer. (Right-click on the top-level folder & select Properties. Select the Security tab. Click Advanced. Remove all instances of Read & Execute from the Permission Entries. Click "Reset permissions on all child objects and enable propogations of inheritable permissions". Click Apply. OK. OK.) You will have to do this again when you do a clean checkout to a new directory.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/tck.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/tck.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/tck.html (original) +++ db/jdo/site/docs/tck.html Sat Jan 12 12:10:57 2008 @@ -24,5 +24,5 @@ test run, which consists of multiple log files containing configuration information and test results. For an example of the required posting, please see http://db.apache.org/jdo/tck/final.


    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file Modified: db/jdo/site/docs/team-list.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/team-list.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/team-list.html (original) +++ db/jdo/site/docs/team-list.html Sat Jan 12 12:10:57 2008 @@ -14,6 +14,6 @@

    If you would like to become a committer, please see Get Involved. -

    Apache JDO Committers

    NameOrganization
    Matthew AdamsInterface21
    Erik BengtsonJPOX
    Michael BouschenTech@Spree
    Michelle CaisseSun Microsystems, Inc.
    Andy JeffersonJPOX
    Patrick LinskeySolarmetric
    Geir Magnusson Jr.IBM
    Brian McCallister
    Craig RussellSun Microsystems, Inc.
    Dain Sundstrom
    Brian Topping
    Michael WatzekTech@Spree
    Martin ZaunSun Microsystems, Inc.

    Apache JDO Contributors

    NameOrganization
    Chris Beams
    Ilan KirschObjectDB

    \ No newline at end of file +

    Apache JDO Committers

    NameOrganization
    Matthew AdamsInterface21
    Erik BengtsonJPOX
    Michael BouschenTech@Spree
    Michelle CaisseSun Microsystems, Inc.
    Andy JeffersonJPOX
    Patrick LinskeySolarmetric
    Geir Magnusson Jr.IBM
    Brian McCallister
    Craig RussellSun Microsystems, Inc.
    Dain Sundstrom
    Brian Topping
    Michael WatzekTech@Spree
    Martin ZaunSun Microsystems, Inc.

    Apache JDO Contributors

    NameOrganization
    Chris Beams
    Ilan KirschObjectDB

    \ No newline at end of file Modified: db/jdo/site/docs/transactions.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/transactions.html?rev=611473&r1=611472&r2=611473&view=diff ============================================================================== --- db/jdo/site/docs/transactions.html (original) +++ db/jdo/site/docs/transactions.html Sat Jan 12 12:10:57 2008 @@ -40,5 +40,5 @@

    pm.currentTransaction().setOptimistic(true);

    \ No newline at end of file + Documentation published: 12 January 2008

    + © 2005-2008 Apache Software Foundation \ No newline at end of file