Thanks, very clear. I had hoped it would be possible to set things up so that local copies of the documentation used a local image and web copies used the generic logo, but as Mike pointed out, that isn't feasible.
A local copy of the jakarta logo solves that with very few changes, as you have helpfully shown. I'll probably do that shortly, and then work on the tarball and/or ant script strategy. S. -----Original Message----- From: Tetsuya Kitahata [mailto:[EMAIL PROTECTED] Sent: 09 October 2003 10:10 To: JMeter Developers List Subject: Re: JMeter web-site questions -- Tetsuya. ([EMAIL PROTECTED]) On Wed, 08 Oct 2003 11:24:04 +0100 (Subject: JMeter web-site questions) "BAZLEY, Sebastian" <[EMAIL PROTECTED]> wrote: > Just wondering how the JMeter web-site gets updated? What you wanted would be accomplished by these below: ---------------------------------------- 1. copy the image of "jakarta.apache.org" (Jakarta Logo: http://jakarta.apache.org/images/jakarta-logo.gif) to JMETER_CHECKOUT_DIR/xdocs/images/ (new directory) :=> JMETER_CHECKOUT_DIR/xdocs/images/jakarta-logo.gif ---------------------------------------- 2. Apply this patch (*not* unified diff style.. sorry) #################(FROM HERE)#################### Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-jmeter/build.xml,v retrieving revision 1.115 diff -r1.115 build.xml 471a472,478 > <copy todir="${docs.dest}/images" filtering="no"> > <fileset dir="${docs.src}/images"> > <include name="**/*.gif"/> > <include name="**/*.jpeg"/> > <include name="**/*.jpg"/> > </fileset> > </copy> 476a484,490 > <copy todir="${docs.dest}/images" filtering="no"> > <fileset dir="${docs.src}/images"> > <include name="**/*.gif"/> > <include name="**/*.jpeg"/> > <include name="**/*.jpg"/> > </fileset> > </copy> #################( E N D )#################### #################(FROM HERE)#################### Index: site.vsl =================================================================== RCS file: /home/cvs/jakarta-jmeter/xdocs/stylesheets/site.vsl,v retrieving revision 1.18 diff -r1.18 site.vsl 358c358 < <a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" border="0"/></a> --- > <a href="http://jakarta.apache.org/"><img src="./images/jakarta-logo.gif" border="0"/></a> 370c370 < <a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" align="left" border="0"/></a> --- > <a href="http://jakarta.apache.org/"><img src="./images/jakarta-logo.gif" align="left" border="0"/></a> 424c424 < Copyright © 1999-2001, Apache Software Foundation --- > Copyright © 1999-2003, Apache Software Foundation Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-jmeter/xdocs/stylesheets/project.xml,v retrieving revision 1.21 diff -r1.21 project.xml 2c2 < <project name="Velocity" --- > <project name="JMeter" 19c19,20 < <item name="Download Releases" href="http://jakarta.apache.org/builds/jakarta-jmeter/release"/> --- > <item name="Download Binary" href="http://jakarta.apache.org/site/binindex.cgi"/> > <item name="Download Source" href="http://jakarta.apache.org/site/sourceindex.cgi"/> 21c22 < <item name="Download Latest Stable Release" href="http://jakarta.apache.org/builds/jakarta-jmeter/release/v1.9/jakarta-j meter-1.9.1.zip"/> --- > <item name="Download Latest Stable Release" href="http://www.apache.org/dyn/closer.cgi/jakarta/jmeter/jakarta-jmeter-cur rent-bin.zip"/> 36c37 < <item name="Mailing Lists" href="/site/mail.html"/> --- > <item name="Mailing Lists" href="/site/mail2.html#jmeter"/> #################( E N D )#################### ---------------------------------------- 3. AT JMETER_CHECKOUT_DIR, run "ant docs" ---------------------------------------- 4. Confirm that the new documents have been created at JMETER_CHECKOUT_DIR/docs/ directory ---------------------------------------- 5. CVS Commit! ---------------------------------------- 6. SSH to Minotaur (www.apache.org) and cd to "/www/jakarta.apache.org/jmeter". Do "cvs update" there. ---------------------------------------- 7. DONE. Congratulations ---------------------------------------- Hope these might help Regards, --------------------------------------------------------------------- Tetsuya Kitahata -- Terra-International, Inc. E-mail: [EMAIL PROTECTED] http://www.terra-intl.com/ Apache Software Foundation Committer: http://www.apache.org/~tetsuya/ --------------------------------------------------------------------- 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]
