/[suikacvs]/markup/html/html5/spec-ja/edit.cgi
Suika

Contents of /markup/html/html5/spec-ja/edit.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download)
Fri Jul 18 13:12:04 2008 UTC (16 years, 3 months ago) by wakaba
Branch: MAIN
Changes since 1.2: +9 -0 lines
*** empty log message ***

1 #!/usr/bin/perl
2 use strict;
3 use CGI::Carp qw(fatalsToBrowser);
4
5 my $data_dir_name = q[data/];
6
7 my $path = $ENV{PATH_INFO};
8
9 sub htescape ($) {
10 my $s = shift;
11 $s =~ s/&/&/g;
12 $s =~ s/</&lt;/g;
13 $s =~ s/"/&quot;/g;
14 return $s;
15 } # htescape
16
17 if ($path =~ m[^/([0-9a-z-]+)$]) {
18 my $name = $1;
19 my $file_name = $data_dir_name . $name . '.dat';
20 if (-f $file_name) {
21 if ($ENV{REQUEST_METHOD} eq 'GET') {
22 my $data;
23 {
24 open my $file, '<:utf8', $file_name or die "$0: $file_name: $!";
25 local $/ = undef;
26 $data = <$file>;
27 }
28
29 print qq[Content-Type: text/html; charset=utf-8
30
31 <!DOCTYPE HTML>
32 <html lang=en>
33 <head>
34 <title>Edit &mdash; @{[htescape ($name)]}</title>
35 <style>
36 textarea {
37 width: 95%;
38 height: 40em;
39 }
40 </style>
41 <link rel=license href="./#license">
42 <body>
43 <h1>Edit &mdash; @{[htescape ($name)]}</h1>
44 <form action accept-charset=utf-8 method=post>
45 <p><textarea name=data lang>@{[htescape ($data)]}</textarea>
46 <p><input type=submit value=Save>
47 <strong>Important</strong>: See <a href="./#license" rel=license>license</a>.
48 </form>
49 ];
50 exit;
51 } elsif ($ENV{REQUEST_METHOD} eq 'POST') {
52 eval q{ use CGI qw(param) };
53 my $data = param ('data');
54 open my $file, '>', $file_name or die "$0: $file_name: $!";
55 print $file $data;
56 close $file;
57 my $user = $ENV{REMOTE_USER};
58 $user =~ s/[^0-9A-Za-z_-]/_/g;
59 (system "cvs commit -m \"by remote user \'$user\'\" data > /dev/null") == 0 or die "$0: $?";
60
61 print q[Status: 204 Saved; No Content];
62 exit;
63 } else {
64 print q[Status: 405 Method Not Allowed
65 Content-Type: text/plain ; charset=us-ascii
66 Allow: GET, POST
67
68 405];
69 exit;
70 }
71 }
72 } elsif ($path eq '/') {
73 opendir my $data_dir, $data_dir_name or die "$0: $data_dir_name: $!";
74 print q[Content-Type: text/html; charset=utf-8
75
76 <!DOCTYPE HTML>
77 <html lang=en>
78 <title>English-Japanese Data Files</title>
79 <link rel=history href="../data/,cvslog">
80 <link rel=license href="#license">
81 <h1>English-Japanese Data Files</h1>
82
83 <ul>];
84 for (sort {$a cmp $b} grep {/\.dat$/} readdir $data_dir) {
85 my $name = $_;
86 $name =~ s/\.dat$//;
87 print qq[<li><a href="@{[htescape ($name)]}"><code class=file>@{[htescape ($name)]}</code></a></li>];
88 }
89 print q[</ul>
90
91 <section id=status>
92 <h2>Status of translation</h2>
93
94 <p>See <a href="../status.png">progress graph</a>.
95 </section>
96
97 <section id=license>
98 <h2>License of data files</h2>
99
100 <p><strong>Texts from HTML5 and Web Workers specs</strong>:
101 <blockquote cite="http://whatwg.org/html5">
102 <p class=copyright>&copy; Copyright 2004-2008 Apple Computer, Inc.,
103 Mozilla Foundation, and Opera Software ASA.</p>
104
105 <p class=copyright>You are granted a license to use, reproduce and create
106 derivative works of this document.</p>
107 </blockquote>
108
109 <p><strong>Texts from XBL 2.0 spec</strong>:
110 <blockquote cite="http://www.mozilla.org/projects/xbl/xbl2.html">
111 <p class=copyright>Portions of this content are &copy; 1998&#8211;2006 by
112 individual mozilla.org contributors; content available under a Creative
113 Commons license. (<a
114 href="http://www.mozilla.org/foundation/licensing/website-content.html">Details</a>)</p>
115 </blockquote>
116
117 <p><strong>For contributors</strong>: You have to agree that your
118 contributions are licensed under the terms quoted above.
119 </section>
120 ];
121 exit;
122 }
123
124 print q[Content-Type: text/plain ; charset=us-ascii
125 Status: 404 Not Found
126
127 404];

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24