You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2002/11/23 20:28:42 UTC

cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

wrowe       2002/11/23 11:28:42

  Modified:    docs/dev anoncvs.txt devnotes.html how-to-release.html
  Log:
    Reflect the commands for the APACHE_2_0_BRANCH split.
  
  Revision  Changes    Path
  1.2       +6 -2      httpd-site/docs/dev/anoncvs.txt
  
  Index: anoncvs.txt
  ===================================================================
  RCS file: /home/cvs/httpd-site/docs/dev/anoncvs.txt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- anoncvs.txt	21 Nov 2001 07:31:47 -0000	1.1
  +++ anoncvs.txt	23 Nov 2002 19:28:42 -0000	1.2
  @@ -60,9 +60,9 @@
   The password is "anoncvs" (without the quotation marks) for
   both servers.
   
  -To check out the current development tree:
  +To check out the stable Apache 2.0 release tree:
   
  -  user@host:~$ cvs checkout httpd-2.0
  +  user@host:~$ cvs checkout -r APACHE_2_0_BRANCH httpd-2.0
     cvs server: Updating httpd-2.0
     U httpd-2.0/ABOUT_APACHE
     U httpd-2.0/Announcement
  @@ -98,6 +98,10 @@
     U apr-util/test/.cvsignore
     U apr-util/test/Makefile.in
     U apr-util/test/testdbm.c
  +
  +
  +To check out the current Apache 2.1 development tree, use the same
  +commands as above, omiting the -r APACHE_2_0_BRANCH flag.
   
   
   To checkout the stable release tree (version 1.3):
  
  
  
  1.16      +4 -1      httpd-site/docs/dev/devnotes.html
  
  Index: devnotes.html
  ===================================================================
  RCS file: /home/cvs/httpd-site/docs/dev/devnotes.html,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- devnotes.html	28 Oct 2002 07:06:06 -0000	1.15
  +++ devnotes.html	23 Nov 2002 19:28:42 -0000	1.16
  @@ -202,7 +202,7 @@
         <td bgcolor="#023264" width="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
         <td bgcolor="#ffffff"><pre>
   % cd /usr/local/apache
  -% cvs checkout httpd-2.0
  +% cvs checkout -r APACHE_2_0_BRANCH httpd-2.0
   % cd httpd-2.0/srclib
   % cvs checkout apr apr-util</pre></td>
         <td bgcolor="#023264" width="1"><img src="/images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  @@ -219,6 +219,9 @@
     Because not all httpd contributors have access to APR, you may need to
     use anonymous CVS to get those repositories.  We are looking in to 
     solving this problem.</p>
  +<p>If you want to check out the bleeding edge of development, the httpd-2.1
  +  development tree (slated for a release 2.2), omit the -r APACHE_2_0_BRANCH
  +  option above.</p>
     </blockquote>
    </td></tr>
   </table>
  
  
  
  1.21      +1 -1      httpd-site/docs/dev/how-to-release.html
  
  Index: how-to-release.html
  ===================================================================
  RCS file: /home/cvs/httpd-site/docs/dev/how-to-release.html,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- how-to-release.html	28 Oct 2002 07:06:06 -0000	1.20
  +++ how-to-release.html	23 Nov 2002 19:28:42 -0000	1.21
  @@ -110,7 +110,7 @@
        <code><b>/home/cvs/CVSROOT/modules</b></code> do that for you).
     <p>
        For Apache 2.<em>X</em>:<br />
  -     <code><b>$ cvs checkout -P httpd-2.<em>X</em></b></code><br />
  +     <code><b>$ cvs checkout -r APACHE_2_0_BRANCH -P httpd-2.<em>X</em></b></code><br />
        <code><b>$ cd httpd-2.<i>X</i>/srclib</b></code><br />
        <code><b>$ cvs checkout apr apr-util</b></code>
     </p>
  
  
  

Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by André Malo <nd...@perlig.de>.
* Justin Erenkrantz wrote:

> We don't want to serve the original XML files.  httpd-2.0's docs have
> valid XSLTs which mean that they can be rendered with modern web
> browsers.

s/can/could/ ;-)

Actually I don't know any browser, which is able to render the docs 
xml/xslt correctly. I really consider to start a discussion about removing 
the xslt references from the docs' xml files. (just btw.)

nd
-- 
If God intended people to be naked, they would be born that way.
  -- Oscar Wilde

Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by Justin Erenkrantz <je...@apache.org>.
--On Sunday, November 24, 2002 9:51 PM -0600 "William A. Rowe, Jr." 
<wr...@apache.org> wrote:

> Can I just state that this surprise really sucks?  Why couldn't we
> follow the same protocols as in httpd-2.0/docs/manual/ where xml
> coexists peacefully alongside html output???

We don't want to serve the original XML files.  httpd-2.0's docs have 
valid XSLTs which mean that they can be rendered with modern web 
browsers.  httpd-site's content doesn't have a XSLT.  Therefore, if 
we exposed the raw XML files to a web browser, they wouldn't make any 
sense to anyone.

The eventual goal is not to have a docs directory in CVS at all, but 
we can't do that given our current infrastructure.  Therefore, all of 
the content must be generated statically and checked into the 
repository.  Hence, docs/ is only valid for transformations.  -- 
justin

Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by "William A. Rowe, Jr." <wr...@apache.org>.
At 12:33 AM 11/24/2002, Justin Erenkrantz wrote:
>--On Saturday, November 23, 2002 7:28 PM +0000 wrowe@apache.org wrote:
>
>>wrowe       2002/11/23 11:28:42
>>
>>  Modified:    docs/dev anoncvs.txt devnotes.html
>>how-to-release.html   Log:
>>    Reflect the commands for the APACHE_2_0_BRANCH split.
>
>Umm, shouldn't these changes have been committed to xdocs/dev not docs/dev?  docs/dev is liable to be overriden at any time.  -- justin

Can I just state that this surprise really sucks?  Why couldn't we follow
the same protocols as in httpd-2.0/docs/manual/ where xml coexists
peacefully alongside html output???

Fixing now. Sigh.

Bill


Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by "William A. Rowe, Jr." <wr...@apache.org>.
At 01:31 PM 11/23/2002, Aaron Bannert wrote:
>Didn't we rename this repository from httpd-2.0 to httpd? I see a symlink
>on icarus from httpd-2.0 --> httpd so both work the same, so we might
>want to start encouraging use of the new "real" repo name.

Agreed... I'll go back over it all.


Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by Justin Erenkrantz <je...@apache.org>.
--On Saturday, November 23, 2002 7:28 PM +0000 wrowe@apache.org wrote:

> wrowe       2002/11/23 11:28:42
>
>   Modified:    docs/dev anoncvs.txt devnotes.html
> how-to-release.html   Log:
>     Reflect the commands for the APACHE_2_0_BRANCH split.

Umm, shouldn't these changes have been committed to xdocs/dev not 
docs/dev?  docs/dev is liable to be overriden at any time.  -- justin

Re: cvs commit: httpd-site/docs/dev anoncvs.txt devnotes.html how-to-release.html

Posted by Aaron Bannert <aa...@clove.org>.
Didn't we rename this repository from httpd-2.0 to httpd? I see a 
symlink
on icarus from httpd-2.0 --> httpd so both work the same, so we might
want to start encouraging use of the new "real" repo name.

-aaron


On Saturday, November 23, 2002, at 11:28  AM, wrowe@apache.org wrote:

> wrowe       2002/11/23 11:28:42
>
>   Modified:    docs/dev anoncvs.txt devnotes.html how-to-release.html
>   Log:
>     Reflect the commands for the APACHE_2_0_BRANCH split.
>
>   Revision  Changes    Path
>   1.2       +6 -2      httpd-site/docs/dev/anoncvs.txt
>
>   Index: anoncvs.txt
>   ===================================================================
>   RCS file: /home/cvs/httpd-site/docs/dev/anoncvs.txt,v
>   retrieving revision 1.1
>   retrieving revision 1.2
>   diff -u -r1.1 -r1.2
>   --- anoncvs.txt	21 Nov 2001 07:31:47 -0000	1.1
>   +++ anoncvs.txt	23 Nov 2002 19:28:42 -0000	1.2
>   @@ -60,9 +60,9 @@
>    The password is "anoncvs" (without the quotation marks) for
>    both servers.
>
>   -To check out the current development tree:
>   +To check out the stable Apache 2.0 release tree:
>
>   -  user@host:~$ cvs checkout httpd-2.0
>   +  user@host:~$ cvs checkout -r APACHE_2_0_BRANCH httpd-2.0
>      cvs server: Updating httpd-2.0
>      U httpd-2.0/ABOUT_APACHE
>      U httpd-2.0/Announcement
>   @@ -98,6 +98,10 @@
>      U apr-util/test/.cvsignore
>      U apr-util/test/Makefile.in
>      U apr-util/test/testdbm.c
>   +
>   +
>   +To check out the current Apache 2.1 development tree, use the same
>   +commands as above, omiting the -r APACHE_2_0_BRANCH flag.
>
...