root/websites/perl-users.jp/html/keywords.html @ 12207

Revision 12207, 3.5 kB (checked in by drry, 5 years ago)
  • 時間切れ revert。
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
3    <head profile="http://purl.org/net/ns/metaprof">
4        <!-- Document Metadata -->
5        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6        <meta http-equiv="Content-Language" content="ja" />
7        <meta http-equiv="Content-Style-Type" content="text/css" />
8        <meta http-equiv="Content-Script-Type" content="text/javascript" />
9        <meta http-equiv="imagetoolbar" content="no" />
10
11        <meta name="DC.identifier" scheme="DCTERMS.URI" content="http://perl-users.jp/keywords.html" />
12        <meta name="DC.title" content="用語集" />
13        <meta name="DC.description" content="日本のPerlユーザのためのハブサイト" />
14        <meta name="DC.publisher" content="Perl-users.jp" />
15        <meta name="DC.creator" content="CodeRepos committers" />
16        <meta name="DC.type" scheme="DCTERMS.DCMIType" content="Text" />
17        <meta name="DC.format" scheme="DCTERMS.IMT" content="text/html" />
18        <meta name="DC.language" scheme="DCTERMS.RFC1766" content="ja" />
19        <meta name="DC.date" scheme="DCTERMS.W3CDTF" content="2008-05-22T00:31:04Z" />
20        <meta name="DCTERMS.issued" scheme="DCTERMS.W3CDTF" content="2008-05-20" />
21        <meta name="DCTERMS.modified" scheme="DCTERMS.W3CDTF" content="2008-05-22T00:31:04Z" />
22
23        <!-- Atom news feed -->
24
25        <link rel="alternate" type="application/rss+xml" title="RSS feed" href="http://coderepos.org/share/log/websites/perl-users.jp?limit=100&amp;mode=stop_on_copy&amp;format=rss" />
26        <link rel="stylesheet" type="text/css" href="/css/fixed.css" />
27        <link rel="glossary" href="/keywords.html" title="用語集" />
28        <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
29        <link rel="icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
30
31        <link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" />
32        <link rel="schema.DCTERMS" href="http://purl.org/dc/terms/" />
33        <link rel="DCTERMS.license" href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons Attribution license" />
34        <link rel="DCTERMS.conformsTo" href="http://www.w3.org/TR/xhtml1/" title="XHTML 1.0" />
35
36        <title>用語集 - Perl-users.jp</title>
37        <!-- CSS Stylesheets -->
38
39        <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
40        <script type="text/javascript">
41            _uacct = "UA-4463402-1";
42            urchinTracker();
43        </script>
44        <script src="/js/codepress/codepress.js" type="text/javascript"></script>
45    </head>
46    <body>
47        <div id="head-navigation"><a href="/">Perl-users.jp</a></div>
48<!-- content start -->
49        <h1>Perl でよく出る用語集</h1>
50        <dl>
51            <dt><abbr title="There's More Than One Way To Do It">TMTOWTDI</abbr></dt>
52                <dd>「やり方はひとつじゃない」Perl のスローガン。同じ結果を導き出すコードを多種多様な書き方で書ける Perl の特徴を表している。</dd>
53            <dt><abbr title="Plain Old Document">POD</abbr></dt>
54                <dd>いわゆるマニュアル。通常ソースに埋め込む形で書かれている。<code>perldoc</code> などで整形して読むことができる。</dd>
55        </dl>
56<!-- content end -->
57    </body>
58</html>
Note: See TracBrowser for help on using the browser.