gcc/libjava/classpath/doc/www.gnu.org
Mark Wielaard 8aa540d2f7 Imported GNU Classpath 0.90
Imported GNU Classpath 0.90
       * scripts/makemake.tcl: Set gnu/java/awt/peer/swing to ignore.
       * gnu/classpath/jdwp/VMFrame.java (SIZE): New constant.
       * java/lang/VMCompiler.java: Use gnu.java.security.hash.MD5.
       * java/lang/Math.java: New override file.
       * java/lang/Character.java: Merged from Classpath.
       (start, end): Now 'int's.
       (canonicalName): New field.
       (CANONICAL_NAME, NO_SPACES_NAME, CONSTANT_NAME): New constants.
       (UnicodeBlock): Added argument.
       (of): New overload.
       (forName): New method.
       Updated unicode blocks.
       (sets): Updated.
       * sources.am: Regenerated.
       * Makefile.in: Likewise.

From-SVN: r111942
2006-03-10 21:46:48 +00:00
..
announce Imported GNU Classpath 0.90 2006-03-10 21:46:48 +00:00
cp-tools Imported GNU Classpath 0.19 + gcj-import-20051115. 2005-11-15 23:20:01 +00:00
docs .cvsignore are not needed for subversion, remove them. 2005-10-31 18:20:58 +01:00
downloads Imported GNU Classpath 0.90 2006-03-10 21:46:48 +00:00
events Imported GNU Classpath 0.20 2006-01-17 18:09:40 +00:00
faq .cvsignore are not needed for subversion, remove them. 2005-10-31 18:20:58 +01:00
include Imported GNU Classpath 0.19 + gcj-import-20051115. 2005-11-15 23:20:01 +00:00
benchmarks.wml
bugs.wml
corba.wml Imported GNU Classpath 0.19 + gcj-import-20051115. 2005-11-15 23:20:01 +00:00
external.wml
home.wml Imported GNU Classpath 0.19 + gcj-import-20051115. 2005-11-15 23:20:01 +00:00
inetlib.wml
license.wml
Makefile
news.wml
newsitems.txt Imported GNU Classpath 0.90 2006-03-10 21:46:48 +00:00
README
savannah.css
stories.wml
tasks.wml Imported GNU Classpath 0.19 + gcj-import-20051115. 2005-11-15 23:20:01 +00:00

All HTML files are generated from WML source.

If you wish to generate/view the HTML files locally, you'll need to
have wml and texi2html installed.  To make the HTML files, just
type "make".


Quick and dirty "How To"

How to create a webpage:

1. When working in a subdirectory, begin the page with:
   #!wml --include=..

2. Add:
   #include "include/layout.wml"

3. Add <subject "page title">

   this will set the page title to:
   "page title - GNU Project -Free Software Foundation (FSF)" 

4. Write your contents. Use the following pattern:

  <box>
    <boxtitle>...section title...</boxtitle>
    <boxitem>...section contents...</boxitem>

    <boxtitle>...section title...</boxtitle>
    <boxitem>...section contents...</boxitem>
  </box>

5. To change the menu entries, edit include/layout.wml

6. Call make to build the pages.

7. Set "CLASSPATH_WEBROOT" to a directory before calling "make publish"
   to deploy the pages locally

A few useful tags (defined in layout.wml)

* <createlink name="name" url="url>

creates a <a href="url">name</a> entry

Some pages define their own tags (e.g. faq.wml, tools.wml, downloads.wml)
to organize their content.


Guide to the custom-defined tags
--------------------------------

Links
  Description:
    creates a <a href="url">name</a> entry; if name is missing, uses the url 
    as name
  Availability:
    everywhere (defined in macros.wml)
  Format:
    <createlink name="name" url="url>
    <createlink url="url>

Commented code
  Description:
    creates a commented code example
  Availability:
    everywhere (defined in macros.wml)
  Format:
    <commented-code>
      <code-line code="1st code-line">comment to 1st line of code</code-line>
      <code-line code="2nd code-line">comment to 2nd line of code</code-line>
      <code-line code="3rd code-line" />
    </commented-code>


FAQ-Lists

  <faq-section name="section name">
    <faq question="1st question">
      1st answer
    </faq>
    <faq question="2nd question">
      2nd answer
    </faq>
  </faq-section>
  <faq-section name="section name">
    <faq question="1st question">
      1st answer
    </faq>
  </faq-section>

Project Tables
  Description:
    Define a project in a project table
  Example: 
    stories.wml
  Availability:
    everywhere (defined in macros.wml)
  Format:
    <project-list>
      <project name="proj name"  url="proj url">
        project description
      </project>
      <project name="proj name"  url="proj url">
        project description
      </project>
    </project-list>