root/lang/actionscript/todoshare/index.cgi @ 16016

Revision 16016, 0.7 kB (checked in by hoge1e3, 5 years ago)
Line 
1#!/usr/bin/perl
2
3BEGIN {
4  push @INC,"perl";
5}
6use strict;
7use CGI::Carp qw(fatalsToBrowser);
8use Html;
9use HtmlTag;
10header;
11
12&Html::p ([html,
13   [head,
14     [title,"MyS-monitor"]],
15   [body,
16      [h1,"メニュー"],
17       link("todo.cgi","Todo"),
18       link("swkText.cgi","SWK(Text Mode)"),
19       link("DBConsoleFlash.html","SWK(Flash Mode)"),
20       link("jsonDB.html","JSON DB Console"),
21       link("importObj.html","Import Objects(他のMySからHTTPで取得します)"),
22      [h3,"File-related Menu"],
23       link("backupDB.html","Backup DB"),
24       link("restoreDB.html","Restore DB"),
25   ]
26]);
27
28
29sub link {
30  my ($href,$name)=@_;
31  sub {
32    my $p=shift;
33    $p->p([a,{href=>$href},$name])->brln;
34  };
35}
36
Note: See TracBrowser for help on using the browser.