cvs commit: apache-site/info/css-security encoding_examples.html

2000-02-03 Thread marc
marc00/02/02 16:30:38

  Modified:info/css-security encoding_examples.html
  Log:
  Fix typo.
  
  Submitted by: Sander van Zoest <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.5   +1 -1  apache-site/info/css-security/encoding_examples.html
  
  Index: encoding_examples.html
  ===
  RCS file: 
/export/home/cvs/apache-site/info/css-security/encoding_examples.html,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- encoding_examples.html2000/02/02 19:26:03 1.4
  +++ encoding_examples.html2000/02/03 00:30:31 1.5
  @@ -139,7 +139,7 @@
   $Text = "foobar";
   $URL = "foobar.html";
   $r->print(Apache::Util::escape_html($Text), "
"); -$r->print("link"); +$r->print("link"); This uses the same functions as in the Apache Module Example, called

cvs commit: apache-site/info/css-security index.html

marc00/02/02 21:16:05

  Modified:info/css-security index.html
  Log:
  Could be some people with useful comments or suggestions.  Maybe.
  Perhaps.  Possibly.
  
  Revision  ChangesPath
  1.2   +7 -0  apache-site/info/css-security/index.html
  
  Index: index.html
  ===
  RCS file: /export/home/cvs/apache-site/info/css-security/index.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.html2000/02/02 18:02:49 1.1
  +++ index.html2000/02/03 05:16:04 1.2
  @@ -128,6 +128,13 @@
   have had more important things to do than think of a better name.
   .
   
  +Comments and Suggestions
  +
  +You can send any comments or suggestions about this set of pages to 
  +mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED].  Note that I
  +can not respond to questions or requests for assistance, so if that is
  +what you are about to send then please save yourself the effort.
  +
   Change History
   
   Wed Feb  2 01:06:01 MST 2000: initial revision.
  
  
  


cvs commit: apache-1.3/htdocs/manual/mod directives.html

martin  00/02/03 03:54:29

  Modified:htdocs/manual/mod directives.html
  Log:
  Add missing references (they *WERE* in marc's first patch?!?!)
  
  Revision  ChangesPath
  1.62  +2 -0  apache-1.3/htdocs/manual/mod/directives.html
  
  Index: directives.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/directives.html,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- directives.html   2000/01/31 22:56:48 1.61
  +++ directives.html   2000/02/03 11:54:28 1.62
  @@ -31,6 +31,8 @@
   AddAltByEncoding
   AddAltByType
   AddCharset
  +AddDefaultCharset
  +AddDefaultCharsetName
   AddDescription
   AddEncoding
   AddHandler
  
  
  


cvs commit: apache-1.3/src/main http_core.c

jim 00/02/03 06:22:36

  Modified:htdocs/manual/mod core.html directives.html
   src  CHANGES
   src/main http_core.c
  Log:
  Streamline the AddDefaultCharset directive. Now this one directive
  controls the entire 'charset' specification setup. If there is
  heartburn, I have no trouble with backing this out, but it makes
  live easier for those not using the "default" charset, and reduces
  directive bloat a bit :)
  
  Reviewed by:  Martin
  
  Revision  ChangesPath
  1.164 +9 -25 apache-1.3/htdocs/manual/mod/core.html
  
  Index: core.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/core.html,v
  retrieving revision 1.163
  retrieving revision 1.164
  diff -u -r1.163 -r1.164
  --- core.html 2000/02/02 20:43:11 1.163
  +++ core.html 2000/02/03 14:22:25 1.164
  @@ -24,7 +24,6 @@
   AccessConfig
   AccessFileName
   AddDefaultCharset
  -AddDefaultCharsetName
   AddModule
   AllowOverride
   AuthName
  @@ -167,38 +166,23 @@
   
   AddDefaultCharset directive
   Syntax: 
  -AddDefaultCharset on / off
  +AddDefaultCharset None / Default / charset
   Context: 
   all
   Status: 
   core
   Default:
  -AddDefaultCharset off
  +AddDefaultCharset None
   Compatibility:
  - AddDefaultCharset is only available in Apache 1.3.12 and 
later
  -If enabled, any response that does not have any parameter on the content 
  -type in the HTTP headers will have a charset parameter added specifying 
  -the character set the client should use for the document.  This will 
  -override any character set specified in the body of the document via a 
  -META tag.  The character set added is specified by the 
  -AddDefaultCharsetName directive.
  -
  -
  -AddDefaultCharsetName directive
  -Syntax: 
  -AddDefaultCharsetName charset
  -Context: 
  -all
  -Status: 
  -core
  -Default:
  -AddDefaultCharsetName iso-8859-1
  -Compatibility:
  - AddDefaultCharsetName is only available in Apache 1.3.12 and 
  + AddDefaultCharset is only available in Apache 1.3.12 and 
   later
   This directive specifies the name of the character set that will be added
  -if the AddDefaultCharset directive is 
  -enabled.
  +to any response that does not have any parameter on the content
  +type in the HTTP headers. This will override any character set specified
  +in the body of the document via a META tag. A setting
  +of AddDefaultCharset None disables this functionality.
  +AddDefaultCharset Default is the exact same as
  +AddDefaultCharsetName iso-8859-1.
   
   
   AddModule directive
  
  
  
  1.63  +0 -1  apache-1.3/htdocs/manual/mod/directives.html
  
  Index: directives.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/mod/directives.html,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- directives.html   2000/02/03 11:54:28 1.62
  +++ directives.html   2000/02/03 14:22:26 1.63
  @@ -32,7 +32,6 @@
   AddAltByType
   AddCharset
   AddDefaultCharset
  -AddDefaultCharsetName
   AddDescription
   AddEncoding
   AddHandler
  
  
  
  1.1505+3 -4  apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.1504
  retrieving revision 1.1505
  diff -u -r1.1504 -r1.1505
  --- CHANGES   2000/02/02 20:43:28 1.1504
  +++ CHANGES   2000/02/03 14:22:28 1.1505
  @@ -4,10 +4,9 @@
ap_send_error_response(), such as the default 404 page.
[Marc Slemko]
   
  -  *) Add the AddDefaultCharset and AddDefaultCharsetName directives.  
  - These allow you to tell Apache to specify the given character
  - set on any document that does not have one explicitly specified in 
  - the headers.  [Marc Slemko]
  +  *) Add the AddDefaultCharset directive. This allows you to specify
  + the given character set on any document that does not have one
  + explicitly specified in the headers.  [Marc Slemko, Jim Jagielski]
   
 *) Properly escape various messages output to the client from a number
of modules and places in the core code.  [Marc Slemko]
  
  
  
  1.279 +12 -16apache-1.3/src/main/http_core.c
  
  Index: http_core.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/main/http_core.c,v
  retrieving revision 1.278
  retrieving revision 1.279
  diff -u -r1.278 -r1.279
  --- http_core.c   2000/02/02 20:43:46 1.278
  +++ http_core.c   2000/02/03 14:22:33 1.279
  @@ -1047,24 +1047,22 @@
   #endif /*GPROF*/
   
   static const char *set_add_default_charset(cmd_parms *cmd, 
  - core_dir_config *d, int arg)
  -{
  -const char *err = ap_check_cmd_context(cmd, NOT_IN_LIMIT);
  -if (err != NULL) {
  -return err;
  -   

cvs commit: apache-2.0/src/main http_main.c

rbb 00/02/03 11:38:12

  Modified:src/main http_main.c
  Log:
  APR requires that ap_initialize is called as one of the first functions.
  It sets up the rest of the APR types.  This was causing lockups whenever
  we tried to us an APR lock.
  
  Revision  ChangesPath
  1.28  +2 -0  apache-2.0/src/main/http_main.c
  
  Index: http_main.c
  ===
  RCS file: /home/cvs/apache-2.0/src/main/http_main.c,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- http_main.c   2000/01/28 18:01:14 1.27
  +++ http_main.c   2000/02/03 19:38:08 1.28
  @@ -308,6 +308,8 @@
   
   g_pHookPool=pglobal;
   
  +ap_initialize();
  +
   ap_setup_prelinked_modules(process);
   
   ap_create_context(&pcommands, pglobal);