cvs commit: jakarta-site2/xdocs/site/news 200206.xml 200208.xml 200210.xml 200212.xml

2003-06-12 Thread tetsuya
tetsuya 2003/06/12 01:28:23

  Modified:docs/site faqs.html idedevelopers.html news-2001.html
news-2002.html news.html
   docs/site/news 200206.html 200208.html 200210.html
200212.html
   xdocs/site faqs.xml idedevelopers.xml news-2001.xml
news-2002.xml news.xml
   xdocs/site/news 200206.xml 200208.xml 200210.xml 200212.xml
  Log:
  Refactored: old url to new url to fit to reorg (e.g. jakarta/ant - ant.apache)
  
  Revision  ChangesPath
  1.76  +1 -1  jakarta-site2/docs/site/faqs.html
  
  Index: faqs.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/faqs.html,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- faqs.html 8 Jun 2003 04:05:09 -   1.75
  +++ faqs.html 12 Jun 2003 08:28:14 -  1.76
  @@ -220,7 +220,7 @@
 trtd
   blockquote
   ul
  -   lia 
href=http://jakarta.apache.org/avalon/code-standards.html;Avalon/a/li
  +   lia href=http://avalon.apache.org/code-standards.html;Avalon/a/li
  lia 
href=http://jakarta.apache.org/cactus/coding_conventions.html;Cactus/a/li
  lia href=http://jakarta.apache.org/jetspeed/site/code-standards.html; 
/Jetspeed/li
  lia 
href=http://jakarta.apache.org/turbine/common/code-standards.html;Turbine/a/li
  
  
  
  1.25  +4 -4  jakarta-site2/docs/site/idedevelopers.html
  
  Index: idedevelopers.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/idedevelopers.html,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- idedevelopers.html8 Jun 2003 04:05:09 -   1.24
  +++ idedevelopers.html12 Jun 2003 08:28:14 -  1.25
  @@ -234,7 +234,7 @@
first.  There is nothing more frustrating than a hard to kill bug that
is actually fixed just someone has the old version in their classpath.
So whether you're setting it in your IDE's library manager or at the
  - command line, shell script, or through a 
href=http://jakarta.apache.org/ant;your Ant build tool/a: make sure you know what 
is in your classpath and
  + command line, shell script, or through a href=http://ant.apache.org;your 
Ant build tool/a: make sure you know what is in your classpath and
that only what you need is there.
  /p
   pTODO: IDE specific instructions 
for JBuilder, Netbeans and Eclipse./p
  @@ -265,7 +265,7 @@
rigid in the source directory structures they allow, some are breaking this
presupposition, but some of the more popular ones still haven't).  There
is a tool which meets all of these requirements and is the Cat's Meow too.
  - Its called a href=http://jakarta.apache.org/ant;Ant/a.
  + Its called a href=http://ant.apache.org;Ant/a.
  /p
   p
Ant started out as the build tool for the popular servlet engine
  @@ -280,7 +280,7 @@
have GUIs to abstract you from the build file, however, you will need
to acquire some familiarity with Ant over time as these tools often
break with the complex build procedures often required.  Read more about
  - Ant a href=http://jakarta.apache.org/ant;here/a, a 
href=http://www.amazon.com/exec/obidos/tg/detail/-/1930110588/qid=1038156813/sr=8-4/ref=sr_8_4/102-7589210-1797738?v=glanceamp;s=booksamp;n=507846#product-details;here/a
 and a 
href=http://www.amazon.com/exec/obidos/tg/detail/-/0596001843/qid=1038156852/sr=1-3/ref=sr_1_3/102-7589210-1797738?v=glanceamp;s=books;here/a.
  + Ant a href=http://ant.apache.org;here/a, a 
href=http://www.amazon.com/exec/obidos/tg/detail/-/1930110588/qid=1038156813/sr=8-4/ref=sr_8_4/102-7589210-1797738?v=glanceamp;s=booksamp;n=507846#product-details;here/a
 and a 
href=http://www.amazon.com/exec/obidos/tg/detail/-/0596001843/qid=1038156852/sr=1-3/ref=sr_1_3/102-7589210-1797738?v=glanceamp;s=books;here/a.
  /p
   /blockquote
   /p
  @@ -352,7 +352,7 @@
[name of IDE usually JBuilder] to run them in the debugger?  The answer
is often: you don't.  This certainly might make sense for apps or applets,
but most applications these days are run in a servlet engine or other
  - container such as a 
href=http://jakarta.apache.org/avalon/phoenix/index.html;Phoenix/a. For these: you 
set the sourcepath, you put the binaries in the classpath
  + container such as a 
href=http://avalon.apache.org/phoenix/index.html;Phoenix/a. For these: you set the 
sourcepath, you put the binaries in the classpath
but you debug the code remotely.  Meaning the code runs in tomcat or
whatever and you run the debugger against it.  

Re: Gump and Unicode

2003-06-12 Thread Jordi Salvat i Alabart
I once had the same problem with the JMeter sources, tried to add that 
encoding attribute to the java task, and it didn't help. It was 
helping on my platform, but not on Gump. I never learned why.

If you attempt it here, I'll be interested to know if it works.

Salut,

Jordi.

En/na Conor MacNeill ha escrit:
On Thu, 12 Jun 2003 01:05 am, Brian Ewins wrote:

Use the unicode escapes rather than the character literals in the code?
You won't get DoubleMetaphone.java to compile unless you pass the
encoding flag to javac.
The two letters appear to be \u00C7, \u00D1 - capital C with a cedilla
and capital N with a tilde? Putting
case '\u00C7':
case '\u00D1':
in the appropriate places should fix things.


Or add the encoding attribute to the javac task. The file may remain more 
readable that way, at least on some platforms. I'm not sure if that is 
possible from a Maven generated build file.

Just to be clear this is not a Gump issue - I think the problem would appear 
whenever you try to compile on any platform with a different default 
encoding.

Conor

-
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: Gump and Unicode

2003-06-12 Thread Tetsuya Kitahata

Tim,

I looked at the code in codec.

It is obvious that GUMP error would occur the same as 
Jakarta-Jetspeed and other projects experienced once.
(Also, in my Japanese environment, it is garbled character)
This means that we Japanese can not build codec. (Default
codepage is different) ... Needless to say, I failed.

Please change the Ntilde etc. to \u*** style.
(just use native2ascii in your env)

Sincerely,

-- Tetsuya ([EMAIL PROTECTED])

-

On 11 Jun 2003 09:37:59 -0500
(Subject: Gump and Unicode)
Tim O'Brien [EMAIL PROTECTED] wrote:

 commons-codec fails to compile in Gump because it contains an Ntilde
 among other characters used in languages other than English.  
 
 Any ideas?

-
Tetsuya Kitahata --  Terra-International, Inc.
E-mail: [EMAIL PROTECTED] : [EMAIL PROTECTED]
http://www.terra-intl.com/
(Apache Jakarta Translation, Japanese)
http://jakarta.terra-intl.com/



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



Re: Gump and Unicode

2003-06-12 Thread Santiago Gala
Sam Ruby escribió:
Santiago Gala wrote:

Conor MacNeill escribió:

(...)

Just to be clear this is not a Gump issue - I think the problem would 
appear whenever you try to compile on any platform with a different 
default encoding.


Yes. For this reason, I'm encouraging people to start using utf-8 as 
default encoding in any server platform. This brings a whole new set 
of issues :-( but at least you can represent all Unicode characters, 
and ASCII maps transparently. This is specially important fot 
multilingual portals, for instance.


Pardon my ignorance, but can you tell me how to do this?  The primary 
Gump machine is Redhat linux, many of the others are Solaris.

Under redhat, /etc/sysconfig/i18n contains definitions for the locale 
variables, sourced during system initialization. AFAIK, LC_CTYPE is the 
one involving numeric/alpha mappings, lower to upper mappings, and 
byte/character conversion, and LC_COLLATE the one involving character 
sort order.

export LC_ALL=en_US.UTF-8 in /etc/.profile (or .bash_profile... 
depending on shell) of the user under which the processes run should map 
all the variables to the used locale. locale -a should give a list of 
the available locales, which come in packages called locales-xx-version, 
or locales-version for the base one. If there are processes spawned by, 
say, an ant task, they will take whatever is in the environment at the 
moment.

I'm not Solaris Expert, so I can't comment on this.

- Sam Ruby

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


--
Santiago Gala
High Sierra Technology, S.L. (http://hisitech.com)
http://memojo.com?page=SantiagoGalaBlog


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


cvs commit: jakarta-site2/xdocs index.xml

2003-06-12 Thread danny
danny   2003/06/12 04:26:20

  Modified:docs/site elsewhere.html
   xdocs/site elsewhere.xml
   docs index.html
   xdocsindex.xml
  Log:
  Elsewhere news item. Articles on James published on IBM develoeprWorks.
  
  Revision  ChangesPath
  1.48  +15 -2 jakarta-site2/docs/site/elsewhere.html
  
  Index: elsewhere.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/elsewhere.html,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- elsewhere.html8 Jun 2003 04:05:09 -   1.47
  +++ elsewhere.html12 Jun 2003 11:26:19 -  1.48
  @@ -178,7 +178,18 @@
 /td/tr
 trtd
   blockquote
  -a name=20030528.1
  +a name=20030612.1
  +h312 June 2003 - James featured on IBM developerWorks/h3
  +/a
  +p
  +Claude Duguay has written two excellent articles on a 
href=http://james.apache.org/;James/a for
  +a href=http://www.ibm.com/developerworks/;IBM developerWorks/abr /
  +[a 
href=http://www-106.ibm.com/developerworks/java/library/j-james1.html;article1/a]
  +An introduction to Apache's James enterprise e-mail server.br /
  +[a 
href=http://www-106.ibm.com/developerworks/java/library/j-james2.html;article2/a]
  +Build e-mail based applications with Matchers and Mailets.
  +/p
  +a name=20030528.1
   h328 May 2003 - Apache 2.0.46 released/h3/a
   p
  The Apache Software Foundation and the Apache HTTP Server Project are
  @@ -207,7 +218,9 @@
   p
   See a href=http://james.apache.org/changelog.html;changelog/a for more details.
   /p
  -pDownload James in a 
href=http://jakarta.apache.org/site/binindex.cgi;binary/a or a 
href=http://jakarta.apache.org/site/sourceindex.cgi;source/a form./p
  +pDownload James in 
  +a href=http://jakarta.apache.org/site/binindex.cgi;binary/a or
  +a href=http://jakarta.apache.org/site/sourceindex.cgi;source/a form./p
   hr size=1 noshade=noshade /
   a name=20030505.1
   h35 May 2003 - Scarab 1.0 Beta 14 Released By Tigris.org/h3
  
  
  
  1.23  +17 -3 jakarta-site2/xdocs/site/elsewhere.xml
  
  Index: elsewhere.xml
  ===
  RCS file: /home/cvs/jakarta-site2/xdocs/site/elsewhere.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- elsewhere.xml 6 Jun 2003 03:45:32 -   1.22
  +++ elsewhere.xml 12 Jun 2003 11:26:20 -  1.23
  @@ -10,6 +10,20 @@
   body
   
   section name=Elsewhere ...
  +
  +a name=20030612.1
  +h312 June 2003 - James featured on IBM developerWorks/h3
  +/a
  +p
  +Claude Duguay has written two excellent articles on a 
href=http://james.apache.org/;James/a for
  +a href=http://www.ibm.com/developerworks/;IBM developerWorks/abr/
  +[a 
href=http://www-106.ibm.com/developerworks/java/library/j-james1.html;article1/a]
  +An introduction to Apache's James enterprise e-mail server.br/
  +[a 
href=http://www-106.ibm.com/developerworks/java/library/j-james2.html;article2/a]
  +Build e-mail based applications with Matchers and Mailets.
  +/p
  +
  +
   a name=20030528.1
   h328 May 2003 - Apache 2.0.46 released/h3/a
   p
  @@ -40,9 +54,9 @@
   p
   See a href='http://james.apache.org/changelog.html'changelog/a for more details.
   /p
  -pDownload James in a
  -href=http://jakarta.apache.org/site/binindex.cgi;binary/a or a
  -href=http://jakarta.apache.org/site/sourceindex.cgi;source/a form./p
  +pDownload James in 
  +a href=http://jakarta.apache.org/site/binindex.cgi;binary/a or
  +a href=http://jakarta.apache.org/site/sourceindex.cgi;source/a form./p
   
   hr size=1 noshade=noshade /
   a name=20030505.1
  
  
  
  1.252 +5 -5  jakarta-site2/docs/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/index.html,v
  retrieving revision 1.251
  retrieving revision 1.252
  diff -u -r1.251 -r1.252
  --- index.html9 Jun 2003 19:13:01 -   1.251
  +++ index.html12 Jun 2003 11:26:20 -  1.252
  @@ -226,18 +226,18 @@
   lia href=site/news.html#20030602.102 June 2003 - b Tapestry 
3.0-beta-1 Released/b/a/li
   lia href=site/news.html#20030529.129 May 2003 - b 
Announcing Jakarta Tapestry/b/a/li
   lia href=site/news.html#20030525.125 May 2003 - b 
HttpClient 2.0 Beta 1 Released/b/a/li
  -lia 

Re: James featured on IBM dev works

2003-06-12 Thread Tetsuya Kitahata

Please accept my sincere congratulations on this article.

Your face beamed with delight, I think.

Sincerely,

-- Tetsuya ([EMAIL PROTECTED])

-

On Thu, 12 Jun 2003 11:46:12 +0100
(Subject: James featured on IBM dev works)
Danny Angus [EMAIL PROTECTED] wrote:

 
 Claude Duguay has submited articles about James to IBM Developer works, he says..
 
 Feature articles about James (by me ;-) published yesterday on IBM's
 DeveloperWorks::
 
 Feature entry point (click on the email image):
 
 http://www-106.ibm.com/developerworks/
 
 Direct links to articles:
 
 http://www-106.ibm.com/developerworks/java/library/j-james1.html
 
 http://www-106.ibm.com/developerworks/java/library/j-james2.html

-
Tetsuya Kitahata --  Terra-International, Inc.
E-mail: [EMAIL PROTECTED] : [EMAIL PROTECTED]
http://www.terra-intl.com/


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



Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Vincent Massol
Hi,

As part of Cactus, we have developed 2 Eclipse plugins. One of them is a
generic webapp plugin. We would like to extract this from the Cactus CVS
and let others benefit from it. 

However, I'm not sure where we should put this new project. 

Obviously one choice is to put it on SourceForge. Before doing this, I
wanted to let us decide first if we wanted to have a place in Apache
land where we would put such IDE plugins.

I think more and more the focus in java land is on usability. Be it
Tomcat, Avalon, Maven, etc, they will all have user-oriented front ends
to increase user productivity. One obvious place is within their own
repository. The real question is about shared plugins, like the webapp
one, which would benefit Tomcat users as well as Cactus ones.

Any idea?

Note: There's no hurry. Just testing the water... :-)

Thank you
-Vincent


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



Re: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Sam Ruby
Vincent Massol wrote:
Hi,

As part of Cactus, we have developed 2 Eclipse plugins. One of them is a
generic webapp plugin. We would like to extract this from the Cactus CVS
and let others benefit from it. 

However, I'm not sure where we should put this new project. 

Obviously one choice is to put it on SourceForge. Before doing this, I
wanted to let us decide first if we wanted to have a place in Apache
land where we would put such IDE plugins.
evil-grin
Have you considered java.net?
/evil-grin
As you are an established member of this community, if there is a set of 
others who are also interested in participating, I certainly don't see 
why this code couldn't remain here.  Creating a new cvs tree is easy to 
do, all it requires is PMC approval.

You might also want to consider contributing this to Eclipse.

I think more and more the focus in java land is on usability. Be it
Tomcat, Avalon, Maven, etc, they will all have user-oriented front ends
to increase user productivity. One obvious place is within their own
repository. The real question is about shared plugins, like the webapp
one, which would benefit Tomcat users as well as Cactus ones.
Any idea?

Note: There's no hurry. Just testing the water... :-)

Thank you
-Vincent
-
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: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread otisg
Since Eclipse folks have a directory of Eclipse Plugins already,
that is where I would put it.  That is where Eclipse developers
will look for it.  They will not necessarily be using Tomcat or
Cactus, for instance.

Otis





Get your own 800 number
Voicemail, fax, email, and a lot more
http://www.ureach.com/reg/tag


 On Thu, 12 Jun 2003, Vincent Massol ([EMAIL PROTECTED])
wrote:

 Hi,
 
 As part of Cactus, we have developed 2 Eclipse plugins. One of
them is a
 generic webapp plugin. We would like to extract this from the
Cactus CVS
 and let others benefit from it. 
 
 However, I'm not sure where we should put this new project. 
 
 Obviously one choice is to put it on SourceForge. Before doing
this, I
 wanted to let us decide first if we wanted to have a place in
Apache
 land where we would put such IDE plugins.
 
 I think more and more the focus in java land is on usability.
Be it
 Tomcat, Avalon, Maven, etc, they will all have user-oriented
front ends
 to increase user productivity. One obvious place is within
their own
 repository. The real question is about shared plugins, like
the webapp
 one, which would benefit Tomcat users as well as Cactus ones.
 
 Any idea?
 
 Note: There's no hurry. Just testing the water... :-)
 
 Thank you
 -Vincent
 
 

-
 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]



IBM dW: Digester + Lucene

2003-06-12 Thread otisg
IBM developerWorks published an article featuring 2 Jakarta
projects: Commons Digester and Lucene.

  http://www-106.ibm.com/developerworks/java/library/j-lucene/

Otis



Get your own 800 number
Voicemail, fax, email, and a lot more
http://www.ureach.com/reg/tag

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



Re: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Andrus Adamchik
 Since Eclipse folks have a directory of Eclipse Plugins already,
 that is where I would put it.  That is where Eclipse developers
 will look for it.  They will not necessarily be using Tomcat or
 Cactus, for instance.

 Otis

AFAIK, Eclipse website doesn't really host plugin projects. E.g. an
Eclipse plugin for WebObjects, developed inside the ObjectStyle community
( http://objectstyle.org/woproject/ ), is present on Eclipse website at

  http://www.eclipse.org/community/plugins.html

But other than that has no affiliation with Eclipse. So pointing to
Eclipse doesn't solve Vincent's problem. Looks like he is really looking
for a place to develop a community around the plugin project. IMO this is
a good standalone project idea. So it is a choice between Apache and
SourceForge I guess.

Andrus Adamchik

---
ORM + GUI tools - http://objectstyle.org/cayenne/




  On Thu, 12 Jun 2003, Vincent Massol ([EMAIL PROTECTED])
 wrote:

 Hi,

 As part of Cactus, we have developed 2 Eclipse plugins. One of
 them is a
 generic webapp plugin. We would like to extract this from the
 Cactus CVS
 and let others benefit from it.

 However, I'm not sure where we should put this new project.

 Obviously one choice is to put it on SourceForge. Before doing
 this, I
 wanted to let us decide first if we wanted to have a place in
 Apache
 land where we would put such IDE plugins.

 I think more and more the focus in java land is on usability.
 Be it
 Tomcat, Avalon, Maven, etc, they will all have user-oriented
 front ends
 to increase user productivity. One obvious place is within
 their own
 repository. The real question is about shared plugins, like
 the webapp
 one, which would benefit Tomcat users as well as Cactus ones.

 Any idea?

 Note: There's no hurry. Just testing the water... :-)

 Thank you
 -Vincent





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



Re: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Brian McCallister
 So it is a choice between Apache and SourceForge I guess.

oo oo oo oo, or java.net

Actually, at first glance it seems to be quite a bit slicker than 
SourceForge at least (not that being slicker than SF in its current 
state is terribly difficult).

=)

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


Re: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Brett Porter
Perhaps there should be a Jakarta-IDE project of some description that 
contains plugins for any number of IDEs (Netbeans, Eclipse, IntelliJ) 
that relate to Jakarta projects.

This could be a home for:
* Velocity: http://sourceforge.net/projects/veloedit/
* Maven IDE: http://sourceforge.net/projects/mevenide/
* the Struts IDE plugins
And I've seen the cactus on already listed here:
http://eclipse-plugins.2y.net/eclipse/plugins.jsp
My 2c.

Cheers,
Brett
Andrus Adamchik wrote:
Since Eclipse folks have a directory of Eclipse Plugins already,
that is where I would put it.  That is where Eclipse developers
will look for it.  They will not necessarily be using Tomcat or
Cactus, for instance.
Otis


AFAIK, Eclipse website doesn't really host plugin projects. E.g. an
Eclipse plugin for WebObjects, developed inside the ObjectStyle community
( http://objectstyle.org/woproject/ ), is present on Eclipse website at
  http://www.eclipse.org/community/plugins.html

But other than that has no affiliation with Eclipse. So pointing to
Eclipse doesn't solve Vincent's problem. Looks like he is really looking
for a place to develop a community around the plugin project. IMO this is
a good standalone project idea. So it is a choice between Apache and
SourceForge I guess.
Andrus Adamchik

---
ORM + GUI tools - http://objectstyle.org/cayenne/



 On Thu, 12 Jun 2003, Vincent Massol ([EMAIL PROTECTED])
wrote:

Hi,

As part of Cactus, we have developed 2 Eclipse plugins. One of
them is a

generic webapp plugin. We would like to extract this from the
Cactus CVS

and let others benefit from it.

However, I'm not sure where we should put this new project.

Obviously one choice is to put it on SourceForge. Before doing
this, I

wanted to let us decide first if we wanted to have a place in
Apache

land where we would put such IDE plugins.

I think more and more the focus in java land is on usability.
Be it

Tomcat, Avalon, Maven, etc, they will all have user-oriented
front ends

to increase user productivity. One obvious place is within
their own

repository. The real question is about shared plugins, like
the webapp

one, which would benefit Tomcat users as well as Cactus ones.

Any idea?

Note: There's no hurry. Just testing the water... :-)

Thank you
-Vincent



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
Web Developer
f2 network ~ everything essential
02 8596 4437
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Is there a place for Eclipse plugins in Apache/Jakarta land?

2003-06-12 Thread Jim Moore
It would seem to me that IDE plugins should be at sourceforge.net or
java.net or the like instead of at Jakarta.  Certainly Velocity, Maven,
Struts, etc. should point people to them, but they just don't seem like the
kind of thing that the Jakarta community should be focusing on as Jakarta
projects.  (Of course it does make perfect sense for Jakarta people to be
involved on those projects, though.)

-Jim Moore


-Original Message-
From: Brett Porter [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 12, 2003 6:31 PM
To: Jakarta General List
Subject: Re: Is there a place for Eclipse plugins in Apache/Jakarta land?


Perhaps there should be a Jakarta-IDE project of some description that 
contains plugins for any number of IDEs (Netbeans, Eclipse, IntelliJ) 
that relate to Jakarta projects.

This could be a home for:
* Velocity: http://sourceforge.net/projects/veloedit/
* Maven IDE: http://sourceforge.net/projects/mevenide/
* the Struts IDE plugins

And I've seen the cactus on already listed here:
http://eclipse-plugins.2y.net/eclipse/plugins.jsp

My 2c.

Cheers,
Brett

Andrus Adamchik wrote:
Since Eclipse folks have a directory of Eclipse Plugins already, that 
is where I would put it.  That is where Eclipse developers will look 
for it.  They will not necessarily be using Tomcat or Cactus, for 
instance.

Otis
 
 
 AFAIK, Eclipse website doesn't really host plugin projects. E.g. an 
 Eclipse plugin for WebObjects, developed inside the ObjectStyle 
 community ( http://objectstyle.org/woproject/ ), is present on Eclipse 
 website at
 
   http://www.eclipse.org/community/plugins.html
 
 But other than that has no affiliation with Eclipse. So pointing to 
 Eclipse doesn't solve Vincent's problem. Looks like he is really 
 looking for a place to develop a community around the plugin project. 
 IMO this is a good standalone project idea. So it is a choice between 
 Apache and SourceForge I guess.
 
 Andrus Adamchik
 
 ---
 ORM + GUI tools - http://objectstyle.org/cayenne/
 
 
 
 
 On Thu, 12 Jun 2003, Vincent Massol ([EMAIL PROTECTED])
wrote:


Hi,

As part of Cactus, we have developed 2 Eclipse plugins. One of

them is a

generic webapp plugin. We would like to extract this from the

Cactus CVS

and let others benefit from it.

However, I'm not sure where we should put this new project.

Obviously one choice is to put it on SourceForge. Before doing

this, I

wanted to let us decide first if we wanted to have a place in

Apache

land where we would put such IDE plugins.

I think more and more the focus in java land is on usability.

Be it

Tomcat, Avalon, Maven, etc, they will all have user-oriented

front ends

to increase user productivity. One obvious place is within

their own

repository. The real question is about shared plugins, like

the webapp

one, which would benefit Tomcat users as well as Cactus ones.

Any idea?

Note: There's no hurry. Just testing the water... :-)

Thank you
-Vincent


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

-- 
Web Developer
f2 network ~ everything essential
02 8596 4437


-
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: Gump and Unicode

2003-06-12 Thread Tim Vernum
 export LC_ALL=en_US.UTF-8 in /etc/.profile (or .bash_profile... 
 depending on shell) of the user under which the processes run 
 should map 

 
 I'm not Solaris Expert, so I can't comment on this.

My installs of Solaris 2.6 and 8 support the en_US.UTF-8 locale, so
I suspect the process is the same. (although I haven't tested)


NOTICE
This e-mail and any attachments are confidential and may contain copyright material of 
Macquarie Bank or third parties. If you are not the intended recipient of this email 
you should not read, print, re-transmit, store or act in reliance on this e-mail or 
any attachments, and should destroy all copies of them. Macquarie Bank does not 
guarantee the integrity of any emails or any attached files. The views or opinions 
expressed are the author's own and may not reflect the views or opinions of Macquarie 
Bank. 


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



cvs commit: jakarta-site2/xdocs/site elsewhere.xml

2003-06-12 Thread tetsuya
tetsuya 2003/06/12 18:51:42

  Modified:docs index.html
   docs/site elsewhere.html
   xdocsindex.xml
   xdocs/site elsewhere.xml
  Log:
  IBM developerWorks published an article featuring 2 Jakarta projects:
  Commons Digester and Lucene.
  
  Revision  ChangesPath
  1.253 +2 -3  jakarta-site2/docs/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/index.html,v
  retrieving revision 1.252
  retrieving revision 1.253
  diff -u -r1.252 -r1.253
  --- index.html12 Jun 2003 11:26:20 -  1.252
  +++ index.html13 Jun 2003 01:51:41 -  1.253
  @@ -232,12 +232,11 @@
   ul
   lia href=site/elsewhere.html#20030612.112 June 2003 - 
bJames/b
   featured on bIBM developerWorks/b/a /li
  +lia href=site/elsewhere.html#20030603.103 June 2003 - 
bJakarta Lucene/b and bCommons Digester/b
  +featured on bIBM developerWorks/b/a /li
lia href=site/elsewhere.html#20030528.128 May 2003 - bApache 
2.0.46/b Released/a/li
   lia href=site/news.html#20030522.122 May 2003 - bJakarta 
Newsletter Issue 8/b Released/a/li
   lia href=site/elsewhere.html#20030512.112 May 2003 - bJames 
2.1.3 released./b/a/li
  -lia href=site/elsewhere.html#20030505.15 May 2003 - bScarab 
1.0 Beta 14/b Released By
  -bTigris.org/b/a/li
  -
   /ul
   /blockquote
   /p
  
  
  
  1.49  +11 -0 jakarta-site2/docs/site/elsewhere.html
  
  Index: elsewhere.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/elsewhere.html,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- elsewhere.html12 Jun 2003 11:26:19 -  1.48
  +++ elsewhere.html13 Jun 2003 01:51:41 -  1.49
  @@ -189,6 +189,17 @@
   [a 
href=http://www-106.ibm.com/developerworks/java/library/j-james2.html;article2/a]
   Build e-mail based applications with Matchers and Mailets.
   /p
  +hr size=1 noshade=noshade /
  +a name=20030603.1
  +h303 June 2003 - Jakarta Lucene and Commons Digester featured on IBM 
developerWorks/h3
  +/a
  +p
  +Otis Gospodnetic (otis at apache dot org) has written an article on a 
href=http://jakarta.apache.org/lucene/;Jakarta Lucene/a and a 
href=http://jakarta.apache.org/commons/digester.html;Commons Digester/a for
  +a href=http://www.ibm.com/developerworks/;IBM developerWorks/a.br /
  +[a href=http://www-106.ibm.com/developerworks/java/library/j-lucene/;article/a]
  +Parsing, indexing, and searching XML with Digester and Lucene
  +/p
  +hr size=1 noshade=noshade /
   a name=20030528.1
   h328 May 2003 - Apache 2.0.46 released/h3/a
   p
  
  
  
  1.200 +2 -3  jakarta-site2/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-site2/xdocs/index.xml,v
  retrieving revision 1.199
  retrieving revision 1.200
  diff -u -r1.199 -r1.200
  --- index.xml 12 Jun 2003 11:26:20 -  1.199
  +++ index.xml 13 Jun 2003 01:51:41 -  1.200
  @@ -57,12 +57,11 @@
   ul
   lia href=site/elsewhere.html#20030612.112 June 2003 - 
bJames/b
   featured on bIBM developerWorks/b/a /li
  +lia href=site/elsewhere.html#20030603.103 June 2003 - 
bJakarta Lucene/b and bCommons Digester/b
  +featured on bIBM developerWorks/b/a /li
lia href=site/elsewhere.html#20030528.128 May 2003 - bApache 
2.0.46/b Released/a/li
   lia href=site/news.html#20030522.122 May 2003 - bJakarta 
Newsletter Issue 8/b Released/a/li
   lia href=site/elsewhere.html#20030512.112 May 2003 - bJames 
2.1.3 released./b/a/li
  -lia href=site/elsewhere.html#20030505.15 May 2003 - bScarab 
1.0 Beta 14/b Released By
  -bTigris.org/b/a/li
  -
   /ul
   /section
   
  
  
  
  1.24  +13 -0 jakarta-site2/xdocs/site/elsewhere.xml
  
  Index: elsewhere.xml
  ===
  RCS file: /home/cvs/jakarta-site2/xdocs/site/elsewhere.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- elsewhere.xml 12 Jun 2003 11:26:20 -  1.23
  +++ elsewhere.xml 13 Jun 2003 01:51:42 -  1.24
  @@ -23,6 +23,19 @@
   Build e-mail based applications 

Re: IBM dW: Digester + Lucene

2003-06-12 Thread Tetsuya Kitahata

Otis,

I've put this on the jakarta top news (elsewhere).
Thank you for this note.

Sincerely,

-- Tetsuya ([EMAIL PROTECTED])

-

On Thu, 12 Jun 2003 15:19:26 -0400
(Subject: IBM dW: Digester + Lucene)
otisg  [EMAIL PROTECTED] wrote:

 IBM developerWorks published an article featuring 2 Jakarta
 projects: Commons Digester and Lucene.
 
   http://www-106.ibm.com/developerworks/java/library/j-lucene/
 
 Otis

-
Tetsuya Kitahata --  Terra-International, Inc.
E-mail: [EMAIL PROTECTED] : [EMAIL PROTECTED]
http://www.terra-intl.com/
(Apache Jakarta Translation, Japanese)
http://jakarta.terra-intl.com/



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



cvs commit: jakarta-site2/xdocs/site elsewhere.xml news.xml

2003-06-12 Thread tetsuya
tetsuya 2003/06/12 19:10:56

  Modified:docs index.html
   docs/site elsewhere.html news.html
   xdocsindex.xml
   xdocs/site elsewhere.xml news.xml
  Log:
  IBM developerWorks published an article featuring 2 Jakarta projects:
  Commons Digester and Lucene. -- in site/news.html (sorry)
  
  Revision  ChangesPath
  1.254 +1 -1  jakarta-site2/docs/index.html
  
  Index: index.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/index.html,v
  retrieving revision 1.253
  retrieving revision 1.254
  diff -u -r1.253 -r1.254
  --- index.html13 Jun 2003 01:51:41 -  1.253
  +++ index.html13 Jun 2003 02:10:55 -  1.254
  @@ -232,7 +232,7 @@
   ul
   lia href=site/elsewhere.html#20030612.112 June 2003 - 
bJames/b
   featured on bIBM developerWorks/b/a /li
  -lia href=site/elsewhere.html#20030603.103 June 2003 - 
bJakarta Lucene/b and bCommons Digester/b
  +lia href=site/news.html#20030603.203 June 2003 - bJakarta 
Lucene/b and bCommons Digester/b
   featured on bIBM developerWorks/b/a /li
lia href=site/elsewhere.html#20030528.128 May 2003 - bApache 
2.0.46/b Released/a/li
   lia href=site/news.html#20030522.122 May 2003 - bJakarta 
Newsletter Issue 8/b Released/a/li
  
  
  
  1.50  +0 -10 jakarta-site2/docs/site/elsewhere.html
  
  Index: elsewhere.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/elsewhere.html,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- elsewhere.html13 Jun 2003 01:51:41 -  1.49
  +++ elsewhere.html13 Jun 2003 02:10:55 -  1.50
  @@ -190,16 +190,6 @@
   Build e-mail based applications with Matchers and Mailets.
   /p
   hr size=1 noshade=noshade /
  -a name=20030603.1
  -h303 June 2003 - Jakarta Lucene and Commons Digester featured on IBM 
developerWorks/h3
  -/a
  -p
  -Otis Gospodnetic (otis at apache dot org) has written an article on a 
href=http://jakarta.apache.org/lucene/;Jakarta Lucene/a and a 
href=http://jakarta.apache.org/commons/digester.html;Commons Digester/a for
  -a href=http://www.ibm.com/developerworks/;IBM developerWorks/a.br /
  -[a href=http://www-106.ibm.com/developerworks/java/library/j-lucene/;article/a]
  -Parsing, indexing, and searching XML with Digester and Lucene
  -/p
  -hr size=1 noshade=noshade /
   a name=20030528.1
   h328 May 2003 - Apache 2.0.46 released/h3/a
   p
  
  
  
  1.327 +11 -1 jakarta-site2/docs/site/news.html
  
  Index: news.html
  ===
  RCS file: /home/cvs/jakarta-site2/docs/site/news.html,v
  retrieving revision 1.326
  retrieving revision 1.327
  diff -u -r1.326 -r1.327
  --- news.html 12 Jun 2003 08:28:14 -  1.326
  +++ news.html 13 Jun 2003 02:10:55 -  1.327
  @@ -201,7 +201,17 @@
 For more information, see the
 a href=http://jakarta.apache.org/struts/;Struts/a web site.
   /p
  -hr size=1 noshade= /
  +hr size=1 noshade=noshade /
  +a name=20030603.2
  +h33 June 2003 - Jakarta Lucene and Commons Digester featured on IBM 
developerWorks/h3
  +/a
  +p
  +Otis Gospodnetic (otis at apache dot org) has written an article on a 
href=http://jakarta.apache.org/lucene/;Jakarta Lucene/a and a 
href=http://jakarta.apache.org/commons/digester.html;Commons Digester/a for
  +a href=http://www.ibm.com/developerworks/;IBM developerWorks/a.br /
  +[a href=http://www-106.ibm.com/developerworks/java/library/j-lucene/;article/a]
  +Parsing, indexing, and searching XML with Digester and Lucene
  +/p
  +hr size=1 noshade=noshade /
   a name=20030603.1
   h33 June 2003 - Commons FileUpload 1.0 Release Candidate 1 Released/h3
   /a
  
  
  
  1.201 +1 -1  jakarta-site2/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-site2/xdocs/index.xml,v
  retrieving revision 1.200
  retrieving revision 1.201
  diff -u -r1.200 -r1.201
  --- index.xml 13 Jun 2003 01:51:41 -  1.200
  +++ index.xml 13 Jun 2003 02:10:56 -  1.201
  @@ -57,7 +57,7 @@