You are viewing a plain text version of this content. The canonical link for it is here.
Posted to graffito-commits@incubator.apache.org by cl...@apache.org on 2005/04/01 21:34:20 UTC

svn commit: r159733 - in incubator/graffito/trunk/api: project.xml src/java/org/apache/portals/graffito/exception/ContentManagementException.java src/java/org/apache/portals/graffito/model/Document.java src/java/org/apache/portals/graffito/util/

Author: clombart
Date: Fri Apr  1 13:34:20 2005
New Revision: 159733

URL: http://svn.apache.org/viewcvs?view=rev&rev=159733
Log:
* Create a new subproject : graffito commons which contains common classes used in other Graffito projects :
- Common exception
- Common util classes

Removed:
    incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/exception/ContentManagementException.java
    incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/util/
Modified:
    incubator/graffito/trunk/api/project.xml
    incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/Document.java

Modified: incubator/graffito/trunk/api/project.xml
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/api/project.xml?view=diff&r1=159732&r2=159733
==============================================================================
--- incubator/graffito/trunk/api/project.xml (original)
+++ incubator/graffito/trunk/api/project.xml Fri Apr  1 13:34:20 2005
@@ -4,7 +4,7 @@
     <connection>scm:subversion:https://svn.apache.org/repos/asf/incubator/graffito/trunk/api</connection>
     <developerConnection>scm:subversion:https://svn.apache.org/repos/asf/incubator/graffito/trunk/api</developerConnection>
     <url>http://svn.apache.org/viewcvs</url>
-  </repository>
  
  <dependencies>
  </dependencies>
  <build>
    <sourceDirectory>src/java</sourceDirectory>
     <resources>
      <resource>
        <directory>${basedir}/src/java</directory>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
    <unitTest>
       <includes>
        <include>**/Test*.java</include>
      </includes>
      <excludes>
      </excludes>
      <resources>
        <resource>
          <directory>${basedir}/src/test</directory>
          <excludes>
          <exclude>**/*.java</exclude>
          </excludes>
        </resource>
      </resources>
    </unitTest>
    
  </build>
  <reports>
+  </repository>
  
  <dependencies>
    <dependency>  
      <id>graffito-commons</id>
      <groupId>graffito</groupId>
      <version>1.0-a1-dev</version>
    </dependency>
	
  </dependencies>
  <build>
    <sourceDirectory>src/java</sourceDirectory>
     <resources>
      <resource>
        <directory>${basedir}/src/java</directory>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
    <unitTestSourceDirectory>src/test</unitTestSourceDirectory>
    <unitTest>
       <includes>
        <include>**/Test*.java</include>
      </includes>
      <excludes>
      </excludes>
      <resources>
        <resource>
          <directory>${basedir}/src/test</directory>
          <excludes>
          <exclude>**/*.java</exclude>
          </excludes>
        </resource>
      </resources>
    </unitTest>
    
  </build>
  <reports>
        <report>maven-javadoc-plugin</report>
   </reports>
     

Modified: incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/Document.java
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/Document.java?view=diff&r1=159732&r2=159733
==============================================================================
--- incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/Document.java (original)
+++ incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/Document.java Fri Apr  1 13:34:20 2005
@@ -17,7 +17,7 @@
 
 
 /**
- * CMS VersionnedDocument interface.
+ * CMS Document interface.
  *
  * @author <a href="mailto:christophe.lombart@sword-technologies.com">Christophe Lombart</a>
  * 



Re: svn commit: r159733 - in incubator/graffito/trunk/api: project.xml src/java/org/apache/portals/graffito/exception/ContentManagementException.java src/java/org/apache/portals/graffito/model/Document.java src/java/org/apache/portals/graffito/util/

Posted by Christophe Lombart <ch...@sword-technologies.com>.
David Sean Taylor wrote:

> clombart@apache.org wrote:
>
>> Author: clombart
>> Date: Fri Apr  1 13:34:20 2005
>> New Revision: 159733
>>
>> URL: http://svn.apache.org/viewcvs?view=rev&rev=159733
>> Log:
>> * Create a new subproject : graffito commons which contains common 
>> classes used in other Graffito projects :
>> - Common exception
>> - Common util classes
>>
>> Removed:
>>     
>> incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/exception/ContentManagementException.java 
>>
>
> Christophe,
>
> Why did you move this exception class to commons?
> The API should not have dependencies on commons.
> Im going to move it back, OK?
>
ok

Christophe


Re: svn commit: r159733 - in incubator/graffito/trunk/api: project.xml src/java/org/apache/portals/graffito/exception/ContentManagementException.java src/java/org/apache/portals/graffito/model/Document.java src/java/org/apache/portals/graffito/util/

Posted by David Sean Taylor <da...@bluesunrise.com>.
clombart@apache.org wrote:
> Author: clombart
> Date: Fri Apr  1 13:34:20 2005
> New Revision: 159733
> 
> URL: http://svn.apache.org/viewcvs?view=rev&rev=159733
> Log:
> * Create a new subproject : graffito commons which contains common classes used in other Graffito projects :
> - Common exception
> - Common util classes
> 
> Removed:
>     incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/exception/ContentManagementException.java
Christophe,

Why did you move this exception class to commons?
The API should not have dependencies on commons.
Im going to move it back, OK?

-- 
David Sean Taylor
Bluesunrise Software
david@bluesunrise.com
[office] +01 707 773-4646
[mobile] +01 707 529 9194