cvs commit: modperl-docs/src .htaccess

2002-01-28 Thread stas
stas02/01/27 17:53:22

  Modified:src  .htaccess
  Log:
  - add error document directive
  - remap the old location of the guide
  
  Revision  ChangesPath
  1.2   +8 -1  modperl-docs/src/.htaccess
  
  Index: .htaccess
  ===
  RCS file: /home/cvs/modperl-docs/src/.htaccess,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- .htaccess 28 Jan 2002 01:48:52 -  1.1
  +++ .htaccess 28 Jan 2002 01:53:22 -  1.2
  @@ -1,7 +1,14 @@
  +
  +ErrorDocument 404 /404.html
  +
  +### URI remapping ###
  +
  +RedirectPermanent /guide/ /docs/1.0/guide/
  +
   # embperl
   RedirectPermanent /Embperl/ http://perl.apache.org/embperl/
   RedirectPermanent /perl/Embperl/ http://perl.apache.org/embperl/
   RedirectPermanent /embperl.html /embperl/
   
   # ASP
  -Redirect /asp http://www.apache-asp.org/
  +RedirectPermanent /asp http://www.apache-asp.org/
  
  
  

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



cvs commit: modperl-docs/tmpl/custom/html menu_top_level

2002-01-28 Thread stas
stas02/01/27 20:14:21

  Modified:src  style.css
   tmpl/custom/html menu_top_level
  Log:
  - use a more explicit div name: s/selected/selectedmenuitem/
  
  Revision  ChangesPath
  1.12  +10 -10modperl-docs/src/style.css
  
  Index: style.css
  ===
  RCS file: /home/cvs/modperl-docs/src/style.css,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- style.css 28 Jan 2002 04:06:03 -  1.11
  +++ style.css 28 Jan 2002 04:14:21 -  1.12
  @@ -74,28 +74,28 @@
   background-color: #ff;
   }
   
  -div.selected {
  +div.selectedmenuitem {
   font-weight: bold;
   font-size:12px;
   margin-bottom:5px;
   margin-top:5px;
   }
   
  -div.selected a:link{text-decoration: none; color: #525D76;}
  -div.selected a:visited {text-decoration: none; color: #525D76;}
  -div.selected a:active  {text-decoration: none; color: #525D76;}
  -div.selected a:hover   {text-decoration: none; color: #525D76;}
  +div.selectedmenuitem a:link{text-decoration: none; color: #525D76;}
  +div.selectedmenuitem a:visited {text-decoration: none; color: #525D76;}
  +div.selectedmenuitem a:active  {text-decoration: none; color: #525D76;}
  +div.selectedmenuitem a:hover   {text-decoration: none; color: #525D76;}
   
  -div.nonselected {
  +div.nonselectedmenuitem {
   font-size:12px;
   margin-bottom:5px;
   margin-top:5px;
   }
   
  -div.nonselected a:link{text-decoration: none; color: #525D76;}
  -div.nonselected a:visited {text-decoration: none; color: #525D76;}
  -div.nonselected a:active  {text-decoration: none; color: #525D76;}
  -div.nonselected a:hover   {text-decoration: none; color: #525D76;}
  +div.nonselectedmenuitem a:link{text-decoration: none; color: #525D76;}
  +div.nonselectedmenuitem a:visited {text-decoration: none; color: #525D76;}
  +div.nonselectedmenuitem a:active  {text-decoration: none; color: #525D76;}
  +div.nonselectedmenuitem a:hover   {text-decoration: none; color: #525D76;}
   
   div.ad {
   width: 160px;
  
  
  
  1.8   +2 -2  modperl-docs/tmpl/custom/html/menu_top_level
  
  Index: menu_top_level
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/menu_top_level,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- menu_top_level28 Jan 2002 04:06:03 -  1.7
  +++ menu_top_level28 Jan 2002 04:14:21 -  1.8
  @@ -33,9 +33,9 @@
  count = count + 1;
  link = INCLUDE link prefix=prefix link=p.meta.link;
  IF p.id == current.id;
  -   style = 'selected';
  +   style = 'selectedmenuitem';
  ELSE;
  -   style = 'nonselected';
  +   style = 'nonselectedmenuitem';
  END;
  buttons.push({link = link, text = p.meta.stitle, style = style});
  p = p.next; # next node
  
  
  

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



cvs commit: modperl-docs/src/docs/2.0/devel/debug_c debug_c.pod

2002-01-28 Thread stas
stas02/01/28 08:23:56

  Modified:src/docs/2.0/devel/debug_c debug_c.pod
  Log:
  - use `pwd` instead of real path, easier to re-use!
  
  Revision  ChangesPath
  1.3   +2 -3  modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod
  
  Index: debug_c.pod
  ===
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/debug_c/debug_c.pod,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- debug_c.pod   15 Jan 2002 12:34:19 -  1.2
  +++ debug_c.pod   28 Jan 2002 16:23:56 -  1.3
  @@ -40,8 +40,7 @@
   To automate things you can put those in the I.gdb-jump-to-init file:
   
 b apr_dso_load
  -  run -DONE_PROCESS -d /home/stas/apache.org/modperl-perlmodule/t \
  -  -f /home/stas/apache.org/modperl-perlmodule/t/conf/httpd.conf
  +  run -DONE_PROCESS -d `pwd`/t -f `pwd`/t/conf/httpd.conf
 finish
 b modperl_hook_init
 continue
  @@ -49,7 +48,7 @@
   and then start the debugger with:
   
 % gdb /home/stas/httpd-2.0/bin/httpd -command \
  -  /home/stas/apache.org/modperl-perlmodule/t/.gdb-jump-to-init
  +  `pwd`/t/.gdb-jump-to-init
   
   =head2 Starting the Server Fast under gdb
   
  
  
  

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