RE: Jakarta stats

2006-01-22 Thread Mike Braden
I guess I would fall in this category, too.

I would still like to contribute at some point and have been following a few
lists, but I haven't had the time to actively commit.

Mike.
--
Mike Braden 

-Original Message-
From: Alex Chaffee [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 14, 2006 4:16 PM
To: Jakarta General List
Subject: Re: Jakarta stats

I've got interest but not activity so... Emeritize me!

(I enjoy lurking but haven't committed in 2 years. Haven't even checked to
see if I have a svn account yet :-))

 - Alex Chaffee ([EMAIL PROTECTED])


(from http://www.apache.org/foundation/glossary.html)
 Emeritus
  A term used to formally designate someone as no longer active, 
 but still entitled to all of the rights and privileges of the 
 position. For example, an ASF member who hasn't attended any 
 membership meetings for a long time is declared emeritus; someone who 
 no longer has time to work on a particular project may declare itself 
 emeritus. Emeritus status indicates interest but not activity, as 
 opposed to having resigned.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [ANNOUNCEMENT] Jakarta Tomcat 4.1.31 Stable Released

2004-10-12 Thread Braunstein, Mike \(GE Healthcare\)
fyi

 -Original Message-
 From: Keith Wannamaker [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, October 12, 2004 10:16 AM
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: [ANNOUNCEMENT] Jakarta Tomcat 4.1.31 Stable Released
 
 
 The Jakarta Tomcat team is pleased to announce availability of
 Jakarta Tomcat 4.1.31, available for download:
 
 http://jakarta.apache.org/site/binindex.cgi
 
 This is a maintenance release which incorporates a number of bug
 fixes which were backported from Tomcat 5.  More information is 
 available in the release notes,
 
 http://www.apache.org/dist/jakarta/tomcat-4/v4.1.31/RELEASE-NOTES
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



New project proposal -- Html4Java

2003-11-17 Thread Mike Goudie
Hello,
I would like to start a new project at Jakarta called HTML4Java. The result of the new 
project will create a set of controls based on servlets and JSP pages - similar to 
Swing/AWT. HTML4Java is a server-side design-oriented page layout written and rendered 
in Java. Each HTML command is a class that is rendered, eliminating PrintWriter's and 
raw html code in your servlet. The rendering process uses css and has built in 
features to deal with multiple browsers.

I'm currently the sole developer and not in a Jakarta subproject or other open source 
initiative. I do believe that this would make an excellent project that the community 
would embrace.

Can I get approval to start this project at Jakarta?

Thank-you,
Mike


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [Proposal] HiveMind Service Framework

2003-11-11 Thread Mike
Please turn off your receipt request when posting.

::-Original Message-
::From: Nayak, Prashant [mailto:[EMAIL PROTECTED]
::Sent: Tuesday, November 11, 2003 12:35 PM
::To: Jakarta General List
::Subject: [Proposal] HiveMind Service Framework
::
::
::
::Proposal for the HiveMind Project
::
::(0) Rationale
::
::HiveMind is a simple framework for creating pluggable, configurable,
::reusable services. 
::
::Simple: HiveMind is a way to create a network of services in terms of
::Java interfaces and classes; it cherry picks the most useful ideas from
::Service Oriented Architectures such as J2EE, JMX and SOAP, but removes
::the aspects that are typically overkill for most applications, such as
::service remoteability and language neutrality. HiveMind creates a
::natural network of related services and configuration data, all
::operating within a single JVM.
::
::Pluggable: HiveMind enforces a complete separation of service definition
::and implementation. This is manifested by a division of services into an
::interface definition and a service implementation as well as a split
::between defining a service (as part of a HiveMind module) and providing
::the implementation of that service (potentially, in a different module).
::
::Configurable: HiveMind integrates a service oriented architecture to a
::sophisticated configuration architecture; the configuration architecture
::is adapted from the Eclipse plug-in model, wherein modules may define
::configuration extension points and multiple modules may provide
::contributions to those extension points.
::
::Reusable: HiveMind is a framework and container, but not an application.
::The HiveMind framework and the services it provides may be easily
::combined with application-specific services and configurations for use
::in disparate applications.
::
::The API for HiveMind allows thread-safe, easy access to services and
::configurations with a minimal amount of code. The value-add for HiveMind
::is not just runtime flexibility: it is overall developer productivity.
::HiveMind systems will entail less code; key functionality that is
::frequently an after-thought, such as parsing of XML configuration files,
::logging of method invocations, and lazy creation of services, is handled
::by the HiveMind framework in a consistent, robust, and well-documented
::manner.
::
::HiveMind fits into an area that partially overlaps the Apache Avalon
::project, with significant differences. HiveMind's concept of a
::distributed configuration is unique among the available service
::microkernel's (Avalon, Keel, Spring, Picocontainer, etc.). Avalon is
::firmly rooted in a type-1 inversion of control pattern (whereby services
::must explicitly, in code, resolve dependencies between each other using
::a lookup pattern similar to JNDI). HiveMind uses a mix of type-2 and
::type-3 IoC, whereby the framework (acting as container) creates
::connections between services by setting properties of the services
::(type-2) or making use of particular constructors for the services
::(type-3).
::
::HiveMind represents a generous donation of code to the ASF by WebCT
::(http://www.webct.com). HiveMind originated from internal requirements
::for a flexible, loosely-coupled configuration management and services
::framework for WebCT's industry-leading flagship enterprise e-learning
::product, Vista. Several individuals in WebCT's research and development
::team in addition to Mr. Howard Lewis Ship contributed to the
::requirements and concepts behind HiveMind's current set of functionality
::including Martin Bayly, Diane Bennett, Bill Bilic, Michael Kerr,
::Prashant Nayak, Bill Richard and Ajay Sharda. HiveMind is already in use
::as a significant part of Vista.
::
::(1) Scope of the package
::
::The package shall entail a core framework JAR (containing essential
::classes and services), a standard library JAR (containing generically
::useful services), along with ancillary artifacts such as Maven plug-ins
::and, of course, documentation, all distributed under the Apache Software
::License.
::
::(1.1) Interaction with other packages
::
::HiveMind has dependencies on several standard commons packages,
::including: commons-lang, commons-beanutils, commons-collections and
::commons-logging.
::
::HiveMind makes use of the Javassist bytecode generation library, which
::is available under the MPL (Mozilla public license).
::
::(2) Identify the initial source for the package
::
::The initial code base has been developed by Howard M. Lewis Ship within
::the Jakarta Commons incubator.
::
::http://jakarta.apache.org/commons/sandbox/hivemind
::
::(2.1) Identify the base name for the package
::
::org.apache.hivemind
::
::Note: the current code base reflects an alternate package name,
::org.apache.commons.hivemind.  Subsequent research has shown that
::HiveMind is not a suitable candidate for the Jakarta Commons. The
::existing code base will be migrated to the new package during the
::transition out of the 

RE: vcal

2003-10-11 Thread Mike
Danny,

I don't think this is the project you mentioned but I believe that
Periodicity:
http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/periodicity/

grew out of the original java.apache.iCalendar.  I believe monitors the
developer on this project monitors the jakarta-commons list occasionally.

Hope this helps,

Mike


::-Original Message-
::From: Danny Angus [mailto:[EMAIL PROTECTED]
::Sent: Saturday, October 11, 2003 1:55 PM
::To: Jakarta General List
::Subject: vcal
::
::
::Hi,
::
::Some time ago there was a discussion about some former
::java.apache Icalendar
::code, which wasn't being maintained.
::I found it then but I can't seem to find it anymore, has it been cleaned
::out when cvs moved?
::
::Anyone know anything about it?
::
::d.
::
::
::-
::To unsubscribe, e-mail: [EMAIL PROTECTED]
::For additional commands, e-mail: [EMAIL PROTECTED]
::


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Maven Beta 2 Released

2002-03-30 Thread Mike Hogan

Maven looks very useful and I like the direction its going.  Please take a
look at
http://sourceforge.net/tracker/?atid=387260group_id=26444func=browse for
other and similar ideas.

Cheers,
Mike.
- Original Message -
From: Jason van Zyl [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Saturday, March 30, 2002 3:37 AM
Subject: Maven Beta 2 Released


 The Maven team is pleased to announce the Beta 2 release!

 http://jakarta.apache.org/turbine/maven/

 Maven is a Java project management and project comprehension tool. Maven
 is based on the concept of a project object model (POM) in that all the
 artifacts produced by Maven are a result of consulting a well defined
 model for your project. Builds, documentation, source metrics, and
 source cross-references are all controlled by your POM.

 Maven has many goals, but in a nutshell Maven aims to make the
 developer's life easier by providing a well defined project structure,
 well defined development processes to follow, and a coherent body of
 documentation that keeps your developers and clients apprised of what's
 happening with your project. Maven alleviates a lot of what most
 developers consider drudgery and lets them get on with the task at hand.
 This is essential in OSS projects where there aren't many people
 dedicated to the task of documenting and propagating the critical
 information about your project which is necessary in order to attract
 potential new developers and clients.
 [EOB]



 --
 jvz.

 Jason van Zyl
 [EMAIL PROTECTED]

 http://tambora.zenplex.org


 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]





--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Project idea

2001-06-09 Thread Mike Dougherty

Cory L Hubert wrote:
 
 Why not. A relational/ohject database.   One that may be queried with
 standard SQL and OQL.   It should probably work with the up and coming Sun
 Microsystems JDO spec.
 
 -Original Message-
 From: Tal Dayan [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, June 09, 2001 5:11 PM
 To: [EMAIL PROTECTED]
 Subject: Project idea
 
 Does Jakarta has anything close to an embedded pure Java
 relational data base ?
 
 If not, a project like that will be a great
 addition to the Jakarta family.
 
 Tal
 

If you are looking for good database engines you can check:

HypersonicSQL: http://sourceforge.net/projects/hsql/
ozone: http://www.ozone-db.org

I'm not sure how the current project teams would feel about bringing
them under Apache. I don't even know what the process is to even try and
find out. So that's about all the help I can offer.

/mike


-- 
**
 Mike Dougherty -- Java Software Engineer
**

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]