RE: cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml index.xml style.css.in style.xsl.in

2002-07-01 Thread GOMEZ Henri

Hey, it seems Nacho goes to bug hunting in xsl, good news,
since I'm working on using xdocs for jk 1.2.0.

BTW, how could we have xdocs handling at both time between jk and jk2 ?

I was thinking at the following layout :

xdocs
xdocs/common(ajp13)
xdocs/jk1   (buildingap, buildingiis, buildingiplanet,
   configap, configiis, configiplanet,
   faq)

xdocs/jk2   (buildingap, buildingiis, buildingiplanet,
   configap, configiis, configiplanet,
   faq)

The goal could be :

Having a full jk/jk2 on jakarta, and only jk in a mod_jk tarball
and only jk2 in a mod_jk2 tarball.


-
Henri Gomez ___[_]
EMAIL : [EMAIL PROTECTED](. .) 
PGP KEY : 697ECEDD...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml index.xml style.css.in style.xsl.in

2002-07-01 Thread Ignacio J. Ortega

 xdocs
 xdocs/common  (ajp13)
 xdocs/jk1 (buildingap, buildingiis, buildingiplanet,
configap, configiis, configiplanet,
faq)
 
 xdocs/jk2 (buildingap, buildingiis, buildingiplanet,
configap, configiis, configiplanet,
faq)

+1, but i would like to see JFC opinion prior to change..

I would like to have an independent build.xml at xdocs too..

Saludos ,
Ignacio J. Ortega



msg29927/bin0.bin
Description: application/ms-tnef

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml

2002-07-01 Thread nacho

nacho   2002/07/01 16:42:24

  Modified:jk/xdocs configweb.xml
  Log:
  * Borrow :) some text from original costin's texts in html..
  
  Revision  ChangesPath
  1.4   +79 -219   jakarta-tomcat-connectors/jk/xdocs/configweb.xml
  
  Index: configweb.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/configweb.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- configweb.xml 30 Jun 2002 03:32:01 -  1.3
  +++ configweb.xml 1 Jul 2002 23:42:24 -   1.4
  @@ -6,9 +6,12 @@
   author email=[EMAIL PROTECTED]Jean-Frederic 
Clere/author
   /properties
   section name=Intro
  +pJk2 uses a config file ( workers2.properties ) in the style of a 
.properties or ini
  + file. It can be configured to use any other backend that provides similar
  + capabilities.
  +  /p
   p
  -  This document describes the configuration file used by mod_jk2 on the
  -  Web Server site. Its default name is ${serverRoot}/conf/workers2.properties,
  +  This document describes the format of this configuration file. Its default name 
is ${serverRoot}/conf/workers2.properties,
 where ${serverRoot} is something like /opt/apache.
   /p
   /section
  @@ -17,30 +20,60 @@
   subsection name=Apache 2/
   subsection name=IIS/
   /section
  -section name=Config file/
  -section name=Components
  -pCommon properties for all components/p
  -p
  -table
  -tr
  -thProperty name/th
  -thDefault/th
  -thDescription/th
  -/tr
  -tr
  -tddisabled/td
  -td0 (false)/td
  -tddisabled state for the component, 1=true 0=false/td
  -/tr
  -tr
  -tddebug/td
  -td0 (false)/td
  -tddebug state for the component, 1=true 0=false/td
  -/tr
  -/table
  +section name=Config file
  +p The default config file is user editable, but mod_jk will persist the 
  +changes requested by protocol( not implemented). If you manually change the file 
while jk2 is 
  +working, your changes will be lost. 
  +  /p
  +pThe default configuration format . .  Each setting consists of an object 
  +name and a property, with the associated value. The property name is a simple
  + string, with no '.' in it. The name can be anything, but it must have a
  +known  'type' as prefix.  
  +  /p
  +p2 formats are supported:   
  +source
  +TYPE:NAME.PROPERTY=VALUE 
  +/source
  +/p
  +pand
  +source
  +[TYPE:NAME]
  +PROPERTY=VALUE
  +/source
   /p
  +/section
  +section name=ComponentspEach component instance has a name, that is used 
for configuration and at runtime. Each component has a number of configurable 
properties. The following rules are used:
  +ulliThe name is composed from the type and a local part, separated with a ':' ( 
example: channel.unixsocket:/tmp/jk.socket ) /li
  +liThe 'type' consist of '.' and ascii characters.  It is mapped to a JMX 
'domain'.  /li
  +liThe local part consists of ascii characters and .:/; 
  +pNote that '=,' are not currently allowed - a future version may support the jmx 
syntax by using quotes to separate the local part from the property and value ( in 
.properties mode we must use '=' to separate the value from type, local name and 
property name ). /p/li
  +liThe property is a simple name, with no dots. /li
  +liA simple form of substitution is used in values, where $(property) will be 
replaced with a previously defined setting. If the property has ':' in it, it'll take 
the value from the object, if not it'll take the value from a global map./li/ul/p
  +subsection name=Common properties
  +pCommon properties for all components/p
  +p
  +table
  +tr
  +thProperty name/th
  +thDefault/th
  +thDescription/th
  +/tr
  +tr
  +tddisabled/td
  +td0 (false)/td
  +tddisabled state for the component, 1=true 0=false/td
  +/tr
  +tr
  +tddebug/td
  +td0 (false)/td
  +tddebug state for the component, 1=true 0=false/td
  +/tr
  +/table
  +/p
  +/subsection
   subsection name=workerEnv
  -pThis component represent the core jk2, this has the default logger 

cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml index.xml style.css.in style.xsl.in

2002-06-29 Thread nacho

nacho   2002/06/29 20:32:02

  Modified:jk/xdocs configweb.xml index.xml style.css.in style.xsl.in
  Log:
  Adding some more docs,  i dont know already wich is the good layout for the 
components and his properties.. :), i hope we found it sound
  
  Revision  ChangesPath
  1.3   +539 -206  jakarta-tomcat-connectors/jk/xdocs/configweb.xml
  
  Index: configweb.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/configweb.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- configweb.xml 20 Jun 2002 20:38:41 -  1.2
  +++ configweb.xml 30 Jun 2002 03:32:01 -  1.3
  @@ -1,79 +1,438 @@
   ?xml version=1.0?
   document
  -  properties
  -titleConfiguration in the Web Server/title
  -author email=[EMAIL PROTECTED]Costin Manolache/author
  -author email=[EMAIL PROTECTED]Jean-Frederic Clere/author
  -  /properties
  -
  -section name=Intro
  -p
  +properties
  +titleConfiguration in the Web Server/title
  +author email=[EMAIL PROTECTED]Costin Manolache/author
  +author email=[EMAIL PROTECTED]Jean-Frederic 
Clere/author
  +/properties
  +section name=Intro
  +p
 This document describes the configuration file used by mod_jk2 on the
 Web Server site. Its default name is ${serverRoot}/conf/workers2.properties,
 where ${serverRoot} is something like /opt/apache.
   /p
  -/section
  -
  -section name=Config options
  -p
  +/section
  +section name=Installation
  +subsection name=Apache 1/
  +subsection name=Apache 2/
  +subsection name=IIS/
  +/section
  +section name=Config file/
  +section name=Components
  +pCommon properties for all components/p
  +p
  +table
  +tr
  +thProperty name/th
  +thDefault/th
  +thDescription/th
  +/tr
  +tr
  +tddisabled/td
  +td0 (false)/td
  +tddisabled state for the component, 1=true 0=false/td
  +/tr
  +tr
  +tddebug/td
  +td0 (false)/td
  +tddebug state for the component, 1=true 0=false/td
  +/tr
  +/table
  +/p
  +subsection name=workerEnv
  +pThis component represent the core jk2, this has the default logger 
for all other components/p
  +p
  +table
  +tr
  +thProperty name/th
  +thDefault/th
  +thDescription/th
  +/tr
  +tr
  +tdlogger/td
  +tdlogger/td
  +tdDefault loger used by jk2 components, can be changed in 
the config file, normally it defaults to logger the Alias for the default logger for 
the Server/platform./td
  +/tr
  +tr
  +tdtiming/td
  +td0/td
  +tdWill jk2 get request timing (needs APR?)/td
  +/tr
  +/table
  +/p
  +/subsection
  +subsection name=config
  +pThe config component, hold the detail of the conifg system, such 
config file name, create global defines/p
  +p
  +table
  +tr
  +thProperty name/th
  +thDefault/th
  +thDescription/th
  +/tr
  +tr
  +tddebugEnv/td
  +td0/td
  +tdSet the debug level of the hidden env component /td
  +/tr
  +/table
  +/p
  +/subsection
  +subsection name=uriMap/
  +subsection name=shm
  +pShared memory descriptor/p
  +p
  +table
  +tr
  +thProperty name/th
  +thDefault/th
  +thDescription/th
  +/tr
  +tr
  +tdfile/td
  +tdNo default value/td
  +tdName of the file that will be mmapped to use as shared 
memory./td
  +/tr
  +tr
  +tdsize/td
  +tdNo default value/td
  +tdSize of the file./td
  +/tr
  +/table
  +/p
  +/subsection
  +subsection name=uri
  +pMaps a resource to a worker/p
  +

cvs commit: jakarta-tomcat-connectors/jk/xdocs configweb.xml

2002-06-20 Thread jfclere

jfclere 2002/06/20 13:38:41

  Modified:jk/xdocs configweb.xml
  Log:
  Remove the lines of normal socket that were in the AF_UNIX socket example.
  
  Revision  ChangesPath
  1.2   +0 -4  jakarta-tomcat-connectors/jk/xdocs/configweb.xml
  
  Index: configweb.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/configweb.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- configweb.xml 20 Jun 2002 10:02:19 -  1.1
  +++ configweb.xml 20 Jun 2002 20:38:41 -  1.2
  @@ -299,10 +299,6 @@
   [channel.un:unixsocket]
   file=/home1/jakarta/jakarta-tomcat-4.1/dist/work/jk2.socket
   
  -[channel.socket:localhost:8019]
  -port=8019
  -host=127.0.0.1
  -
   # define the worker
   [ajp13:unixsocket]
   channel=channel.un:unixsocket
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]