-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
55 lines (48 loc) · 2.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
NAME
PerldocJp::Web - Japanese Perldoc Site
SYNOPSIS
script/perldocjp_web_server.pl
# do the following first:
#
# (0) Install our dependencies. You can use the
# ./script/perldocjp_bundle_lib.pl script to install everything in
# ./extlib. The script (adapted from miyagawa-san's script)
# requires Moose, MooseX::Getopt, and YAML
#
# (1) Deploy the database (currently only MySQL 5.x is supported)
# ./script/perldocjp_deploydb.pl \
# --connect_info=dbi:mysql:dbname=perldocjp \
# --connect_info=username \
# --connect_info=password
#
# (2) Get the documents available from perldocjp project
# (this will decode the document to UTF-8 as necessary)
# ./script/perldocjp_update_sources.pl \
# --destination=/path/to/perldocjp
#
# (3) Get the current CPAN metadata information
# ./script/perldocjp_update_cpan.pl \
# --connect_info=dbi:mysql:dbname=perldocjp \
# --connect_info=username \
# --connect_info=password
#
# (4) Apply the source information from perldocjp and combine with
# the CPAN metadata
# ./script/perldocjp_update_metadata.pl \
# --pod_dir=/path/to/perldocjp/docs/modules/ \
# --connect_info=dbi:mysql:dbname=perldocjp \
# --connect_info=username \
# --connect_info=password
#
# you're all set. run the web server as usual
TODO
CSS, Styling, HTML
I (lestrrat) am NOT an HTML guy. I loathe to work with HTML.
Better Full-Text Search
Currently we use MySQL 5.x's REGEXP operator to maximize
compatibility. it might be better if we created our own full-text
index
More Features
Yeah, who doesn't want more features
AUTHOR
Daisuke Maki " <<daisuke@endeworks.jp"> >