cvs commit: modperl-docs/src/images/logo - New directory

2002-02-03 Thread stas
stas02/02/02 20:43:53

  modperl-docs/src/images/logo - New directory

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



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

2002-02-03 Thread stas
stas02/02/02 21:58:02

  Modified:.TODO
   src/images/nav page_nonext.gif page_noprev.gif
   tmpl/custom/html prev_next_link
  Log:
  - add the empty images for prev|next with no link and adjust the template
  to use these. This will ensure that the widget won't jiggle when there is
  no prev or next doc.
  
  Revision  ChangesPath
  1.8   +4 -0  modperl-docs/TODO
  
  Index: TODO
  ===
  RCS file: /home/cvs/modperl-docs/TODO,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TODO  30 Jan 2002 16:51:48 -  1.7
  +++ TODO  3 Feb 2002 05:58:02 -   1.8
  @@ -1,5 +1,9 @@
   # things to do for mod_perl site infrastructure
   
  +- Basic
  +
  + o The ads crash NS4 (any version)
  +
   - Menu: 
   
 o Need to try to make the menu smaller
  
  
  
  1.2   +1 -2  modperl-docs/src/images/nav/page_nonext.gif
  
Binary file
  
  
  1.2   +1 -1  modperl-docs/src/images/nav/page_noprev.gif
  
Binary file
  
  
  1.4   +4 -0  modperl-docs/tmpl/custom/html/prev_next_link
  
  Index: prev_next_link
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/prev_next_link,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- prev_next_link3 Feb 2002 04:47:01 -   1.3
  +++ prev_next_link3 Feb 2002 05:58:02 -   1.4
  @@ -9,12 +9,16 @@
  IF prev;
   link = INCLUDE link prefix=rel_doc_root link=prev.meta.link;
   a href='$link'img 
src='${doc.dir.abs_doc_root}/images/nav/page_prev.gif' ALT='prev' border=0 
width=48 heigth=20/a;
  +   ELSE;
  +img src='${doc.dir.abs_doc_root}/images/nav/page_noprev.gif' 
ALT='next' border=0 width=49 heigth=20;
  END;
   %]a href='[% rel_doc_root %]/index.html'img src='[% doc.dir.abs_doc_root 
%]/images/nav/page_parent.gif' ALT='up' border=0 heigth=20 width=25/a[% 
  next = nav.next;
  IF next;
   link = INCLUDE link prefix=rel_doc_root link=next.meta.link;
   a href='$link'img 
src='${doc.dir.abs_doc_root}/images/nav/page_next.gif' ALT='next' border=0 
width=49 heigth=20/a;
  +   ELSE;
  +img src='${doc.dir.abs_doc_root}/images/nav/page_nonext.gif' 
ALT='next' border=0 width=49 heigth=20;
  END;
   %]
   /div
  
  
  

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



cvs commit: modperl-docs/src/images bgline.gif bgline.jpg

2002-02-03 Thread stas
stas02/02/02 22:26:43

  Modified:src  style.css
  Added:   src/images bgline.gif
  Removed: src/images bgline.jpg
  Log:
  - use gif as a bg image
  
  Revision  ChangesPath
  1.15  +2 -1  modperl-docs/src/style.css
  
  Index: style.css
  ===
  RCS file: /home/cvs/modperl-docs/src/style.css,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- style.css 31 Jan 2002 01:44:11 -  1.14
  +++ style.css 3 Feb 2002 06:26:43 -   1.15
  @@ -3,7 +3,8 @@
   font-size: 0.8em;
   color: #00; 
   /* background-color: #66; */
  -background-image:url(images/bgline.jpg)
  +background-image:url(images/bgline.gif)
  +background:url(images/bgline.gif) /* NS4 */
   }
   
   .headline {
  
  
  
  1.1  modperl-docs/src/images/bgline.gif
  
Binary file
  
  

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



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

2002-02-03 Thread stas
stas02/02/02 22:51:35

  Modified:tmpl/custom/html wrap_box
  Log:
  - more space on the left before the menu items
  - reformat the template
  
  Revision  ChangesPath
  1.3   +6 -6  modperl-docs/tmpl/custom/html/wrap_box
  
  Index: wrap_box
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/wrap_box,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- wrap_box  3 Feb 2002 06:27:01 -   1.2
  +++ wrap_box  3 Feb 2002 06:51:35 -   1.3
  @@ -2,11 +2,11 @@
   # ARGS: title, content
   
   -%]
  -table class=table-surround width=150 cellspacing=1 cellpadding=3
  -  trth class=table-top align=center[% title %]/th/tr
  -trtd class=table-cell
  -
  -  [%- content %]
  -/td
  +table class=table-surround width=150 cellspacing=1 cellpadding=5
  +  tr
  +th class=table-top align=center[% title %]/th
  +  /tr
  +  tr
  +td class=table-cell[% content %]/td
 /tr
   /table
  
  
  

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



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

2002-02-03 Thread stas
stas02/02/02 23:07:20

  Modified:tmpl/custom/html ad
  Log:
  - tidy up
  
  Revision  ChangesPath
  1.9   +0 -2  modperl-docs/tmpl/custom/html/ad
  
  Index: ad
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/ad,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ad3 Feb 2002 07:06:31 -   1.8
  +++ ad3 Feb 2002 07:07:20 -   1.9
  @@ -18,7 +18,6 @@
  title = ''
   -%]
   div class=adtext
  -   br
   a href=http://www.modperlcookbook.org/;
   The mod_perl Developer's Cookbookbrbr
   img src=[% doc.dir.abs_doc_root %]/images/ads/modperlcookbook.jpg 
  @@ -34,7 +33,6 @@
  title = ''
   -%]
   div class=adtext
  -br
   a href=http://www.oreilly.com/catalog/modperlpr/;
mod_perl Pocket Referencebrbr
   img src=[% doc.dir.abs_doc_root %]/images/ads/modperlpr.jpg 
  
  
  

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



cvs commit: modperl-docs/src style.css

2002-02-03 Thread stas
stas02/02/03 01:07:38

  Modified:src  style.css
  Log:
  - untabify
  
  Revision  ChangesPath
  1.20  +7 -7  modperl-docs/src/style.css
  
  Index: style.css
  ===
  RCS file: /home/cvs/modperl-docs/src/style.css,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- style.css 3 Feb 2002 09:07:10 -   1.19
  +++ style.css 3 Feb 2002 09:07:38 -   1.20
  @@ -31,13 +31,13 @@
   
   pre {  
   white-space: pre;
  - font-family: profont, monaco, ocr-a, monospace, fixed;
  - font-size: 1em;;
  - line-height: normal;
  - color: black;
  - background-color: #dd;
  - padding: 6px; 
  - margin: .25em;
  +font-family: profont, monaco, ocr-a, monospace, fixed;
  +font-size: 1em;;
  +line-height: normal;
  +color: black;
  +background-color: #dd;
  +padding: 6px; 
  +margin: .25em;
   border: 1px;  /* this is a must for */
   border-color: #ff;/* for pre  */
   border-style: solid;  /* working in NS  */
  
  
  

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



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

2002-02-03 Thread stas
stas02/02/03 02:55:50

  Modified:tmpl/custom/html navbar_global
  Log:
  - tidy up
  
  Revision  ChangesPath
  1.4   +17 -15modperl-docs/tmpl/custom/html/navbar_global
  
  Index: navbar_global
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/navbar_global,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- navbar_global 28 Jan 2002 02:24:52 -  1.3
  +++ navbar_global 3 Feb 2002 10:55:50 -   1.4
  @@ -1,8 +1,8 @@
  -[% # super-docset navigation bar
  -   # expects to be set 
  +[% # parent-docsets navigation bar
  +   # expects to be set:
  # nav  - cache navigator object
  # rel_doc_root - relative docs path (only for chapters!)
  -%]
  +-%]
   [% IF nav -%]
   [% # prepare the sects to show where are we relative 
  # to the absolute root
  @@ -35,15 +35,17 @@
  text = nav.index_node.stitle});
  END;
   -%]
  -[% IF nav_not_empty == 1 %]
  -div class='navbarglobal'
  -[% WRAPPER splash/domm_button 
  - width = 100%
  - align = 'left'
  - col   = splash.style.select.col.fore
  --%][% FOREACH sec = sects -%]
  -a href=[% sec.link %]b[% sec.text %]/b/a / 
  -[% END -%][% END -%]
  -/div
  -br
  -[% END %][% END %]
  \ No newline at end of file
  +
  +[%- IF nav_not_empty == 1 -%]
  +div class='navbarglobal'
  +[%- WRAPPER splash/domm_button 
  + width = 100%
  + align = 'left'
  + col   = splash.style.select.col.fore
  +-%]
  +[%- FOREACH sec = sects -%]a href=[% sec.link %]b[% 
sec.text %]/b/a / [%- END -%]
  +[%- END -%]
  +/div
  +br
  +[%- END -%]
  +[% END -%]
  
  
  

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



cvs commit: modperl-docs/tmpl/custom/html search index index_body navbar_global navbar_local_top page page_body tail

2002-02-03 Thread stas
stas02/02/03 03:14:55

  Modified:.TODO
   src  config.cfg style.css
   src/search search.tt
   tmpl/custom/html index index_body navbar_global
navbar_local_top page page_body tail
  Added:   tmpl/custom/html search
  Log:
  - add the navbar_local_top to index pages as well for consistency
  - add a few hrs, to make logical separation
  - add the search widget
  
  Revision  ChangesPath
  1.10  +13 -1 modperl-docs/TODO
  
  Index: TODO
  ===
  RCS file: /home/cvs/modperl-docs/TODO,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- TODO  3 Feb 2002 06:44:27 -   1.9
  +++ TODO  3 Feb 2002 11:14:55 -   1.10
  @@ -15,4 +15,16 @@
   - Think about porting the conferences stuff
   
   - src/creation.html, should be completed and linked from somewhere
  -  (the tail?)
  \ No newline at end of file
  +  (the tail?)
  +
  +style.css:
  +
  +- consider using: font-family: helvetica, arial, verdana, sans-serif;
  +
  +Templates:
  +
  +- consider passing the class name to the wrap_box template, so the
  +  'content' doesn't have to wrap itself in a div tag. If class is
  +  passed then we can use it in td class=
  +
  +
  
  
  
  1.9   +9 -9  modperl-docs/src/config.cfg
  
  Index: config.cfg
  ===
  RCS file: /home/cvs/modperl-docs/src/config.cfg,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- config.cfg30 Jan 2002 16:51:48 -  1.8
  +++ config.cfg3 Feb 2002 11:14:55 -   1.9
  @@ -25,15 +25,6 @@
   maillist
  )
],
  -# links = [
  -# {
  -#  id   = '',
  -#  link = '',
  -#  stitle   = '',
  -#  title= '',
  -#  abstract = ',
  -# },
  -# ],
docsets = [
qw(
   docs
  @@ -43,6 +34,15 @@
   contribute
   stats
  )
  + ],
  + links = [
  + {
  +  id   = 'search',
  +  link = 'search/swish.cgi',
  +  stitle   = 'Search',
  +  title= 'Search the Site',
  +  abstract = 'Search the whole site or parts of it',
  + },
],
   
hidden = [
  
  
  
  1.21  +3 -3  modperl-docs/src/style.css
  
  Index: style.css
  ===
  RCS file: /home/cvs/modperl-docs/src/style.css,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- style.css 3 Feb 2002 09:07:38 -   1.20
  +++ style.css 3 Feb 2002 11:14:55 -   1.21
  @@ -38,9 +38,9 @@
   background-color: #dd;
   padding: 6px; 
   margin: .25em;
  -border: 1px;  /* this is a must for */
  -border-color: #ff;/* for pre  */
  -border-style: solid;  /* working in NS  */
  +border: 1px;  /* this is a must for  */
  +border-color: #ff;/* the pre/pre tag */
  +border-style: solid;  /* working in NS   */
   }
   
   
  
  
  
  1.2   +0 -17 modperl-docs/src/search/search.tt
  
  Index: search.tt
  ===
  RCS file: /home/cvs/modperl-docs/src/search/search.tt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- search.tt 30 Jan 2002 06:35:00 -  1.1
  +++ search.tt 3 Feb 2002 11:14:55 -   1.2
  @@ -19,8 +19,6 @@
   [% PROCESS results_list %]
   [% END %]
   
  -[% PROCESS swish_footer %]
  -
   [% END %]
   
   
  @@ -60,21 +58,6 @@
   /table
   
   [% END %]
  -
  -[% BLOCK swish_footer %]
  -hr
  -smallPowered by emSwish-e/em a 
href=http://swish-e.org;swish-e.org/a/small
  -[% IF search.MOD_PERL %]
  -brsmallResponse brought to you by a 
href=http://perl.apache.org;emmod_perl/em/a/small
  -[% END %]
  -  p
  -a href=http://validator.w3.org/check/referer;img border=0
  -src=http://www.w3.org/Icons/valid-html401;
  -alt=Valid HTML 4.01! height=31 width=88/a
  -  /p
  -[% END %]
  -
  -
   
   [% BLOCK show_message %]
   [% IF search.errstr %]
  
  
  
  1.10  +1 -1  modperl-docs/tmpl/custom/html/index
  
  Index: index
  ===
  RCS file: /home/cvs/modperl-docs/tmpl/custom/html/index,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- index 30 Jan 2002 16:51:48 -  1.9
  +++ index 3 Feb 2002 11:14:55 -   1.10
  @@ -27,7 +27,7 @@
   !-- right box--
   div class='rightbox'
   [% INCLUDE index_body %]
  -br
  +

cvs commit: modperl-docs/src/images/nav - New directory

2002-02-03 Thread stas
stas02/02/02 20:43:26

  modperl-docs/src/images/nav - New directory

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