stas 02/04/21 09:30:48
Modified: . TODO
bin makeindex
src config.cfg style.css
src/images/nav page_prev.gif
Log:
todo updates
Revision Changes Path
1.41 +0 -6 modperl-docs/TODO
Index: TODO
===================================================================
RCS file: /home/cvs/modperl-docs/TODO,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- TODO 20 Apr 2002 07:22:47 -0000 1.40
+++ TODO 21 Apr 2002 16:30:47 -0000 1.41
@@ -17,12 +17,6 @@
it's not a doc.
STATUS: need to extend pod parser with U<title (url|relative url)>
-- need to have a special handling for L<...|foo::bar::index> so only
- foo::bar is checked that it's a dir in the search path and
- index.html is autogenerated. This allows us to do L<the
- guide|guide::index>
- STATUS: need to implement this
-
Menu:
-----
1.4 +8 -2 modperl-docs/bin/makeindex
Index: makeindex
===================================================================
RCS file: /home/cvs/modperl-docs/bin/makeindex,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- makeindex 3 Apr 2002 05:17:07 -0000 1.3
+++ makeindex 21 Apr 2002 16:30:47 -0000 1.4
@@ -1,5 +1,9 @@
#!/usr/bin/perl -w
+my %opts;
+use Getopt::Std;
+getopt('v', \%opts);
+
# do the indexing process
# relies on setting of the following env varibles:
#
@@ -38,6 +42,8 @@
use FindBin qw($Bin);
use Cwd ();
+my $verbose_level = exists $opts{v} ? 1 : 0;
+
my $swish_binary = $ENV{SWISH_BINARY_PATH} || './swish-e';
die "Cannot find swish-e at $swish_binary: $!" unless -x $swish_binary;
@@ -45,8 +51,8 @@
chdir "$Bin/../dst_html/search";
# index
-my $command = "$swish_binary -S prog -c swish.conf";
-#print $command;
+my $command = "SPIDER_QUIET=$verbose_level $swish_binary -v $verbose_level
-S prog -c swish.conf";
+print "$command\n";
CORE::system($command);
chdir $cwd;
1.22 +17 -1 modperl-docs/src/config.cfg
Index: config.cfg
===================================================================
RCS file: /home/cvs/modperl-docs/src/config.cfg,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- config.cfg 21 Apr 2002 07:53:59 -0000 1.21
+++ config.cfg 21 Apr 2002 16:30:47 -0000 1.22
@@ -14,9 +14,25 @@
bot => 'index_bot.html',
},
+ hidden => [
+ docsets => [
+ qw(
+ start
+ )
+ ],
+ ],
+
+ links => [
+ {
+ id => 'what_is_mod_perl',
+ link => 'start/about.html',
+ title => 'What is mod_perl',
+ abstract => "Bara Bara",
+ },
+ ],
+
docsets => [
qw(
- start
outstanding
download
docs
1.57 +2 -0 modperl-docs/src/style.css
Index: style.css
===================================================================
RCS file: /home/cvs/modperl-docs/src/style.css,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- style.css 20 Apr 2002 08:07:45 -0000 1.56
+++ style.css 21 Apr 2002 16:30:47 -0000 1.57
@@ -48,6 +48,8 @@
/* dark blue bg-color for selected menu-items */
td.sel-bg { background-color: #525d76; }
+li.search { list-style: none; }
+
div.nonselectedmenuitem {
padding: 3px;
background-color: #eeeeee;
1.3 +3 -2 modperl-docs/src/images/nav/page_prev.gif
<<Binary file>>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]