You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2001/07/30 21:16:25 UTC

cvs commit: jakarta-tomcat-4.0/webapps/tomcat-docs/config index.xml project.xml

craigmcc    01/07/30 12:16:25

  Modified:    webapps/tomcat-docs build.xml index.xml project.xml
  Added:       webapps/tomcat-docs/config index.xml project.xml
  Log:
  Check in the infrastructure to begin converting the server configuration
  reference documents.
  
  Revision  Changes    Path
  1.3       +13 -0     jakarta-tomcat-4.0/webapps/tomcat-docs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	2001/07/28 22:47:42	1.2
  +++ build.xml	2001/07/30 19:16:24	1.3
  @@ -103,6 +103,9 @@
       <copy    todir="${webapp.work}/appdev">
         <fileset dir="${site2.home}/xdocs/stylesheets" includes="site.xsl"/>
       </copy>
  +    <copy    todir="${webapp.work}/config">
  +      <fileset dir="${site2.home}/xdocs/stylesheets" includes="site.xsl"/>
  +    </copy>
   
       <!-- Top Level Directory -->
       <style basedir="${webapp.work}"
  @@ -117,6 +120,16 @@
       <!-- Application Developer's Guide -->
       <style basedir="${webapp.work}/appdev"
              destdir="${webapps.build}/${webapp.name}/appdev"
  +         extension=".html"
  +             style="site.xsl"
  +          excludes="project.xml"
  +          includes="*.xml">
  +      <param name="relative-path" expression="."/>
  +    </style>
  +
  +    <!-- Server Configuration Reference -->
  +    <style basedir="${webapp.work}/config"
  +           destdir="${webapps.build}/${webapp.name}/config"
            extension=".html"
                style="site.xsl"
             excludes="project.xml"
  
  
  
  1.2       +6 -0      jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml	2001/07/28 22:54:13	1.1
  +++ index.xml	2001/07/30 19:16:24	1.2
  @@ -50,6 +50,12 @@
   <p>The following documents are aimed at <em>System Administrators</em> who
   are responsible for installing, configuring, and operating a Tomcat 4 server.
   </p>
  +<ul>
  +<li><a href="config/index.html"><strong>Server Configuration Reference</strong></a>
  +    - Reference manual that documents all available elements and attributes
  +      that may be placed into a Tomcat 4 <code>conf/server.xml</code> file.
  +    </li>
  +</ul>
   
   </section>
   
  
  
  
  1.2       +1 -3      jakarta-tomcat-4.0/webapps/tomcat-docs/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/tomcat-docs/project.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- project.xml	2001/07/28 22:54:13	1.1
  +++ project.xml	2001/07/30 19:16:24	1.2
  @@ -19,9 +19,7 @@
       </menu>
   
       <menu name="Administrators">
  -<!--
  -        <item name="Configuration"         href="/config/index.html"/>
  --->
  +        <item name="Config. Reference"     href="/config/index.html"/>
       </menu>
   
       <menu name="App Developers">
  
  
  
  1.1                  jakarta-tomcat-4.0/webapps/tomcat-docs/config/index.xml
  
  Index: index.xml
  ===================================================================
  <?xml version="1.0"?>
  <document>
  
    <properties>
      <author email="craigmcc@apache.org">Craig R. McClanahan</author>
      <title>Overview</title>
    </properties>
  
  <body>
  
  
  <section name="Overview">
  
  <p>This manual contains reference information about all of the configuration
  directives that can be included in a <code>conf/server.xml</code> file to
  configure the behavior of the Tomcat 4 servlet/JSP container.  It does not
  attempt to describe which configuration directives should be used to perform
  specific tasks - for that, see the <em>Server Configuration Guide</em> and
  related documents.  (TODO - will need hyperlink(s) to this).</p>
  
  <p>TODO - add some verbage about the overall organization of conf/server.xml
  and the valid nesting that is allowed.</p>
  
  <p>TODO - add a brief description of the categories of elements listed in
  the navigation menu (top level, connectors, containers, nested).</p>
  
  </section>
  
  
  </body>
  </document>
  
  
  
  1.1                  jakarta-tomcat-4.0/webapps/tomcat-docs/config/project.xml
  
  Index: project.xml
  ===================================================================
  <?xml version="1.0" encoding="ISO-8859-1"?>
  <project name="Server Configuration Reference"
          href="http://jakarta.apache.org/tomcat/">
  
      <title>Server Configuration Reference</title>
  
      <logo href="http://jakarta.apache.org/tomcat/images/tomcat.gif">
        The Tomcat Servlet/JSP Container
      </logo>
  
      
      <body>
  
      <menu name="Links">
          <item name="Docs Home"             href="/.."/>
          <item name="Config Reference"      href="/index.html"/>
      </menu>
  
      <menu name="Top Level Elements">
          <item name="Server"                href="/server.html"/>
          <item name="Service"               href="/service.html"/>
      </menu>
  
      <menu name="Connectors">
          <item name="HTTP/1.1"              href="/http11.html"/>
          <item name="Warp"                  href="/warp.html"/>
      </menu>
  
      <menu name="Containers">
          <item name="Context"               href="/context.html"/>
          <item name="Engine"                href="/engine.html"/>
          <item name="Host"                  href="/host.html"/>
      </menu>
  
      <menu name="Nested Elements">
          <item name="Default Context"       href="/defaultcontext.html"/>
          <item name="Loader"                href="/loader.html"/>
          <item name="Logger"                href="/logger.html"/>
          <item name="Manager"               href="/manager.html"/>
          <item name="Realm"                 href="/realm.htlm"/>
          <item name="Resources"             href="/resources.html"/>
          <item name="Valve"                 href="/valve.html"/>
      </menu>
  
      </body>
  </project>