User: pathoss 
  Date: 02/04/28 15:24:23

  Modified:    core/config Tag: MODULE_REFACTORING_BRANCH log4j.properties
                        tagmappings.properties
  Log:
  Changed package xdoclet.tags to xdoclet.tagshandler.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.8.2.1   +3 -3      xdoclet/core/config/log4j.properties
  
  Index: log4j.properties
  ===================================================================
  RCS file: /cvsroot/xdoclet/xdoclet/core/config/log4j.properties,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -w -r1.8 -r1.8.2.1
  --- log4j.properties  24 Mar 2002 17:44:19 -0000      1.8
  +++ log4j.properties  28 Apr 2002 22:24:23 -0000      1.8.2.1
  @@ -11,8 +11,8 @@
   
   # Example: Uncomment to debug the class SubTask only
   #log4j.category.xdoclet.SubTask=DEBUG
  -#log4j.category.xdoclet.ejb.tags.RelationTagsHandler=DEBUG
  -#log4j.category.xdoclet.ejb.tags.MethodTagsHandler=DEBUG
  +#log4j.category.xdoclet.ejb.tagshandler.RelationTagsHandler=DEBUG
  +#log4j.category.xdoclet.ejb.tagshandler.MethodTagsHandler=DEBUG
   
   # Example: Uncomment to debug the tokenizeValue() method of SubTask only
   #log4j.category.xdoclet.SubTask.tokenizeValue=DEBUG
  @@ -22,5 +22,5 @@
   #log4j.category.xdoclet.DocletTask=DEBUG
   #log4j.category.xdoclet.DocletTask$DocletMain=DEBUG
   
  -#log4j.category.xdoclet.tags.MethodTagsHandler=DEBUG
  +#log4j.category.xdoclet.tagshandler.MethodTagsHandler=DEBUG
   log4j.category.xdoclet.ConfigParamIntrospector=ERROR
  
  
  
  1.15.2.3  +46 -43    xdoclet/core/config/tagmappings.properties
  
  Index: tagmappings.properties
  ===================================================================
  RCS file: /cvsroot/xdoclet/xdoclet/core/config/tagmappings.properties,v
  retrieving revision 1.15.2.2
  retrieving revision 1.15.2.3
  diff -u -w -r1.15.2.2 -r1.15.2.3
  --- tagmappings.properties    28 Apr 2002 21:32:04 -0000      1.15.2.2
  +++ tagmappings.properties    28 Apr 2002 22:24:23 -0000      1.15.2.3
  @@ -1,45 +1,48 @@
  -#General namespaces
  -Type=xdoclet.tags.TypeTagsHandler
  -Class=xdoclet.tags.ClassTagsHandler
  -Field=xdoclet.tags.FieldTagsHandler
  -Method=xdoclet.tags.MethodTagsHandler
  -Constructor=xdoclet.tags.ConstructorTagsHandler
  -Package=xdoclet.tags.PackageTagsHandler
  -Parameter=xdoclet.tags.ParameterTagsHandler
  -I18n=xdoclet.tags.TranslatorTagsHandler
  -Id=xdoclet.tags.IdTagsHandler
  -Merge=xdoclet.tags.MergeTagsHandler
  -Config=xdoclet.tags.ConfigTagsHandler
  -TagDef=xdoclet.tags.TagDefTagsHandler
  +# GENERAL NAMESPACES
  +#Doc=xdoclet.doc.tagshandler.DocumentationTagsHandler
   #Info=xdoclet.doc.info.InfoTagsHandler
  -#Doc=xdoclet.doc.tags.DocumentationTagsHandler
  -Xml=xdoclet.tags.XmlTagsHandler
  -Comment=xdoclet.tags.CommentTagsHandler
  -Property=xdoclet.tags.PropertyTagsHandler
  -#EJB namespaces
  -#Ejb=xdoclet.ejb.tags.EjbTagsHandler
  -#EjbBmp=xdoclet.ejb.tags.BmpTagsHandler
  -#EjbCmp=xdoclet.ejb.tags.CmpTagsHandler
  -#EjbDao=xdoclet.ejb.tags.DaoTagsHandler
  -#EjbDataObj=xdoclet.ejb.tags.DataObjectTagsHandler
  -#EjbValueObj=xdoclet.ejb.tags.ValueObjectTagsHandler
  -#EjbEntity=xdoclet.ejb.tags.EntityTagsHandler
  -#EjbHome=xdoclet.ejb.tags.HomeTagsHandler
  -#EjbIntf=xdoclet.ejb.tags.InterfaceTagsHandler
  -#EjbMdb=xdoclet.ejb.tags.MdbTagsHandler
  -#EjbPersistent=xdoclet.ejb.tags.PersistentTagsHandler
  -#EjbPk=xdoclet.ejb.tags.PkTagsHandler
  -#EjbRef=xdoclet.ejb.tags.EjbRefTagsHandler
  -#EjbRel=xdoclet.ejb.tags.RelationTagsHandler
  -#EjbSec=xdoclet.ejb.tags.SecurityTagsHandler
  -#EjbSession=xdoclet.ejb.tags.SessionTagsHandler
  -#EjbUtilObj=xdoclet.ejb.tags.UtilTagsHandler
  -#Other standard namespaces
  -#Jmx=xdoclet.jmx.tags.JMXTagsHandler
  -#Third party namespaces
  +Class=xdoclet.tagshandler.ClassTagsHandler
  +Comment=xdoclet.tagshandler.CommentTagsHandler
  +Config=xdoclet.tagshandler.ConfigTagsHandler
  +Constructor=xdoclet.tagshandler.ConstructorTagsHandler
  +Field=xdoclet.tagshandler.FieldTagsHandler
  +I18n=xdoclet.tagshandler.TranslatorTagsHandler
  +Id=xdoclet.tagshandler.IdTagsHandler
  +Merge=xdoclet.tagshandler.MergeTagsHandler
  +Method=xdoclet.tagshandler.MethodTagsHandler
  +Package=xdoclet.tagshandler.PackageTagsHandler
  +Parameter=xdoclet.tagshandler.ParameterTagsHandler
  +Property=xdoclet.tagshandler.PropertyTagsHandler
  +TagDef=xdoclet.tagshandler.TagDefTagsHandler
  +Type=xdoclet.tagshandler.TypeTagsHandler
  +Xml=xdoclet.tagshandler.XmlTagsHandler
  +
  +# EJB NAMESPACES
  +#Ejb=xdoclet.ejb.tagshandler.EjbTagsHandler
  +#EjbBmp=xdoclet.ejb.tagshandler.BmpTagsHandler
  +#EjbCmp=xdoclet.ejb.tagshandler.CmpTagsHandler
  +#EjbDao=xdoclet.ejb.tagshandler.DaoTagsHandler
  +#EjbDataObj=xdoclet.ejb.tagshandler.DataObjectTagsHandler
  +#EjbEntity=xdoclet.ejb.tagshandler.EntityTagsHandler
  +#EjbHome=xdoclet.ejb.tagshandler.HomeTagsHandler
  +#EjbIntf=xdoclet.ejb.tagshandler.InterfaceTagsHandler
  +#EjbMdb=xdoclet.ejb.tagshandler.MdbTagsHandler
  +#EjbPersistent=xdoclet.ejb.tagshandler.PersistentTagsHandler
  +#EjbPk=xdoclet.ejb.tagshandler.PkTagsHandler
  +#EjbRef=xdoclet.ejb.tagshandler.EjbRefTagsHandler
  +#EjbRel=xdoclet.ejb.tagshandler.RelationTagsHandler
  +#EjbSec=xdoclet.ejb.tagshandler.SecurityTagsHandler
  +#EjbSession=xdoclet.ejb.tagshandler.SessionTagsHandler
  +#EjbUtilObj=xdoclet.ejb.tagshandler.UtilTagsHandler
  +#EjbValueObj=xdoclet.ejb.tagshandler.ValueObjectTagsHandler
  +
  +# OTHER STANDARD NAMESPACES
  +#Jmx=xdoclet.jmx.tagshandler.JMXTagsHandler
  +
  +# THIRD PARTY NAMESPACES
  +#JBEjbRel=xdoclet.ejb.tagshandler.vendor.JBossRelationTagsHandler
  +#JBoss=xdoclet.ejb.tagshandler.vendor.JBossTagsHandler
  +#MVCSoft=xdoclet.ejb.tagshandler.vendor.MVCSoftTagsHandler
  +#StrutsForm=xdoclet.ejb.tagshandler.vendor.StrutsFormTagsHandler
   #WebWork=xdoclet.web.vendor.webwork.WebWorkTagsHandler
  -#JBoss=xdoclet.ejb.tags.vendor.JBossTagsHandler
  -#JBEjbRel=xdoclet.ejb.tags.vendor.JBossRelationTagsHandler
  -#StrutsForm=xdoclet.ejb.tags.vendor.StrutsFormTagsHandler
  -#WlEjbRel=xdoclet.ejb.tags.vendor.WeblogicRelationTagsHandler
  -#MVCSoft=xdoclet.ejb.tags.vendor.MVCSoftTagsHandler
  +#WlEjbRel=xdoclet.ejb.tagshandler.vendor.WeblogicRelationTagsHandler
  
  
  

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to