~epii/kagura/1.1

« back to all changes in this revision

Viewing changes to sample/index.php

  • Committer: epii
  • Date: 2009-12-27 06:14:34 UTC
  • Revision ID: svn-v4:9b580f6f-30a1-4087-afa3-92ba4f18fc20:trunk:26
Kagura ディレクトリとプラグインディレクトリを分離。
また Sample プログラムも別ディレクトリに。
それに伴いバージョンを v1.1 に変更。

ライセンスを LGPL に変更した。

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
// 処理開始時間
 
4
$begin_time = microtime(true);
 
5
 
 
6
// Kagura の読み込み
 
7
require_once(dirname(__FILE__).'/../kagura/initialize.php');
 
8
 
 
9
$conf = array(
 
10
        'prefix' => 'kag_sample_',
 
11
        'plugins' => dirname(__FILE__).'/../plugins',
 
12
);
 
13
 
 
14
// 変換する
 
15
$result = kag_convert(file_get_contents('./index.kag.txt'), $conf);
 
16
 
 
17
?>
 
18
<?xml version="1.0" encoding="utf-8"?>
 
19
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
 
20
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
 
21
        <head>
 
22
                <meta name="author" content="epii" />
 
23
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
24
                <meta http-equiv="Content-Style-Type" content="text/css" />
 
25
                <meta http-equiv="Content-Script-Type" content="text/javascript" />
 
26
                
 
27
                <!-- スタイルシート読み込み -->
 
28
                <link rel="stylesheet" type="text/css" href="./css/style.css" />
 
29
                
 
30
                <!-- JavaScript ライブラリ読み込み -->
 
31
                <script type="text/javascript" src="http://www.google.com/jsapi"></script>
 
32
                <script type="text/javascript">
 
33
                        google.load("prototype", "1.6");
 
34
                        google.load("scriptaculous", "1.8");
 
35
                </script>
 
36
                
 
37
                <!-- Kagura 用のスタイルシートと JavaScript 読み込み -->
 
38
                <link rel="stylesheet" type="text/css" href="./css/kagura.css.php" />
 
39
                <script type="text/javascript" src="./js/kagura.js.php"></script>
 
40
                
 
41
                <title><?php echo @$result['vars']['title']; ?></title>
 
42
        </head>
 
43
        <body>
 
44
                
 
45
                <?php echo @$result['result']; ?>
 
46
                
 
47
                <hr />
 
48
                
 
49
                <div class="kag_footnotesize">
 
50
                        Convert time: <?php printf('%.2f', microtime(true) - $begin_time); ?> sec.<br />
 
51
                        <?php echo KAG_COPYRIGHT; ?>
 
52
                </div>
 
53
                
 
54
        </body>
 
55
</html>
 
56