[Xdoclet-devel] CVS: xdoclet/core/src/xdoclet XmlSubTask.java,1.26,1.27

2005-07-19 Thread Paul Galbraith
Update of /cvsroot/xdoclet/xdoclet/core/src/xdoclet
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21148/src/xdoclet

Modified Files:
XmlSubTask.java 
Log Message:
Don't validate XML when reformatting

Index: XmlSubTask.java
===
RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/XmlSubTask.java,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** XmlSubTask.java 13 Jul 2005 14:59:29 -  1.26
--- XmlSubTask.java 19 Jul 2005 19:10:02 -  1.27
***
*** 351,354 
--- 351,356 
  DocumentBuilderFactory factory = 
DocumentBuilderFactory.newInstance();
  
+ factory.setValidating(false);
+ 
  DocumentBuilder builder = factory.newDocumentBuilder();
  



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] CVS: xdoclet/core/src/xdoclet/tagshandler MergeTagsHandler.java,1.14,1.15

2005-07-19 Thread Paul Galbraith
Update of /cvsroot/xdoclet/xdoclet/core/src/xdoclet/tagshandler
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21587/src/xdoclet/tagshandler

Modified Files:
MergeTagsHandler.java 
Log Message:
Better logic for parent-child merges, if parent ID is specified then the 
ifParentIdEquals block should not be evaluated regardless of whether or not an 
ID is specified

Index: MergeTagsHandler.java
===
RCS file: 
/cvsroot/xdoclet/xdoclet/core/src/xdoclet/tagshandler/MergeTagsHandler.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** MergeTagsHandler.java   12 Jul 2005 17:16:45 -  1.14
--- MergeTagsHandler.java   19 Jul 2005 19:12:16 -  1.15
***
*** 187,191 
  }
  
! if (id == null || id.length() == 0 || mergeStack.peek().equals(id)) {
  generate(template);
  }
--- 187,197 
  }
  
! if (id == null || id.length() == 0) {
! if (mergeStack.size() == 0 ||
! mergeStack.peek().equals("__UNSPECIFIED__")) {
! generate(template);
! }
! }
! else if (mergeStack.size() > 0 && mergeStack.peek().equals(id)) {
  generate(template);
  }



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] CVS: xdoclet/samples/src/java/test/hibernate30 Product.java,1.3,1.4

2005-07-19 Thread Paul Galbraith
Update of /cvsroot/xdoclet/xdoclet/samples/src/java/test/hibernate30
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21836/src/java/test/hibernate30

Modified Files:
Product.java 
Log Message:
Show use of @hibernate.properties

Index: Product.java
===
RCS file: 
/cvsroot/xdoclet/xdoclet/samples/src/java/test/hibernate30/Product.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Product.java20 May 2005 15:00:19 -  1.3
--- Product.java19 Jul 2005 19:13:09 -  1.4
***
*** 1 
! package test.hibernate30;

import java.math.BigDecimal;

/**
 * @hibernate.class table="PRODUCTS" discriminator-value="null"
 *  dynamic-update="true"
 * @hibernate.discriminator column="PRODUCT_TYPE" type="string" length="16"
 *  not-null="false"
 * 
 * @author Administrator
 */
public class Product extends Persistent implements Updateable {

private String description;
private String code;
private BigDecimal price;
private byte[] image;
private String updateComment;

/**
 * Constructor for Product.
 */
public Product() {
super();
}

/**
 * @hibernate.property node="description" access="property" 
 * type="string" column="description" length="512"
 * precision="5" scale="2" not-null="false" 
 * unique="false" update="true" insert="true"
 * optimistic-lock="true" formula="xyzzy"
 * index="ix-product-description" lazy="true"
 * @hibernate.meta attribute="scope-set" value="protected"
 * @hibernate.meta attribute="scope-get" value="public"
 * @hibernate.column name="description" length="512" precision="5" 
 *   scale="2" not-null="false"
 *   unique="false" unique-key="unique-key"
 *   sql-type="varchar" index="ix-product-description"
 *   check="sql expression"
 * @hibernate.formula "formula 1"
 * @hibernate.formula "formula 2"
 * @hibernate.type name="my.custom.type"
 * @hibernate.param name="param1" value="0"
 * @hibernate.param name="param2" value="text"
 */
public String getDescription() {
return description;
}

public void setDescription(String name) {
this.description = name;
}

/**
 * @hibernate.property length="16" unique="true" update="false"
 * @hibernate.meta attribute="testatt" value="attvalue"
 * @hibernate.formula value="formula 3"
 * @hibernate.param name="param3" value="1"
 */
public String getCode() {
return code;
}

/**
 * Sets the code.
 * @param code The code to set
 */
public void setCode(String code) {
this.code = code;
}

/**
 * @hibernate.property length="4096"
 * @hibernate.column name="image1"
 * @hibernate.column name="image2"
 */
public byte[] getImage() {
return image;
}

/**
 * @hibernate.property
 * Returns the price.
 * @return BigDecimal
 */
public BigDecimal getPrice() {
return price;
}

/**
 * Sets the image.
 * @param image The image to set
 */
public void setImage(byte[] image) {
this.image = image;
}

/**
 * Sets the price.
 * @param price The price to set
 */
public void setPrice(BigDecimal price) {
this.price = price;
}

public String getUpdateComment() {
return updateComment;
}

public void setUpdateComment(String string) {
updateComment = string;
}

}

\ No newline at end of file
--- 1 
! package test.hibernate30;

import java.math.BigDecimal;

/**
 * @hibernate.class table="PRODUCTS" discriminator-value="null"
 *  dynamic-update="true"
 *  
 * @hibernate.discriminator column="PRODUCT_TYPE" type="string" length="16"
 *  not-null="false"
 *  
 * @hibernate.properties name="legacyprops" element-id="legacyprops"
 * 
 * @author Administrator
 */
public class Product extends Persistent implements Updateable {

private String description;
private String code;
private BigDecimal price;
private byte[] image;
private String updateComment;

/**
 * Constructor for Product.
 */
public Product() {
   

[Xdoclet-devel] CVS: xdoclet/modules/hibernate/src/META-INF xtags.xml,1.63,1.64

2005-07-19 Thread Paul Galbraith
Update of /cvsroot/xdoclet/xdoclet/modules/hibernate/src/META-INF
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23032/src/META-INF

Modified Files:
xtags.xml 
Log Message:
XDT-1422, add @hibernate.properties tag to create  element.
XDT-1257 add more H3 element mappings

Index: xtags.xml
===
RCS file: /cvsroot/xdoclet/xdoclet/modules/hibernate/src/META-INF/xtags.xml,v
retrieving revision 1.63
retrieving revision 1.64
diff -C2 -r1.63 -r1.64
*** xtags.xml   12 Jul 2005 17:24:00 -  1.63
--- xtags.xml   19 Jul 2005 19:19:23 -  1.64
***
*** 5,14 
  
  hibernate
! Tags for declaration of Hibernate descriptor 
file
! All classes, at class level and on getter 
methods
  
! 
  
! 
  
  
[...7519 lines suppressed...]
! Specify a filter to apply ... the filter must be
! defined with @hibernate.filter-def
! 
  false
  Hibernate
! 
  
  name
! 
! Name of the filter to use
! 
  true
  
  
  condition
! 
! sql conditions to apply to the filter
! 
  false
  



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] [XDoclet-JIRA] Created: (XDT-1474) Maven XDoclet JMX module does not generate JBoss service.xml for MBeans

2005-07-19 Thread noreply
Message:

  A new issue has been created in JIRA.

-
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1474

Here is an overview of the issue:
-
Key: XDT-1474
Summary: Maven XDoclet JMX module does not generate JBoss service.xml for 
MBeans
   Type: Bug

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: XDoclet
 Components: 
 JMX Module
   Versions:
 1.2.1
 1.2.3

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: Jeroen Peschier

Created: Tue, 19 Jul 2005 3:37 PM
Updated: Tue, 19 Jul 2005 3:37 PM
Environment: Win2K, JDK 1.4.2, Maven 1.0.2, XDoclet 1.2.3 (bug also confirmed 
on XDoclet 1.2.1)

Description:

The jbossxmlservicetemplate subtask does not generate a *-service.xml 
deploymenent descriptor for MBeans. I will attach an example that reproduces 
the bug.

While checking plugin.jelly of 1.2.3 (and 1.2.1 as well) I found an unmatched 
'>' just above the  tag. Removing it does not fix the 
problem though.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] [XDoclet-JIRA] Updated: (XDT-1474) Maven XDoclet JMX module does not generate JBoss service.xml for MBeans

2005-07-19 Thread noreply
The following issue has been updated:

Updater: Jeroen Peschier (mailto:[EMAIL PROTECTED])
   Date: Tue, 19 Jul 2005 3:38 PM
Changes:
 Attachment changed to jboss-service-xml-bug.zip
-
For a full history of the issue, see:

  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1474?page=history

-
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1474

Here is an overview of the issue:
-
Key: XDT-1474
Summary: Maven XDoclet JMX module does not generate JBoss service.xml for 
MBeans
   Type: Bug

 Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: XDoclet
 Components: 
 JMX Module
   Versions:
 1.2.1
 1.2.3

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: Jeroen Peschier

Created: Tue, 19 Jul 2005 3:37 PM
Updated: Tue, 19 Jul 2005 3:38 PM
Environment: Win2K, JDK 1.4.2, Maven 1.0.2, XDoclet 1.2.3 (bug also confirmed 
on XDoclet 1.2.1)

Description:

The jbossxmlservicetemplate subtask does not generate a *-service.xml 
deploymenent descriptor for MBeans. I will attach an example that reproduces 
the bug.

While checking plugin.jelly of 1.2.3 (and 1.2.1 as well) I found an unmatched 
'>' just above the  tag. Removing it does not fix the 
problem though.


-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] [XDoclet-JIRA] Commented: (XDT-1257) Hibernate 3.x support for XDoclet 1.2.x

2005-07-19 Thread noreply
The following comment has been added to this issue:

 Author: Paul Galbraith
Created: Tue, 19 Jul 2005 4:41 PM
   Body:
CVS COMMIT LOG: 
SUBJECT: [Xdoclet-devel] CVS: 
xdoclet/modules/hibernate/src/xdoclet/modules/hibernate/resources 
hibernate-comment.xdt,NONE,1.1 hibernate-joined-subclass.xdt,1.12,1.13 
hibernate-query.xdt,1.6,1.7 hibernate-property.xdt,1.4,1.5 
hibernate-properties.xdt,1.43,1.44 hibernate-many-to-one.xdt,1.3,1.4 
hibernate-class.xdt,1.2,1.3 hibernate-component.xdt,1.1,1.2 
hibernate-dynamic-component.xdt,1.1,1.2 hibernate-subclass.xdt,1.15,1.16
XDT-1422, add @hibernate.properties tag to create  element.
XDT-1257 add more H3 element mappings


-
View this comment:
  
http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1257?page=comments#action_17009

-
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1257

Here is an overview of the issue:
-
Key: XDT-1257
Summary: Hibernate 3.x support for XDoclet 1.2.x
   Type: New Feature

 Status: Reopened
   Priority: Critical

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: XDoclet
 Components: 
 Hibernate Module
   Fix Fors:
 1.3
   Versions:
 1.2.2

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: David Channon

Created: Tue, 1 Feb 2005 12:08 AM
Updated: Tue, 19 Jul 2005 4:41 PM
Environment: Hibernate 3.0

Description:
Currently XDoclet 1.2.x does not support hibernate 3.0 - I would like this 
support added. I understand that XDoclet 2.0 has started with some support but 
it does not have all the plugins that 1.2.x has thus I request that this 
occurs. 

I am a member of the Hibernate team and as such I am willing to start the work 
for this support (as I require it for my current project). Obviously I will 
require commit access to the hibernate module to do the work. Thank you in 
advance.  email: david at hibernate.org





-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel


[Xdoclet-devel] [XDoclet-JIRA] Commented: (XDT-1257) Hibernate 3.x support for XDoclet 1.2.x

2005-07-19 Thread noreply
The following comment has been added to this issue:

 Author: Paul Galbraith
Created: Tue, 19 Jul 2005 6:42 PM
   Body:
CVS COMMIT LOG: 
SUBJECT: [Xdoclet-devel] CVS: xdoclet/modules/hibernate/src/META-INF 
xtags.xml,1.63,1.64
XDT-1422, add @hibernate.properties tag to create  element.
XDT-1257 add more H3 element mappings


-
View this comment:
  
http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1257?page=comments#action_17011

-
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1257

Here is an overview of the issue:
-
Key: XDT-1257
Summary: Hibernate 3.x support for XDoclet 1.2.x
   Type: New Feature

 Status: Reopened
   Priority: Critical

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

Project: XDoclet
 Components: 
 Hibernate Module
   Fix Fors:
 1.3
   Versions:
 1.2.2

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: David Channon

Created: Tue, 1 Feb 2005 12:08 AM
Updated: Tue, 19 Jul 2005 6:42 PM
Environment: Hibernate 3.0

Description:
Currently XDoclet 1.2.x does not support hibernate 3.0 - I would like this 
support added. I understand that XDoclet 2.0 has started with some support but 
it does not have all the plugins that 1.2.x has thus I request that this 
occurs. 

I am a member of the Hibernate team and as such I am willing to start the work 
for this support (as I require it for my current project). Obviously I will 
require commit access to the hibernate module to do the work. Thank you in 
advance.  email: david at hibernate.org





-
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel