Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Mar 2000 12:44:51 +0100
From:      Nik Clayton <nik@freebsd.org>
To:        Alexey Zelkin <phantom@cris.net>
Cc:        Jim Mock <jim@FreeBSD.org>, committers@FreeBSD.org, doc@freebsd.org
Subject:   Re: www/en/news/webchanges.sgml
Message-ID:  <20000331124450.A5965@catkin.nothing-going-on.org>
In-Reply-To: <20000322104328.A3982@scorpion.crimea.ua>; from Alexey Zelkin on Wed, Mar 22, 2000 at 10:43:28AM %2B0300
References:  <20000319174437.A6630@luna.cdrom.com> <20000322104328.A3982@scorpion.crimea.ua>

next in thread | previous in thread | raw e-mail | index | archive | help

--a8Wt8u1KmwUX3Y2C
Content-Type: text/plain; charset=us-ascii

[ cc'd to -committers, where this came up, and -doc, where it's more on-topic.
  FU to -doc ]

On Wed, Mar 22, 2000 at 10:43:28AM +0300, Alexey Zelkin wrote:
> On Sun, Mar 19, 2000 at 05:44:37PM -0800, Jim Mock wrote:
> > Does anyone object to removing www/en/news/webchanges.sgml?  It hasn't
> > been updated since last December.  It's kind of crufty, and I'm not sure
> > that we really need it if it hasn't been or going to be updated.
> > Opinions?
> 
> I disagree. It's useful file, but people forget to update it. I have
> point at my TODO list to add latest commits there. 

Per my earlier message about trying to automate the updates, here's my 
first stab.  This is not integrated with the build process in any way
yet.

You will need:

   cvs2cl.pl    Get this from http://www.red-bean.com/~kfogel/cvs2cl.shtml.
                You need version 2.3 or above, which supports the --xml
                output flag.  We'll need to port this if we use this
                approach.

   jade         textproc/jade, you'll have this if you installed the 
                textproc/docproj port

   XML declaration

                The XML declaration.  I use the one from the 
                textproc/dsssl-docbook-modular port.

   webchanges-new.sgml

                Attached to this message.

   cl.sh        Quick and dirty shell script.  Attached to this message.

   changelog.dsl

                DSSSL script to convert from the ChangeLog XML to HTML.
                Attached to this message.

 1. Check out a copy of the www/ repository somewhere, and go to the www/en
    directory.

 2. Run "cvs2cl.pl", getting the last month's worth of changes.  Put the
    results in news/ChangeLog.xml.  Something like this should do it.

       cvs2cl.pl -g '-d /home/ncvs' -l "-d'>2000-03-01'" -r -P \
           --xml --stdout > news/ChangeLog.xml

 3. Change to the news/ directory, and put a copy of the attached
    webchanges-new.sgml file in there.

 4. Run jade over ChangeLog.xml, using changelog.dsl, to generate 
    changelog.html.

    See the commands in cl.sh for how to do this.  Note the two calls to
    sed, which are required to make up for some deficiencies in my DSSSL
    knowledge.

 5. Patch news/Makefile to know about webchanges-new.sgml, and then

       make webchanges-new.html

 6. Examine the HTML output in your browser of choice.

There are a few nits.

 1. Multiple changes by different people on the same day get a different
    entry.  This really needs a patch to cvs2cl.pl to fix, so that you
    have
  
      <date>
        <entry>
           ...
        </entry>

        <entry>
           ...
        </entry>
      </date>

    Rather than the current approach.

 2. We're ignoring some information in the ChangeLog.  For example the
    time of the commit, and the file revisions affected.  We could use 
    this info to link back to the CVS repository.

 3. The sed in the shell script is ugly, but I don't know enough DSSSL to
    do that in the stylesheet.

For those that don't to do all the above, I've attached a copy of a 
webchanges-new.html ("Here's one I made earlier") so you can see the
direction we're going in.

N
-- 
Internet connection, $19.95 a month.  Computer, $799.95.  Modem, $149.95.
Telephone line, $24.95 a month.  Software, free.  USENET transmission,
hundreds if not thousands of dollars.  Thinking before posting, priceless.
Somethings in life you can't buy.  For everything else, there's MasterCard.
  -- Graham Reed, in the Scary Devil Monastery

--a8Wt8u1KmwUX3Y2C
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="changelog.dsl"

<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN">

<style-sheet>
  <style-specification id="changelog">
    <style-specification-body>

(declare-flow-object-class element
  "UNREGISTERED::James Clark//Flow Object Class::element")

(element changelog
  (make element gi: "UL"))

(element entry
  (make element gi: "LI"))

(element date
  (make element gi: "B"))

(element weekday
  (empty-sosofo))

(element time
  (empty-sosofo))

(element author
  (make sequence
    (literal "&#60;")
    (make element gi: "A"
          attributes: (list (list "HREF"
                                  (string-append "mailto:"
                                                 (data (current-node))
						 "@FreeBSD.org")))
          (process-children)
	  (literal "@FreeBSD.org"))
    (literal "&#62;")))

(element file
  (make element gi: "P"))

(element name
  (make sequence
    (make element gi: "A"
          attributes: (list (list "HREF"
                                  (string-append "/"
				                 (data (current-node))))))))

(element revision
  (empty-sosofo))

(element commondir
  (empty-sosofo))

(element msg
  (make element gi: "PRE"))
    
    </style-specification-body>
  </style-specification>
</style-sheet>

--a8Wt8u1KmwUX3Y2C
Content-Type: application/x-sh
Content-Disposition: attachment; filename="cl.sh"

#!/bin/sh

jade -c /usr/local/share/sgml/jade/catalog -c /usr/local/share/sgml/docbook/dsssl/modular/catalog -d changelog.dsl -t sgml /usr/local/share/sgml/docbook/dsssl/modular/dtds/decls/xml.dcl ChangeLog.xml | sed 's/&#13;//' | sed 's/\.sgml/\.html/' > changelog.html

--a8Wt8u1KmwUX3Y2C
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="webchanges-new.sgml"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$FreeBSD: www/en/news/webchanges.sgml,v 1.57 2000/01/09 19:38:49 wosch Exp $">
<!ENTITY title "Changes at the FreeBSD Web Server">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
<!ENTITY % newsincludes SYSTEM "includes.sgml"> %newsincludes;
<!ENTITY changelog SYSTEM "changelog.html">
]>
<!-- $FreeBSD: www/en/news/webchanges.sgml,v 1.57 2000/01/09 19:38:49 wosch Exp $ -->

<html>
    &header;

    <p>This page lists the changes made to the files that make up the FreeBSD
      web site over the past month.</p>

    &changelog;

      &newshome;
      &footer;
  </body>
</html>

--a8Wt8u1KmwUX3Y2C
Content-Type: text/html
Content-Disposition: attachment; filename="webchanges-new.html"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE>Changes at the FreeBSD Web Server</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" ALINK="#FFCC33"><IMG SRC="../gifs/bar.gif" ALT="Navigation Bar" HEIGHT="33" WIDTH="565" BORDER="0" USEMAP="#bar">
<H1 ALIGN="LEFT"><FONT COLOR="#660000">Changes at the FreeBSD Web Server</FONT></H1><BR CLEAR="ALL">


<MAP NAME="bar">
<AREA SHAPE="RECT" COORDS="1,1,111,31" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="112,11,196,31" HREF="../ports/index.html" ALT="Applications">
<AREA SHAPE="RECT" COORDS="196,12,257,33" HREF="../support.html" ALT="Support">
<AREA SHAPE="RECT" COORDS="256,12,365,33" HREF="../docs.html" ALT="Documentation">
<AREA SHAPE="RECT" COORDS="366,13,424,32" HREF="../commercial/commercial.html" ALT="Vendors">
<AREA SHAPE="RECT" COORDS="425,16,475,32" HREF="../search/search.html" ALT="Search">
<AREA SHAPE="RECT" COORDS="477,16,516,33" HREF="../search/index-site.html" ALT="Index">
<AREA SHAPE="RECT" COORDS="516,15,562,33" HREF="../index.html" ALT="Top">
<AREA SHAPE="RECT" COORDS="0,0,564,32" HREF="../index.html" ALT="Top">
</MAP>

    <P>This page lists the changes made to the files that make up the FreeBSD
      web site over the past month.</P>

    <UL>
<LI><B>2000-03-27</B>


&lt;<A HREF="mailto:knu@FreeBSD.org">knu@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add an entry of my becoming a committer.</PRE></LI>
<LI><B>2000-03-27</B>


&lt;<A HREF="mailto:jkoshy@FreeBSD.org">jkoshy@FreeBSD.org</A>&gt;
<P><A HREF="/news/press.html">news/press.html</A>

</P>
<PRE>Added Bill Swingle's article on the Ports collection.</PRE></LI>
<LI><B>2000-03-26</B>


&lt;<A HREF="mailto:wosch@FreeBSD.org">wosch@FreeBSD.org</A>&gt;
<P><A HREF="/index.html">index.html</A>

</P>
<PRE>Fix default forground/link colors.

Submitted by:	 Justin Fletcher &lt;justin@riscos.com&gt;</PRE></LI>
<LI><B>2000-03-25</B>


&lt;<A HREF="mailto:wosch@FreeBSD.org">wosch@FreeBSD.org</A>&gt;
<P><A HREF="/index.html">index.html</A>

</P>
<PRE>Added web mirror www2.nl.freebsd.org

Submitted by:	Mark Visser &lt;mark@NL.UU.NET&gt;</PRE></LI>
<LI><B>2000-03-24</B>


&lt;<A HREF="mailto:jkoshy@FreeBSD.org">jkoshy@FreeBSD.org</A>&gt;
<P><A HREF="/news/press.html">news/press.html</A>

</P>
<PRE>Add Boardwatch interview with Jordan Hubbard.</PRE></LI>
<LI><B>2000-03-23</B>


&lt;<A HREF="mailto:nik@FreeBSD.org">nik@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add entries for more committers, back to the beginning of 1998.  Snarfed
the data from Wes' committers page.</PRE></LI>
<LI><B>2000-03-23</B>


&lt;<A HREF="mailto:asmodai@FreeBSD.org">asmodai@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add blurb about my commit privs.</PRE></LI>
<LI><B>2000-03-23</B>


&lt;<A HREF="mailto:bsd@FreeBSD.org">bsd@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Provide a bit of info about my plans as a committer (requested by
Nik).</PRE></LI>
<LI><B>2000-03-23</B>


&lt;<A HREF="mailto:jkoshy@FreeBSD.org">jkoshy@FreeBSD.org</A>&gt;
<P><A HREF="/news/press.html">news/press.html</A>

</P>
<PRE>Add LinuxWorld article: `Customizing the FreeBSD Kernel'.

Submitted by:	Dom.Mitchell@palmerharvey.co.uk (Dominic Mitchell)</PRE></LI>
<LI><B>2000-03-22</B>


&lt;<A HREF="mailto:rwatson@FreeBSD.org">rwatson@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Per Nik's request, expand a little on the newsflash ``New Committer''
note about me.</PRE></LI>
<LI><B>2000-03-22</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/news/1996/Makefile">news/1996/Makefile</A>

</P>
<P><A HREF="/news/1997/Makefile">news/1997/Makefile</A>

</P>

<PRE>Do not link "../news.html" as index.html.  We already have index.html
in this directory.</PRE></LI>
<LI><B>2000-03-22</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/news/Makefile.inc">news/Makefile.inc</A>

</P>
<PRE>Install subdirectories contents to right place.</PRE></LI>
<LI><B>2000-03-21</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add Bill Swingle's 32bitsonline.com article.

Submitted by:	unfurl</PRE></LI>
<LI><B>2000-03-21</B>


&lt;<A HREF="mailto:nik@FreeBSD.org">nik@FreeBSD.org</A>&gt;
<P><A HREF="/docproj/submitting.html">docproj/submitting.html</A>

</P>
<PRE>Update to reflect the fact that we don't have an incoming/ FTP directory
any more.</PRE></LI>
<LI><B>2000-03-21</B>


&lt;<A HREF="mailto:nik@FreeBSD.org">nik@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Include links to the resurrected 1997 and 1996 entries.

Include an entry for each new committer added over the last 4 months.</PRE></LI>
<LI><B>2000-03-21</B>


&lt;<A HREF="mailto:nik@FreeBSD.org">nik@FreeBSD.org</A>&gt;
<P><A HREF="/news/Makefile">news/Makefile</A>

</P>
<P><A HREF="/news/1996/Makefile">news/1996/Makefile</A>

</P>
<P><A HREF="/news/1996/index.html">news/1996/index.html</A>

</P>
<P><A HREF="/news/1997/Makefile">news/1997/Makefile</A>

</P>
<P><A HREF="/news/1997/index.html">news/1997/index.html</A>

</P>

<PRE>Resurrect the newsflash entries for 1996 and 1997 on their own pages.
Mentioned on cvs-committers back at the beginning of January, a couple
of ayes, no noes.  It's just taken me three months to get around to
doing it.</PRE></LI>
<LI><B>2000-03-20</B>


&lt;<A HREF="mailto:kris@FreeBSD.org">kris@FreeBSD.org</A>&gt;
<P><A HREF="/releases/4.0R/errata.html">releases/4.0R/errata.html</A>

</P>
<PRE>Add an erratum about tcpdump in the bin distribution being linked against
libcrypto which is in the crypto distribution.

Reviewed by:	jim</PRE></LI>
<LI><B>2000-03-18</B>


&lt;<A HREF="mailto:wosch@FreeBSD.org">wosch@FreeBSD.org</A>&gt;
<P><A HREF="/projects/projects.html">projects/projects.html</A>

</P>
<PRE>Added

The Eclipse Operating System is a testbed for Quality of Service (QoS)

Submitted by: ozden@research.bell-labs.com (Banu Ozden)</PRE></LI>
<LI><B>2000-03-18</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/releases/4.0R/notes.html">releases/4.0R/notes.html</A>

</P>
<PRE>Update the release notes to reflect reality.</PRE></LI>
<LI><B>2000-03-17</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/releases/4.0R/announce.html">releases/4.0R/announce.html</A>

</P>
<P><A HREF="/releases/4.0R/errata.html">releases/4.0R/errata.html</A>

</P>

<PRE>Change 3.4 in the titles to 4.0.

Submitted by:	Aydin Edguer &lt;edguer@cmh.ascend.com&gt; via freebsd-doc</PRE></LI>
<LI><B>2000-03-16</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add blurb about the new issue of The FreeBSD 'zine.</PRE></LI>
<LI><B>2000-03-16</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/releases/4.0R/Makefile">releases/4.0R/Makefile</A>

</P>
<PRE>Whoops, forgot this in my last commit.</PRE></LI>
<LI><B>2000-03-16</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/releases/Makefile">releases/Makefile</A>

</P>
<P><A HREF="/releases/index.html">releases/index.html</A>

</P>
<P><A HREF="/releases/4.0R/announce.html">releases/4.0R/announce.html</A>

</P>
<P><A HREF="/releases/4.0R/errata.html">releases/4.0R/errata.html</A>

</P>
<P><A HREF="/releases/4.0R/notes.html">releases/4.0R/notes.html</A>

</P>

<PRE>Say hello to 4.0-RELEASE.

Submitted by:	jkh</PRE></LI>
<LI><B>2000-03-16</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add bits about 4.0-RELEASE.

Submitted by:	jkh</PRE></LI>
<LI><B>2000-03-12</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/commercial/Makefile">commercial/Makefile</A>

</P>
<P><A HREF="/internal/Makefile">internal/Makefile</A>

</P>
<PRE>Correct dependencies list</PRE></LI>
<LI><B>2000-03-12</B>


&lt;<A HREF="mailto:patrick@FreeBSD.org">patrick@FreeBSD.org</A>&gt;
<P><A HREF="/java/howhelp.html">java/howhelp.html</A>

</P>
<PRE>Change Nate Williams email from nate@mt.sri.com to nate@yogotech.com</PRE></LI>
<LI><B>2000-03-12</B>


&lt;<A HREF="mailto:patrick@FreeBSD.org">patrick@FreeBSD.org</A>&gt;
<P><A HREF="/java/links/development.html">java/links/development.html</A>

</P>
<PRE>Adding a note about IBM's Visual Age for Java Professional Edition working in -CURRENT.

Obtained from:	Joachim Jaeckel &lt;Joachim.Jaeckel@coffeebreak.de&gt;</PRE></LI>
<LI><B>2000-03-12</B>


&lt;<A HREF="mailto:patrick@FreeBSD.org">patrick@FreeBSD.org</A>&gt;
<P><A HREF="/java/howhelp.html">java/howhelp.html</A>

</P>
<PRE>Fix header from Documentation to Java</PRE></LI>
<LI><B>2000-03-12</B>


&lt;<A HREF="mailto:patrick@FreeBSD.org">patrick@FreeBSD.org</A>&gt;
<P><A HREF="/java/advocacy.html">java/advocacy.html</A>

</P>
<P><A HREF="/java/index.html">java/index.html</A>

</P>
<P><A HREF="/java/install.html">java/install.html</A>

</P>
<P><A HREF="/java/newsflash.html">java/newsflash.html</A>

</P>
<P><A HREF="/java/press.html">java/press.html</A>

</P>
<P><A HREF="/java/dists/10.html">java/dists/10.html</A>

</P>
<P><A HREF="/java/dists/11.html">java/dists/11.html</A>

</P>
<P><A HREF="/java/dists/12.html">java/dists/12.html</A>

</P>
<P><A HREF="/java/dists/13.html">java/dists/13.html</A>

</P>
<P><A HREF="/java/dists/index.html">java/dists/index.html</A>

</P>
<P><A HREF="/java/docs/faq.html">java/docs/faq.html</A>

</P>
<P><A HREF="/java/docs/howtoports.html">java/docs/howtoports.html</A>

</P>
<P><A HREF="/java/docs/tutorials.html">java/docs/tutorials.html</A>

</P>
<P><A HREF="/java/links/api.html">java/links/api.html</A>

</P>
<P><A HREF="/java/links/development.html">java/links/development.html</A>

</P>
<P><A HREF="/java/links/documentation.html">java/links/documentation.html</A>

</P>
<P><A HREF="/java/links/freebsd.html">java/links/freebsd.html</A>

</P>
<P><A HREF="/java/links/index.html">java/links/index.html</A>

</P>
<P><A HREF="/java/links/resources.html">java/links/resources.html</A>

</P>
<P><A HREF="/java/links/servlets.html">java/links/servlets.html</A>

</P>
<P><A HREF="/java/links/tools.html">java/links/tools.html</A>

</P>
<P><A HREF="/java/links/tutorials.html">java/links/tutorials.html</A>

</P>
<P><A HREF="/java/links/vendor.html">java/links/vendor.html</A>

</P>

<PRE>Remove duplicate headers caused by inexperience with sgml</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/news/newsflash.html">news/newsflash.html</A>

</P>
<PRE>Add bits about the WC/BSDI merger.</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:jim@FreeBSD.org">jim@FreeBSD.org</A>&gt;
<P><A HREF="/news/Makefile">news/Makefile</A>

</P>
<P><A HREF="/news/press-rel-4.html">news/press-rel-4.html</A>

</P>
<P><A HREF="/news/pressreleases.html">news/pressreleases.html</A>

</P>

<PRE>Add the 'official' press release about the WC/BSDI merger.</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/internal/photos.html">internal/photos.html</A>

</P>
<PRE>Add reference to LinuxWorld 2000 "reports" (read photos) :-)</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:ache@FreeBSD.org">ache@FreeBSD.org</A>&gt;
<P><A HREF="/java/index.html">java/index.html</A>

</P>
<P><A HREF="/java/links/api.html">java/links/api.html</A>

</P>
<P><A HREF="/java/links/freebsd.html">java/links/freebsd.html</A>

</P>
<P><A HREF="/java/links/index.html">java/links/index.html</A>

</P>
<P><A HREF="/java/links/resources.html">java/links/resources.html</A>

</P>

<PRE>Replace Unicode &amp;#8230; with its plain text equivalent: "..."
Not all browsers support this Unicode entity</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:ache@FreeBSD.org">ache@FreeBSD.org</A>&gt;
<P><A HREF="/includes.html">includes.html</A>

</P>
<P><A HREF="/index.html">index.html</A>

</P>
<PRE>Replace numeric entites with their symbolic equivalents.
Some browsers wrongly interpretate numeric entities with local charset, so
avoiding them is for good.</PRE></LI>
<LI><B>2000-03-09</B>


&lt;<A HREF="mailto:ache@FreeBSD.org">ache@FreeBSD.org</A>&gt;
<P><A HREF="/includes.html">includes.html</A>

</P>
<PRE>Add workarounds to not replace &amp;nbsp; etc. with hardcoded values</PRE></LI>
<LI><B>2000-03-08</B>


&lt;<A HREF="mailto:jkoshy@FreeBSD.org">jkoshy@FreeBSD.org</A>&gt;
<P><A HREF="/news/press.html">news/press.html</A>

</P>
<PRE>Correct link.

Submitted by:	"Geoffrey Lassner" &lt;geoff@commerce.com&gt;</PRE></LI>
<LI><B>2000-03-08</B>


&lt;<A HREF="mailto:ache@FreeBSD.org">ache@FreeBSD.org</A>&gt;
<P><A HREF="/index.html">index.html</A>

</P>
<PRE>Typo !. -&gt; !</PRE></LI>
<LI><B>2000-03-06</B>


&lt;<A HREF="mailto:ache@FreeBSD.org">ache@FreeBSD.org</A>&gt;
<P><A HREF="/index.html">index.html</A>

</P>
<PRE>Add Russian to available languages</PRE></LI>
<LI><B>2000-03-05</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/gallery/gallery.html">gallery/gallery.html</A>

</P>
<PRE>Bring gallery state numbers to reallity :)</PRE></LI>
<LI><B>2000-03-05</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/gallery/gallery.db">gallery/gallery.db</A>

</P>
<PRE>Add latest gallery submissions.

Current state:

Commercial: 967
Non-profit: 429
Personal: 159

Total: 1555</PRE></LI>
<LI><B>2000-03-05</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/internal/about.html">internal/about.html</A>

</P>
<P><A HREF="/internal/developer.html">internal/developer.html</A>

</P>
<P><A HREF="/internal/homepage.pl">internal/homepage.pl</A>

</P>
<P><A HREF="/internal/photos.html">internal/photos.html</A>

</P>

<PRE>www.FreeBSD.org/~folk -&gt; people.FreeBSD.org/~folk</PRE></LI>
<LI><B>2000-03-05</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/releases/index.html">releases/index.html</A>

</P>
<PRE>Fix link to Release Usage statistics.</PRE></LI>
<LI><B>2000-03-02</B>


&lt;<A HREF="mailto:phantom@FreeBSD.org">phantom@FreeBSD.org</A>&gt;
<P><A HREF="/java/Makefile">java/Makefile</A>

</P>
<P><A HREF="/java/Makefile.inc">java/Makefile.inc</A>

</P>
<P><A HREF="/java/dists/Makefile">java/dists/Makefile</A>

</P>
<P><A HREF="/java/docs/Makefile">java/docs/Makefile</A>

</P>
<P><A HREF="/java/links/Makefile">java/links/Makefile</A>

</P>

<PRE>Re-arrange java/ Makefiles to keep general www/ style.

Remove WEBBASE assignment from all Makefiles. It's located in Makefile.inc now.</PRE></LI>
</UL>

      <A HREF="news.html">News Home</A>
      <HR NOSHADE>
<ADDRESS><A HREF="../mailto.html">freebsd-questions@FreeBSD.ORG</A><BR>
  Copyright &copy; 1995-2000 The FreeBSD Project.  
  All rights reserved.<BR>Last modified: 2000/01/09 19:38:49</ADDRESS>
  </BODY>
</HTML>

--a8Wt8u1KmwUX3Y2C--


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000331124450.A5965>