cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-06-06 Thread mturk
mturk   2005/06/06 01:53:06

  Modified:jni  build.xml
  Log:
  Add run targets for 'echo-example' and 'server-example'.
  Also add PATH and Path (for WIN) environment.
  
  Revision  ChangesPath
  1.7   +29 -17jakarta-tomcat-connectors/jni/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 16 Apr 2005 09:53:42 -  1.6
  +++ build.xml 6 Jun 2005 08:53:06 -   1.7
  @@ -37,8 +37,8 @@
   
   
   
  -   
  -   
  +  
  +  
   
   
   
  @@ -152,22 +152,22 @@
   
   
   
  -   
  +  
   
  - 
  -   
  - 
  - 
  -   
  - 
  -   
  +
  +  
  +
  +
  +  
  +
  +  
   
  - 
  +
   
   
   
  @@ -289,11 +289,23 @@
   
   
   
  -
  +
   
   
   
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
   
   
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-04-16 Thread jfclere
jfclere 2005/04/16 02:53:42

  Modified:jni  build.xml
  Log:
  use example instead compile-example (why do with need compile-example?).
  
  Revision  ChangesPath
  1.6   +1 -1  jakarta-tomcat-connectors/jni/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 16 Apr 2005 09:35:57 -  1.5
  +++ build.xml 16 Apr 2005 09:53:42 -  1.6
  @@ -289,7 +289,7 @@
   
   
   
  -
  +
   
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-04-16 Thread jfclere
jfclere 2005/04/16 02:35:57

  Modified:jni  build.xml
  Log:
  Add tc.library.path to help the JVM to find the library.
  
  Revision  ChangesPath
  1.5   +3 -0  jakarta-tomcat-connectors/jni/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml 15 Apr 2005 21:57:08 -  1.4
  +++ build.xml 16 Apr 2005 09:35:57 -  1.5
  @@ -35,6 +35,7 @@
   
   
   
  +
   
  
  
  @@ -66,6 +67,7 @@
   
  +
   
   
   
  @@ -292,6 +294,7 @@
   
   
  +
   
   
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-04-15 Thread jfclere
jfclere 2005/04/15 14:57:08

  Modified:jni  build.xml
  Log:
  The example is named Echo for moment.
  
  Revision  ChangesPath
  1.4   +2 -2  jakarta-tomcat-connectors/jni/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml 14 Apr 2005 18:52:28 -  1.3
  +++ build.xml 15 Apr 2005 21:57:08 -  1.4
  @@ -288,8 +288,8 @@
   
   
   
  -
  -
  +
   
   
  
  
  

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



cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-04-14 Thread remm
remm2005/04/14 11:52:28

  Modified:.build.xml
   jni  build.xml
  Added:   http11/src/java/org/apache/coyote/http11
InternalAprOutputBuffer.java Http11AprProtocol.java
Http11AprProcessor.java InternalAprInputBuffer.java
   util/java/org/apache/tomcat/util/net AprEndpoint.java
  Log:
  - Add HTTP on APR.
  - A few things are not implemented yet, as I don't know how to use the Adress 
class well enough ;)
  - Thanks to Mladen for all the information, and for patiently answering my 
silly questions.
  - The logic which polls the socket before deciding if the socket should go to 
the poller needs to be redone.
  
  Revision  ChangesPath
  1.228 +27 -0 jakarta-tomcat-5/build.xml
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-5/build.xml.diff?r1=1.227&r2=1.228
  
  
  1.1  
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalAprOutputBuffer.java
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalAprOutputBuffer.java?rev=1.1
  
  
  1.1  
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProtocol.java
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProtocol.java?rev=1.1
  
  
  1.1  
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProcessor.java
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProcessor.java?rev=1.1
  
  
  1.1  
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalAprInputBuffer.java
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/InternalAprInputBuffer.java?rev=1.1
  
  
  1.1  
jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/AprEndpoint.java
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/net/AprEndpoint.java?rev=1.1
  
  
  1.3   +18 -1 jakarta-tomcat-connectors/jni/build.xml
  
  
http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/jni/build.xml.diff?r1=1.2&r2=1.3
  
  

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



cvs commit: jakarta-tomcat-connectors/jni build.xml

2005-02-05 Thread mturk
mturk   2005/02/05 04:33:25

  Modified:jni  build.xml
  Log:
  Add examples to build
  
  Revision  ChangesPath
  1.2   +40 -1 jakarta-tomcat-connectors/jni/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jni/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 15 Jan 2005 11:27:31 -  1.1
  +++ build.xml 5 Feb 2005 12:33:25 -   1.2
  @@ -39,7 +39,7 @@
   
   
   
  -
  +
   
   
   
  @@ -148,6 +148,45 @@
   
   
   
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
  +
   
   
   
  
  
  

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