You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2005/07/01 12:07:27 UTC

cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

jfclere     2005/07/01 03:07:27

  Modified:    jk/tools jkrelease.sh
  Log:
  allow to use links or w3m.
  
  Revision  Changes    Path
  1.8       +51 -7     jakarta-tomcat-connectors/jk/tools/jkrelease.sh
  
  Index: jkrelease.sh
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/tools/jkrelease.sh,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- jkrelease.sh	30 Jun 2005 12:53:27 -0000	1.7
  +++ jkrelease.sh	1 Jul 2005 10:07:27 -0000	1.8
  @@ -45,15 +45,59 @@
   # Build documentation.
   cd ${JKDIST}/jk/xdocs
   ant
  +
  +# Check for links or w3m
  +W3MOPTS="-dump -cols 80 -t 4 -S -O iso-8859-1 -T text/html"
  +LNKOPTS="-dump"
  +failed=true
  +for tool in `echo "w3m links"`
  +do
  +  echo "tool: ${tool}"
  +  found=false
  +  for dir in `echo ${PATH} | sed 's!^:!.:!;s!:$!:.!;s!::!:.:!g;s!:! !g'`
  +  do
  +    if [ -x ${dir}/${tool} ]
  +    then
  +      found=true
  +      break
  +    fi
  +  done
  +
  +  # Try to run it 
  +  if ${found}
  +  then
  +    case ${tool} in
  +      w3m)
  +        TOOL="w3m $W3MOPTS"
  +        ;;
  +      links)
  +        TOOL="links $LNKOPTS"
  +        ;;
  +    esac
  +    rm -f BUILDING
  +    (cd ../native; ${TOOL} ../build/docs/install/printer/apache1.html 2>/dev/null ) > BUILDING
  +    ls -lt  BUILDING
  +    if [ -f BUILDING -a -s BUILDING ]
  +    then
  +      failed=false
  +      break
  +    fi
  +  fi
  +done
  +if ${failed}
  +then
  +  echo "Can't convert html to text (BUILDING)"
  +  exit 1
  +fi
  +
   # Export text docs
   cd ../native
  -W3MOPTS="-dump -cols 80 -t 4 -S -O iso-8859-1 -T text/html"
  -w3m ${W3MOPTS} ../build/docs/install/printer/apache1.html >BUILDING
  -w3m ${W3MOPTS} ../build/docs/install/printer/apache2.html >>BUILDING
  -w3m ${W3MOPTS} ../build/docs/install/printer/iis.html >>BUILDING
  -w3m ${W3MOPTS} ../build/docs/printer/changelog.html >CHANGES
  -w3m ${W3MOPTS} ../build/docs/news/printer/20050101.html >NEWS
  -w3m ${W3MOPTS} ../build/docs/news/printer/20041100.html >>NEWS
  +${TOOL} ../build/docs/install/printer/apache1.html >BUILDING
  +${TOOL} ../build/docs/install/printer/apache2.html >>BUILDING
  +${TOOL} ../build/docs/install/printer/iis.html >>BUILDING
  +${TOOL} ../build/docs/printer/changelog.html >CHANGES
  +${TOOL} ../build/docs/news/printer/20050101.html >NEWS
  +${TOOL} ../build/docs/news/printer/20041100.html >>NEWS
   rm -rf ../build
   rm -rf ../xdocs/jk2
   ./buildconf.sh
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
jean-frederic clere wrote:
> 
> no: links only wants -dump, but I have not problems to add elinks.
>

Well, whatever.

Didn't try the links (only elinks) so could not tell.
My SuSE is coming with w3m, so I don't really care ;)

Regards,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by jean-frederic clere <jf...@fujitsu-siemens.com>.
Mladen Turk wrote:
> Henri Gomez wrote:
> 
>> Because JFC is a great guy and someone I meet often.
>>
> 
> He he.
> 
>> And yes he will be a great RM :)
>> Go JFC, go
>>
> 
> Right.
> I think he can take some responsibility,
> if he mess up, we'll kidnap his hamsters :)

You have to catch them first :)
(Well for 2 of them just put the hand in the cage and make some noise).

> 
> Cheers,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
Henri Gomez wrote:
> Because JFC is a great guy and someone I meet often.
>

He he.

> And yes he will be a great RM :)
> Go JFC, go
> 

Right.
I think he can take some responsibility,
if he mess up, we'll kidnap his hamsters :)

Cheers,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Henri Gomez <he...@gmail.com>.
Because JFC is a great guy and someone I meet often.

And yes he will be a great RM :)

Go JFC, go

2005/7/1, Mladen Turk <mt...@apache.org>:
> Henri Gomez wrote:
> > +0, JF act as RM :)
> >
> 
> Why?
> He is a nice guy. He is even younger then Bob Geldof,
> so what the obstacle for some altruism ;)
> 
> Cheers,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
Henri Gomez wrote:
> +0, JF act as RM :)
>

Why?
He is a nice guy. He is even younger then Bob Geldof,
so what the obstacle for some altruism ;)

Cheers,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Henri Gomez <he...@gmail.com>.
+0, JF act as RM :)

2005/7/1, Mladen Turk <mt...@apache.org>:
> jean-Frederic clear wrote:
> > Mladen Turk wrote:
> >
> >> jfclere@apache.org wrote:
> >
> > no: links only wants -dump, but I have not problems to add elinks.
> >
> 
> Also, how about you volunteer for a 1.2.14 RM?
> I was doing that for the last year and I'm getting pretty tired ;)
> 
> I will build as many binaries as I can.
> 
> Regards,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Peter Rossbach <pr...@objektpark.de>.
Hey,

I can build the binaries for suse 9.3, 9.1 and I hope for MAC OS X 10.4

I am ready to commit an ant task to represent current apache jk status 
show command result.
I am no sure that the jkstatus ant task are a new submodule from 
jakarta-tomcat-connectors/jk/ (my current place) or
better integrate inside catalina core o.a.c.ant.jkstatus subpackage. I 
used the o.a.c.ant.BaseRedirectorHelperTask for output and
error handling.

Jkstatus ant task todo
-   docs
-    integrate also the JkStatusUpdate Task
-    Represent and update the apaches also with a MBean.

Peter


Henri Gomez schrieb:

>make a source tarball bvefore release so I could check on iSeries
>
>2005/7/1, jean-frederic clere <jf...@fujitsu-siemens.com>:
>  
>
>>Mladen Turk wrote:
>>    
>>
>>>jean-frederic clere wrote:
>>>
>>>      
>>>
>>>>Well there are still 20 bugs in tomcat5/mod-jk, what do with them?
>>>>
>>>>        
>>>>
>>>Not sure. Lot's of obsolete things that need a simple cleanup.
>>>      
>>>
>>Ok I will start to clean bugzilla.
>>
>>    
>>
>>>I can only tell the current CVS is the best ever mod_jk we had.
>>>If it builds on all platforms (ant it does AFAICT),
>>>we should go for the release ASAP.
>>>      
>>>
>>I will test it on BS2000, if it builds and runs there it is ready for a release!
>>
>>    
>>
>>>There are just too many things that has been fixed since last stable,
>>>that we should ignore or try to wait much further.
>>>
>>>Regards,
>>>Mladen.
>>>
>>>---------------------------------------------------------------------
>>>To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
>>>For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
>>>
>>>
>>>      
>>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
>>For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
>>
>>
>>    
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
>For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
>
>
>
>
>  
>


-- 
J2EE Systemarchitekt und Tomcat Experte

http://objektpark.de/
http://tomcat.objektpark.org/
http://centaurus.sourceforge.net/

Am Josephsschacht 72, 44879 Bochum, Deutschland
Telefon:  (49) 234 9413228
Mobil:    (49) 175 1660884
E-Mail:  pr@objektpark.de




---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Henri Gomez <he...@gmail.com>.
make a source tarball bvefore release so I could check on iSeries

2005/7/1, jean-frederic clere <jf...@fujitsu-siemens.com>:
> Mladen Turk wrote:
> > jean-frederic clere wrote:
> >
> >>
> >> Well there are still 20 bugs in tomcat5/mod-jk, what do with them?
> >>
> >
> > Not sure. Lot's of obsolete things that need a simple cleanup.
> 
> Ok I will start to clean bugzilla.
> 
> >
> > I can only tell the current CVS is the best ever mod_jk we had.
> > If it builds on all platforms (ant it does AFAICT),
> > we should go for the release ASAP.
> 
> I will test it on BS2000, if it builds and runs there it is ready for a release!
> 
> >
> > There are just too many things that has been fixed since last stable,
> > that we should ignore or try to wait much further.
> >
> > Regards,
> > Mladen.
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> >
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by jean-frederic clere <jf...@fujitsu-siemens.com>.
Mladen Turk wrote:
> jean-frederic clere wrote:
> 
>>
>> Well there are still 20 bugs in tomcat5/mod-jk, what do with them?
>>
> 
> Not sure. Lot's of obsolete things that need a simple cleanup.

Ok I will start to clean bugzilla.

> 
> I can only tell the current CVS is the best ever mod_jk we had.
> If it builds on all platforms (ant it does AFAICT),
> we should go for the release ASAP.

I will test it on BS2000, if it builds and runs there it is ready for a release!

> 
> There are just too many things that has been fixed since last stable,
> that we should ignore or try to wait much further.
> 
> Regards,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
jean-frederic clere wrote:
> 
> Well there are still 20 bugs in tomcat5/mod-jk, what do with them?
>

Not sure. Lot's of obsolete things that need a simple cleanup.

I can only tell the current CVS is the best ever mod_jk we had.
If it builds on all platforms (ant it does AFAICT),
we should go for the release ASAP.

There are just too many things that has been fixed since last stable,
that we should ignore or try to wait much further.

Regards,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by jean-frederic clere <jf...@fujitsu-siemens.com>.
Mladen Turk wrote:
> jean-Frederic clear wrote:
> 
>> Mladen Turk wrote:
>>
>>> jfclere@apache.org wrote:
>>
>>
>> no: links only wants -dump, but I have not problems to add elinks.
>>
> 
> Also, how about you volunteer for a 1.2.14 RM?

Well there are still 20 bugs in tomcat5/mod-jk, what do with them?

> I was doing that for the last year and I'm getting pretty tired ;)
> 
> I will build as many binaries as I can.
> 
> Regards,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
jean-Frederic clear wrote:
> Mladen Turk wrote:
> 
>> jfclere@apache.org wrote:
> 
> no: links only wants -dump, but I have not problems to add elinks.
>

Also, how about you volunteer for a 1.2.14 RM?
I was doing that for the last year and I'm getting pretty tired ;)

I will build as many binaries as I can.

Regards,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by jean-frederic clere <jf...@fujitsu-siemens.com>.
Mladen Turk wrote:
> jfclere@apache.org wrote:
> 
>>   +# Check for links or w3m
>>   +W3MOPTS="-dump -cols 80 -t 4 -S -O iso-8859-1 -T text/html"
>>   +LNKOPTS="-dump"
> 
> 
> 
> Great, but I think that the links/elinks options should be:
> --dump --no-references --no-numbering --no-home
> That's at least for the elinks, but I suppose the links should
> have something similar.

no: links only wants -dump, but I have not problems to add elinks.

> 
> Just using dump will make the output pretty unfriendly ;)
> In fact, the reason why I choose w3m was because it can give
> a very clean .txt output.
> 
> 
> Regards,
> Mladen.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
> 
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Mladen Turk <mt...@apache.org>.
jfclere@apache.org wrote:
>   +# Check for links or w3m
>   +W3MOPTS="-dump -cols 80 -t 4 -S -O iso-8859-1 -T text/html"
>   +LNKOPTS="-dump"


Great, but I think that the links/elinks options should be:
--dump --no-references --no-numbering --no-home
That's at least for the elinks, but I suppose the links should
have something similar.

Just using dump will make the output pretty unfriendly ;)
In fact, the reason why I choose w3m was because it can give
a very clean .txt output.


Regards,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org


Re: cvs commit: jakarta-tomcat-connectors/jk/tools jkrelease.sh

Posted by Natasha Hasmani <nh...@eatertainment.com>.
Thank-you for your e-mail.

Please note that i will be away from the office starting Wednesday June
29th, returning Thursday July 7th, with no access to email.  In my absence,
kindly contact Cheri Dueck at cdueck@eatertainment.com

Kind Regards,

Natasha Hasmani
Senior Event Manager 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org