[Apache Geronimo Wiki] Updated: IntroduceYourself

2004-02-18 Thread incubator-geronimo-cvs
   Date: 2004-02-17T21:37:17
   Editor: 66.31.145.168 
   Wiki: Apache Geronimo Wiki
   Page: IntroduceYourself
   URL: http://wiki.apache.org/geronimo/IntroduceYourself

   added my profile info

Change Log:

--
@@ -123,5 +123,7 @@
 || Vaughn Bullard || Washington DC  USA || J2EE Architect/XML Schema 
Architect/J2EE Developer ||
 || Greg Kerdemelidis || Christchurch || Canterbury || New Zealand || J2EE 
architect / developer; Director of [http://www.genixsystems.com/ Genix Systems] 
||
 || Laurent Foret || Bordeaux || Aquitaine|| France || ||
+|| Adam Carbone || Middleboro || Massachusetts || USA || Senior Developer ||
+
 
 CategoryCategory


cvs commit: incubator-geronimo/applications - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:18:46

  incubator-geronimo/applications - New directory


cvs commit: incubator-geronimo/applications/jmxdebug - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:18:55

  incubator-geronimo/applications/jmxdebug - New directory


cvs commit: incubator-geronimo/applications/jmxdebug LICENSE NOTICE

2004-02-18 Thread geirm
geirm   2004/02/18 07:26:57

  Added:   applications/jmxdebug LICENSE NOTICE
  Log:
  ASL 2.0
  
  Revision  ChangesPath
  1.1  incubator-geronimo/applications/jmxdebug/LICENSE
  
  Index: LICENSE
  ===
  
   Apache License
 Version 2.0, January 2004
  http://www.apache.org/licenses/
  
 TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  
 1. Definitions.
  
License shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
  
Licensor shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
  
Legal Entity shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
control means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
  
You (or Your) shall mean an individual or Legal Entity
exercising permissions granted by this License.
  
Source form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
  
Object form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
  
Work shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
  
Derivative Works shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
  
Contribution shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, submitted
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as Not a Contribution.
  
Contributor shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
  
 2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
  
 3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You

cvs commit: incubator-geronimo/applications/jmxdebug maven.xml project.xml

2004-02-18 Thread geirm
geirm   2004/02/18 07:29:30

  Added:   applications/jmxdebug maven.xml project.xml
  Log:
  copied from the console-web.  The war postgoal needs to be fixed, I suppose.
  Just leaving there for reference
  
  Revision  ChangesPath
  1.1  incubator-geronimo/applications/jmxdebug/maven.xml
  
  Index: maven.xml
  ===
  ?xml version=1.0 encoding=UTF-8?
  
  !-- $Revision: 1.1 $ $Date: 2004/02/18 15:29:30 $ --
  
  project default=default
  xmlns:j=jelly:core
  xmlns:u=jelly:util
  xmlns:ant=jelly:ant
  
  goal name=default
  attainGoal name=war/
  /goal
  
  !-- generate packages ready to be deployed, if appropriate --
  postGoal name=war
  ant:available property=geronimoServicePresent 
file=${basedir}/src/etc/META-INF/geronimo-service.xml/
  j:if test=${geronimoServicePresent == 'true'}
  ant:jar 
destfile=${basedir}/target/${pom.artifactId}-package-${pom.currentVersion}.jar
  fileset dir=${basedir}/target 
includes=${pom.artifactId}-${pom.currentVersion}.jar/
  fileset dir=${basedir}/target includes=jmx-debug.war/
  
  fileset dir=${basedir}/src/etc 
includes=META-INF/geronimo-service.xml/
  j:forEach var=artifact items=${pom.artifacts}
  j:set var=dependency value=${artifact.dependency}/
  j:if test=${dependency.getProperty('package') == 
'true'}
  ant:echoProcessing dependency: 
${dependency.id}/ant:echo
  fileset file=${artifact.path}/
  /j:if
  /j:forEach
  /ant:jar
  ant:property name=jardir__ 
value=${maven.repo.local}/${pom.artifactDirectory}/jars/
  ant:mkdir dir=${jardir__}/
  ant:copy
  
file=${basedir}/target/${pom.artifactId}-package-${pom.currentVersion}.jar
  todir=${jardir__}
  overwrite=true
  /
  /j:if
  /postGoal
  
  !-- Remove the log files --
  goal name=clobber
  description=Removes all (non-repository installed) build generated 
files
  
  !-- Let clean:clean do some work first --
  attainGoal name=clean:clean/
  
  j:jelly xmlns=jelly:ant
  delete quiet=false failonerror=false
  fileset dir=${basedir}
  include name=maven.log/
  include name=velocity.log*/
  include name=junit*.properties/
  /fileset
  /delete
  /j:jelly
  /goal
  /project
  
  
  
  1.1  incubator-geronimo/applications/jmxdebug/project.xml
  
  Index: project.xml
  ===
  ?xml version=1.0 encoding=UTF-8?
  
  !-- $Revision: 1.1 $ $Date: 2004/02/18 15:29:30 $ --
  
  project
  pomVersion3/pomVersion
  extend${basedir}/../../etc/project.xml/extend
  
  !-- = --
  !-- Module Identification --
  !-- = --
  
  nameGeronimo :: JMX Debug Webapp/name
  idgeronimo-jmxdebug/id
  shortDescription/shortDescription
  description/description
  siteDirectory/siteDirectory
  distributionDirectory/distributionDirectory
  
  packageorg.apache.geronimo.jmxdebug.web/package
  currentVersionDEV/currentVersion
  
  
  !--  --
  !-- Dependencies --
  !--  --
  
  dependencies
  
  !-- Plugin Dependencies --
  
  !-- Module Dependencies --
  
  dependency
  groupIdgeronimo-spec/groupId
  artifactIdgeronimo-spec-servlet/artifactId
  versionDEV/version
  properties
  runtimefalse/runtime
  /properties
  /dependency
  
  
  !-- Thirdparty Dependencies --
  dependency
  groupIdmx4j/groupId
  artifactIdmx4j-jmx/artifactId
  versionSNAPSHOT/version
  urlhttp://mx4j.sourceforge.net/url
  properties
  runtimefalse/runtime
  /properties
  /dependency
  
  dependency
  idvelocity/id
  versiondep-1.4-rc1/version
  urlhttp://jakarta.apache.org/velocity//url
  properties
  runtimetrue/runtime
  war.bundletrue/war.bundle
  /properties
  /dependency
  
  /dependencies
  
  
  build
  resources
  resource
  directory${basedir}/src/java/directory
  includes
  include**/*.xml/include
  include**/*.properties/include
  include**/*.defaults/include

cvs commit: incubator-geronimo/applications/jmxdebug/src - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:29:42

  incubator-geronimo/applications/jmxdebug/src - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/webapp/WEB-INF web.xml

2004-02-18 Thread geirm
geirm   2004/02/18 07:31:08

  Added:   applications/jmxdebug/src/webapp index.vm mbeaninfo.vm
mbeanstack.vm nobean.vm
   applications/jmxdebug/src/webapp/WEB-INF web.xml
  Log:
  initial commit
  
  Revision  ChangesPath
  1.1  
incubator-geronimo/applications/jmxdebug/src/webapp/index.vm
  
  Index: index.vm
  ===
  html
  head
  titleGeronimo Debug Console/title
  /head
  
  body
  
  img src=images/geronimo_logo_console.gif border=0 alt=geronimo debug 
console/
  
  
  table border=1 width=100%
  tr
td valign=top width=20%
#parse('mbeanstack.vm')
/td
td valign=top
#parse($template)
/td
  /tr
  /table
  
  /body
  /html
  
  
  
  1.1  
incubator-geronimo/applications/jmxdebug/src/webapp/mbeaninfo.vm
  
  Index: mbeaninfo.vm
  ===
  
  bInfo for :/b $beanInfo.getCanonicalName()
  hr/
  
  table
  tr
td
  bDescription : /b
/td
td
  $!beanInfo.getDescription()
/td
  /tr
  tr
td
  bClassName : /b
/td
td
  $!beanInfo.getClassName()
/td
  /tr
  tr
td
  bDomain : /b
/td
td
  $!beanInfo.getDomain()
/td
  /tr
  /table
  
  h3Key Properties/h3
  
  #foreach($i in $beanInfo.getKeyProperties())
  $i.key = $i.value
  br/
  #end
  
  h3MBean Attributes/h3
  
  table
  
  tr
thName/th
thValue/th
thType/th
thR/th
thW/th
thIs/th
thDesc/th
  /tr
  
  #foreach($i in $beanInfo.getAttributes())
  
  tr
td$i.info.getName()/td
 td$i.value/td
 td$i.info.getType()/td
 td$i.info.isReadable()/td
 td$i.info.isWritable()/td
 td$i.info.isIs()/td
 td$!i.info.getDescription()/td
  /tr
  #end
  /table
  
  h3MBean Operations/h3
  
  
  table
  
  tr
thName/th
thReturn Type/th
  /tr
  
  #foreach($i in $beanInfo.getOperationInfo())
  tr
td$i.getName()/td
td$i.getReturnType()/td
  /tr
  #end
  /table
  
  
  
  1.1  
incubator-geronimo/applications/jmxdebug/src/webapp/mbeanstack.vm
  
  Index: mbeanstack.vm
  ===
  h3MBean List/h3
  
  hr/
  
  form method=GET action=index.vm
input class=textInput type=text size=30 name=ObjectNameFilter 
value=$!ObjectNameFilter/
input class=submit type=submit tabindex=1 value=Filter Output/
  
(a href=/geronimo-web-console/faq.jsp#objectName/help/a)
  /form
  
  #set($currentDomain = )
  #set($i = 0)
  #set($mbeanList = $mbctx.getMBeans($ObjectNameFilter))
  
  hr/
  
  bNumber of MBeans : /b $mbeanList.size()
  
  hr/
  
  #foreach($instance in $mbeanList)
  
 #set($name = $instance.getObjectName())
  
 #if (!($name.getDomain().equals($currentDomain)))
  
 #if ($i != 0)
   /ul
 #end
  
 #set($currentDomain = $name.getDomain())
 div class='paragraphHead'$currentDomain/div
 ul class='mbeanList'
 #end
  
 #set($cName = $name.getCanonicalName())
 #set($encodedName = $encoder.encode($cName, UTF-8))
 #set($where = $cName.indexOf(:) + 1)
 #set($output = $cName.substring($where))
  
 li
   a href=index.vm?ObjectNameFilter=$encoder.encode($ObjectNameFilter, 
UTF-8)MBeanName=$encodedName$output/a
 /li
  
 #set($i = $i + 1)
  #end
  
  /ul
  
  
  
  1.1  
incubator-geronimo/applications/jmxdebug/src/webapp/nobean.vm
  
  Index: nobean.vm
  ===
  choose an MBean
  
  
  1.1  
incubator-geronimo/applications/jmxdebug/src/webapp/WEB-INF/web.xml
  
  Index: web.xml
  ===
  ?xml version=1.0 encoding=ISO-8859-1?
  web-app xmlns=http://java.sun.com/xml/ns/j2ee;
   xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
   xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;
   version=2.4
  
  !-- Welcome File List --
  welcome-file-list
  welcome-fileindex.vm/welcome-file
  /welcome-file-list
  
servlet
  servlet-nameDebug/servlet-name
  
servlet-classorg.apache.geronimo.jmxdebug.web.velocity.DebugServlet/servlet-class
  load-on-startup1/load-on-startup
/servlet
  
servlet-mapping
  servlet-nameDebug/servlet-name
  url-pattern/*/url-pattern
/servlet-mapping
  /web-app
  
  
  


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:31:16

  incubator-geronimo/applications/jmxdebug/src/java/org - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:31:22

  incubator-geronimo/applications/jmxdebug/src/java/org/apache - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:31:28

  incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo - New 
directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:31:52

  
incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web
 - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/util ObjectInstanceComparator.java

2004-02-18 Thread geirm
geirm   2004/02/18 07:32:31

  Added:   applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/util
ObjectInstanceComparator.java
  Log:
  Norm's comparitor from the console-web, as I don't want to depend on
  that tree for now
  
  Revision  ChangesPath
  1.1  
incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/util/ObjectInstanceComparator.java
  
  Index: ObjectInstanceComparator.java
  ===
  /**
   *
   * Copyright 2004 The Apache Software Foundation
   *
   *  Licensed under the Apache License, Version 2.0 (the License);
   *  you may not use this file except in compliance with the License.
   *  You may obtain a copy of the License at
   *
   * http://www.apache.org/licenses/LICENSE-2.0
   *
   *  Unless required by applicable law or agreed to in writing, software
   *  distributed under the License is distributed on an AS IS BASIS,
   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *  See the License for the specific language governing permissions and
   *  limitations under the License.
   */
  
  package org.apache.geronimo.jmxdebug.util;
  
  import java.util.Comparator;
  import java.util.StringTokenizer;
  import javax.management.ObjectInstance;
  import javax.management.ObjectName;
  
  /**
   *  Taken from orignial console-web module
   *
   * This class sort ObjectNames by canonical name.  Unfortunately, it
   * will not place single token domains before multiple token domains of
   * the same type (foo.bar  foo at the moment).
   *
   * @version $Revision: 1.1 $ $Date: 2004/02/18 15:32:31 $
   */
  public class ObjectInstanceComparator implements Comparator {
  private static final int LEFT_GREATER = 1;
  private static final int RIGHT_GREATER = -1;
  private static final int EQUAL = 0;
  
  public int compare(Object o1, Object o2) {
  ObjectName left = ((ObjectInstance) o1).getObjectName();
  ObjectName right = ((ObjectInstance) o2).getObjectName();
  String leftName = left.getCanonicalName();
  String rightName = right.getCanonicalName();
  
  StringTokenizer leftDomainTokenizer =
  new StringTokenizer(leftName, .);
  
  StringTokenizer rightDomainTokenizer =
  new StringTokenizer(rightName, .);
  
  while (leftDomainTokenizer.hasMoreTokens()) {
  if (!rightDomainTokenizer.hasMoreTokens()) {
  return RIGHT_GREATER;
  }
  String leftToken = leftDomainTokenizer.nextToken();
  String rightToken = rightDomainTokenizer.nextToken();
  int comparison = leftToken.compareToIgnoreCase(rightToken);
  if (comparison != 0) {
  return comparison;
  }
  }
  
  // left has no more tokens
  if (rightDomainTokenizer.hasMoreTokens()) {
  return LEFT_GREATER;
  }
  // both ran out of tokens so they are equal
  return EQUAL;
  }
  }
  
  
  


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/beanlib - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:32:41

  
incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/beanlib
 - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/velocity - New directory

2004-02-18 Thread geirm
geirm   2004/02/18 07:32:47

  
incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/velocity
 - New directory


cvs commit: incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/beanlib MBeanInfoHelper.java MBeanServerHelper.java

2004-02-18 Thread geirm
geirm   2004/02/18 07:33:09

  Added:   
applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/beanlib
MBeanInfoHelper.java MBeanServerHelper.java
  Log:
  little helpers to deal w/ JMX stuff in Vel
  
  Revision  ChangesPath
  1.1  
incubator-geronimo/applications/jmxdebug/src/java/org/apache/geronimo/jmxdebug/web/beanlib/MBeanInfoHelper.java
  
  Index: MBeanInfoHelper.java
  ===
  /**
   *
   * Copyright 2004 The Apache Software Foundation
   *
   *  Licensed under the Apache License, Version 2.0 (the License);
   *  you may not use this file except in compliance with the License.
   *  You may obtain a copy of the License at
   *
   * http://www.apache.org/licenses/LICENSE-2.0
   *
   *  Unless required by applicable law or agreed to in writing, software
   *  distributed under the License is distributed on an AS IS BASIS,
   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   *  See the License for the specific language governing permissions and
   *  limitations under the License.
   */
  
  package org.apache.geronimo.jmxdebug.web.beanlib;
  
  import javax.management.MBeanInfo;
  import javax.management.ObjectInstance;
  import javax.management.MBeanServer;
  import javax.management.ObjectName;
  import javax.management.MalformedObjectNameException;
  import javax.management.ReflectionException;
  import javax.management.InstanceNotFoundException;
  import javax.management.IntrospectionException;
  import javax.management.MBeanAttributeInfo;
  import javax.management.MBeanOperationInfo;
  import javax.management.MBeanException;
  import javax.management.AttributeNotFoundException;
  import javax.management.RuntimeMBeanException;
  import java.util.Map;
  import java.util.List;
  import java.util.Hashtable;
  import java.util.Iterator;
  import java.util.ArrayList;
  import java.util.HashMap;
  
  /**
   * Simple helper bean for dealing with MBeanInfo.  Helps dodge such
   * wacky APIs like  HashMap getKeyPropertyLIst() and wrap in
   * convenient ways for working in Velocity
   * 
   * @version $Id: MBeanInfoHelper.java,v 1.1 2004/02/18 15:33:09 geirm Exp $
   */
  public class MBeanInfoHelper {
  
  ObjectName oName;
  MBeanInfo info;
  
  public MBeanInfoHelper(String name) {
  MBeanServer server = MBeanServerHelper.getMBeanServer();
  
  if (server != null) {
  init(server, name);
  }
  }
  
  void init(MBeanServer server, String name) {
  try {
  oName = new ObjectName(name);
  info = server.getMBeanInfo(oName);
  }
  catch (MalformedObjectNameException e) {
  e.printStackTrace();
  }
  catch (ReflectionException e) {
  e.printStackTrace();
  }
  catch (InstanceNotFoundException e) {
  e.printStackTrace();
  }
  catch (IntrospectionException e) {
  e.printStackTrace();
  }
  }
  
  public String getCanonicalName() {
  return oName.getCanonicalName();
  }
  
  public String getDomain() {
  return oName.getDomain();
  }
  
  /**
   * Returns the key properties and values a list of
   * maps, w/ 'key' and 'value' as entryies in each
   * map.  Makes easy in vel to do
   * #foreach($item in $list)
   * $item.key
   * $item.value
   * #end
   *
   * @return
   */
  public List getKeyProperties() {
  Hashtable h = oName.getKeyPropertyList();
  
  Iterator it = h.keySet().iterator();
  
  List l = new ArrayList();
  
  while (it.hasNext()) {
  String key = (String) it.next();
  
  Map m = new HashMap();
  
  m.put(key, key);
  m.put(value, h.get(key));
  
  l.add(m);
  }
  
  return l;
  }
  
  public String getDescription() {
  return info.getDescription();
  }
  
  public String getClassName() {
  return info.getClassName();
  }
  
  public List getAttributes() {
  
  List l = new ArrayList();
  MBeanAttributeInfo[] arr = info.getAttributes();
  MBeanServer server = MBeanServerHelper.getMBeanServer();
  
  for (int i = 0; i  arr.length; i++) {
  MBeanAttributeInfo foo = arr[i];
  Object value = null;
  try {
  value = server.getAttribute(oName, foo.getName());
  }
  catch (MBeanException e) {
  e.printStackTrace();
  }
  catch (AttributeNotFoundException e) {
  e.printStackTrace();
  }
  catch (InstanceNotFoundException e) {
  e.printStackTrace();
  }
  catch (ReflectionException 

cvs commit: incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/plugin DConfigBeanSupport.java

2004-02-18 Thread djencks
djencks 2004/02/18 12:55:31

  Modified:modules/deployment/src/java/org/apache/geronimo/deployment/plugin
DConfigBeanSupport.java
  Log:
  conform to spec
  
  Revision  ChangesPath
  1.8   +2 -2  
incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/plugin/DConfigBeanSupport.java
  
  Index: DConfigBeanSupport.java
  ===
  RCS file: 
/home/cvs/incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/plugin/DConfigBeanSupport.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DConfigBeanSupport.java   15 Feb 2004 17:46:21 -  1.7
  +++ DConfigBeanSupport.java   18 Feb 2004 20:55:31 -  1.8
  @@ -91,7 +91,7 @@
   }
   
   public String[] getXpaths() {
  -return new String[0];
  +return null;
   }
   
   public void removeDConfigBean(DConfigBean bean) throws 
BeanNotFoundException {
  
  
  


cvs commit: incubator-geronimo/specs/servlet project.xml

2004-02-18 Thread dain
dain2004/02/18 14:09:58

  Modified:modules/assembly project.xml
   modules/clustering project.xml
   modules/common project.xml
   modules/connector project.xml
   modules/console-web project.xml
   modules/core project.xml
   modules/jetty project.xml
   modules/kernel project.xml
   modules/naming project.xml
   modules/remoting project.xml
   modules/security project.xml
   modules/system project.xml
   modules/transaction project.xml
   sandbox/explorer project.xml
   sandbox/javamail project.xml
   sandbox/mail project.xml
   sandbox/twiddle project.xml
   sandbox/webdav project.xml
   specs/ejb project.xml
   specs/j2ee project.xml
   specs/j2ee-connector project.xml
   specs/j2ee-deployment project.xml
   specs/j2ee-jacc project.xml
   specs/j2ee-management project.xml
   specs/jms project.xml
   specs/jsp project.xml
   specs/jta project.xml
   specs/servlet project.xml
  Log:
  Removed all of the old unused properties from the dependancy list
  
  Revision  ChangesPath
  1.2   +1 -4  incubator-geronimo/modules/assembly/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/incubator-geronimo/modules/assembly/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml   17 Feb 2004 07:21:02 -  1.1
  +++ project.xml   18 Feb 2004 22:09:56 -  1.2
  @@ -46,7 +46,6 @@
   properties
   libtrue/lib
   deploytrue/deploy
  -moduletrue/module
   /properties
   /dependency
   
  @@ -69,7 +68,6 @@
   properties
   libtrue/lib
   deploytrue/deploy
  -moduletrue/module
   /properties
   /dependency
   
  @@ -87,7 +85,6 @@
   libtrue/lib
   servertrue/server
   deploytrue/deploy
  -moduletrue/module
   /properties
   /dependency
   
  
  
  
  1.5   +1 -7  incubator-geronimo/modules/clustering/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/incubator-geronimo/modules/clustering/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml   17 Feb 2004 07:26:46 -  1.4
  +++ project.xml   18 Feb 2004 22:09:56 -  1.5
  @@ -32,18 +32,12 @@
   artifactIdcommons-logging/artifactId
   version1.0.3/version
   urlhttp://jakarta.apache.org/commons/logging//url
  -properties
  -runtimefalse/runtime
  -/properties
   /dependency
   
   dependency
   groupIdmx4j/groupId
   artifactIdmx4j/artifactId
   versionSNAPSHOT/version
  -properties
  -runtimefalse/runtime
  -/properties
   /dependency
   
   /dependencies
  
  
  
  1.20  +1 -19 incubator-geronimo/modules/common/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/incubator-geronimo/modules/common/project.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- project.xml   17 Feb 2004 07:26:46 -  1.19
  +++ project.xml   18 Feb 2004 22:09:56 -  1.20
  @@ -32,9 +32,6 @@
   artifactIdcommons-logging/artifactId
   version1.0.3/version
   urlhttp://jakarta.apache.org/commons/logging/url
  -properties
  -runtimefalse/runtime
  -/properties
   /dependency
   
   dependency
  @@ -42,9 +39,6 @@
   artifactIdcommons-lang/artifactId
   versionSNAPSHOT/version
   urlhttp://jakarta.apache.org/commons/lang/url
  -properties
  -runtimetrue/runtime
  -/properties
   /dependency
   
   dependency
  @@ -52,9 +46,6 @@
   artifactIdcommons-collections/artifactId
   versionSNAPSHOT/version
   urlhttp://jakarta.apache.org/commons/collections/url
  -properties
  -runtimetrue/runtime
  -/properties
   /dependency
   
   dependency
  @@ -62,9 +53,6 @@
   artifactIdcommons-jexl/artifactId
   versionSNAPSHOT/version
   urlhttp://jakarta.apache.org/commons/jexl/url
  -properties
  -   

cvs commit: incubator-geronimo/etc maven.xml

2004-02-18 Thread dain
dain2004/02/18 14:11:28

  Modified:etc  maven.xml
  Log:
  All of our files use 4 space indentation
  
  Revision  ChangesPath
  1.29  +5 -5  incubator-geronimo/etc/maven.xml
  
  Index: maven.xml
  ===
  RCS file: /home/cvs/incubator-geronimo/etc/maven.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- maven.xml 12 Feb 2004 23:23:53 -  1.28
  +++ maven.xml 18 Feb 2004 22:11:28 -  1.29
  @@ -100,7 +100,7 @@
   fixcrlf srcdir=${srcdir} eol=lf eof=remove 
tab=remove tablength=4
   include name=**/*.java/
   /fixcrlf
  -fixcrlf srcdir=${basedir} eol=lf eof=remove 
tab=remove tablength=2
  +fixcrlf srcdir=${basedir} eol=lf eof=remove 
tab=remove tablength=4
   include name=**/*.xml/
   include name=**/*.html/
   /fixcrlf
  @@ -114,7 +114,7 @@
   include name=**/*.xml/
   include name=**/*.html/
   /fixcrlf
  -fixcrlf srcdir=${srcdir} eol=lf eof=remove 
tab=remove tablength=2
  +fixcrlf srcdir=${srcdir} eol=lf eof=remove 
tab=remove tablength=4
   include name=**/*.xml/
   include name=**/*.html/
   /fixcrlf
  @@ -123,14 +123,14 @@
   !-- Cleanse xdocs --
   j:set var=srcdir value=${basedir}/src/xdocs/
   u:available file=${srcdir}
  -fixcrlf srcdir=${srcdir} eol=lf eof=remove 
tab=remove tablength=2
  +fixcrlf srcdir=${srcdir} eol=lf eof=remove 
tab=remove tablength=4
   include name=**/*.xml/
   include name=**/*.html/
   /fixcrlf
   /u:available
   
   !-- Cleanse build files --
  -fixcrlf srcdir=. eol=lf tab=remove eof=remove 
tablength=2
  +fixcrlf srcdir=. eol=lf tab=remove eof=remove 
tablength=4
   include name=project.xml/
   include name=maven.xml/
   /fixcrlf
  
  
  


cvs commit: incubator-geronimo/specs/schema project.properties

2004-02-18 Thread dain
dain2004/02/18 14:16:33

  Modified:etc  global.properties
   modules/security project.properties
  Removed: modules/common project.properties
   modules/connector project.properties
   modules/core project.properties
   modules/kernel project.properties
   modules/maven-xmlbeans-plugin project.properties
   modules/transaction project.properties
   sandbox/explorer project.properties
   sandbox/twiddle project.properties
   sandbox/webdav project.properties
   sandbox/xbeans project.properties
   specs/schema project.properties
  Log:
  Moved declaration of remote repo to the global.properties file
  Removed all project.proterty files that are no longer needed
  
  Revision  ChangesPath
  1.7   +2 -2  incubator-geronimo/etc/global.properties
  
  Index: global.properties
  ===
  RCS file: /home/cvs/incubator-geronimo/etc/global.properties,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- global.properties 31 Jan 2004 16:12:18 -  1.6
  +++ global.properties 18 Feb 2004 22:16:33 -  1.7
  @@ -6,7 +6,7 @@
   # Build and Deployment
   #
   
  -maven.repo.remote=http://www.ibiblio.org/maven/
  +maven.repo.remote=http://www.apache.org/~dain/maven, 
http://www.ibiblio.org/maven/
   
   maven.compile.source=1.4
   maven.compile.target=1.4
  
  
  
  1.3   +1 -2  incubator-geronimo/modules/security/project.properties
  
  Index: project.properties
  ===
  RCS file: /home/cvs/incubator-geronimo/modules/security/project.properties,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.properties17 Feb 2004 00:05:38 -  1.2
  +++ project.properties18 Feb 2004 22:16:33 -  1.3
  @@ -2,5 +2,4 @@
   ## $Revision$ $Date$
   ##
   
  -maven.repo.remote=http://www.apache.org/~dain/maven, 
http://www.ibiblio.org/maven
   
maven.junit.jvmargs=-Djava.security.auth.login.config=src/test-data/data/login.config
  
  
  


cvs commit: incubator-geronimo/etc/xdoclet/template/jmx geronimo-mbeaninfo.xdt mbean.xdt

2004-02-18 Thread dain
dain2004/02/18 14:50:42

  Removed: etc/xdoclet/template/jmx geronimo-mbeaninfo.xdt mbean.xdt
  Log:
  XDoclet is no longer used in our build