File tree Expand file tree Collapse file tree 14 files changed +32
-30
lines changed Expand file tree Collapse file tree 14 files changed +32
-30
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: ecaa2146429a7f88de40dfce14718afc896b74c5 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 7541512acf899391b68c3b6bae66a4fcc65e6c4e Maintainer: takagi Status: ready -->
4
4
5
5
<reference xml : id =" class.yaf-loader" role =" class" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" xmlns : xi =" http://www.w3.org/2001/XInclude" >
6
6
@@ -85,6 +85,7 @@ class Bootstrap extends Yaf_Bootstrap_Abstract{
85
85
public function _initLoader($dispatcher) {
86
86
Yaf_Loader::getInstance()->registerLocalNameSpace(array("Foo", "Bar"));
87
87
}
88
+ }
88
89
?>
89
90
]]>
90
91
</programlisting >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 73fae4ee51b644b72028e610abefefced57c18ad Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 4a211b7c8fb2b4410851d06c6f90f751d1f670d0 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-application.bootstrap" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
46
46
<refsect1 role =" examples" >
47
47
&reftitle.examples;
48
48
<example >
49
- <title >< function > Bootstrap</ function > の例</title >
49
+ <title >Bootstrap の例</title >
50
50
<programlisting role =" php" >
51
51
<![CDATA[
52
52
<?php
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 8bf3b3f0732d2b5c635f950e04e27a44b36f0cb0 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 7541512acf899391b68c3b6bae66a4fcc65e6c4e Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-application.construct" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
@@ -106,7 +106,7 @@ ap.modules=Index
106
106
<![CDATA[
107
107
<?php
108
108
defined('APPLICATION_PATH') // APPLICATION_PATH が ini ファイルで設定されていれば使います
109
- || define('APPLICATION_PATH', __DIR__)) ;
109
+ || define('APPLICATION_PATH', __DIR__);
110
110
111
111
$application = new Yaf_Application(APPLICATION_PATH.'/conf/application.ini');
112
112
$application->bootstrap()->run();
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 49d4fb555745d1981edac87a5a2d8ae53b5f75df Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 4a211b7c8fb2b4410851d06c6f90f751d1f670d0 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-dispatcher.setview" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: c9389e4a0e96801fd14d91336ff3f12e45929a73 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 0d4f735ed7f59c0ac5a5b3bbe90fa72dc84d8cee Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-response-abstract.appendbody" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
64
64
<?php
65
65
$response = new Yaf_Response_Http();
66
66
67
- $response->setBody("Hello")->prependBody (" World");
67
+ $response->setBody("Hello")->appendBody (" World");
68
68
69
69
echo $response;
70
70
?>
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: ecaa2146429a7f88de40dfce14718afc896b74c5 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: b37bddfde36975bf6bf06ce98867e62d489d49c5 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-route-map.construct" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
52
52
<refsect1 role =" examples" >
53
53
&reftitle.examples;
54
54
<example >
55
- <title ><function >Yaf_Route_Map</function > の例</title >
55
+ <title ><classname >Yaf_Route_Map</classname > の例</title >
56
56
<programlisting role =" php" >
57
57
<![CDATA[
58
58
<?php
77
77
</screen >
78
78
</example >
79
79
<example >
80
- <title ><function >Yaf_Route_Map</function > の例</title >
80
+ <title ><classname >Yaf_Route_Map</classname > の例</title >
81
81
<programlisting role =" php" >
82
82
<![CDATA[
83
83
<?php
@@ -109,7 +109,7 @@ array(
109
109
</screen >
110
110
</example >
111
111
<example >
112
- <title ><function >Yaf_Route_Map</function > の例</title >
112
+ <title ><classname >Yaf_Route_Map</classname > の例</title >
113
113
<programlisting role =" php" >
114
114
<![CDATA[
115
115
<?php
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: ecaa2146429a7f88de40dfce14718afc896b74c5 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: b37bddfde36975bf6bf06ce98867e62d489d49c5 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-route-regex.construct" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
92
92
<refsect1 role =" examples" >
93
93
&reftitle.examples;
94
94
<example >
95
- <title ><function >Yaf_Route_Regex</function > の例</title >
95
+ <title ><classname >Yaf_Route_Regex</classname > の例</title >
96
96
<programlisting role =" php" >
97
97
<![CDATA[
98
98
<?php
116
116
</programlisting >
117
117
</example >
118
118
<example >
119
- <title ><function >Yaf_Route_Regex</function > (2.3.0 以降) の例</title >
119
+ <title ><classname >Yaf_Route_Regex</classname > (2.3.0 以降) の例</title >
120
120
<programlisting role =" php" >
121
121
<![CDATA[
122
122
<?php
140
140
</programlisting >
141
141
</example >
142
142
<example >
143
- <title ><function >Yaf_Route_Regex と名前付きキャプチャグループ (2.3.0 以降) の例</ function >example </title >
143
+ <title ><classname >Yaf_Route_Regex</ classname > と名前付きキャプチャグループ (2.3.0 以降) の例</title >
144
144
<programlisting role =" php" >
145
145
<![CDATA[
146
146
<?php
164
164
</programlisting >
165
165
</example >
166
166
<example >
167
- <title ><function >Yaf_Route_Regex</function > の例</title >
167
+ <title ><classname >Yaf_Route_Regex</classname > の例</title >
168
168
<programlisting role =" php" >
169
169
<![CDATA[
170
170
<?php
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: ecaa2146429a7f88de40dfce14718afc896b74c5 Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: b37bddfde36975bf6bf06ce98867e62d489d49c5 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-route-rewrite.construct" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
72
72
<refsect1 role =" examples" >
73
73
&reftitle.examples;
74
74
<example >
75
- <title ><function >Yaf_Route_Rewrite</function > の例</title >
75
+ <title ><classname >Yaf_Route_Rewrite</classname > の例</title >
76
76
<programlisting role =" php" >
77
77
<![CDATA[
78
78
<?php
@@ -114,7 +114,7 @@ array(
114
114
</screen >
115
115
</example >
116
116
<example >
117
- <title ><function >Yaf_Route_Rewrite</function > の例</title >
117
+ <title ><classname >Yaf_Route_Rewrite</classname > の例</title >
118
118
<programlisting role =" php" >
119
119
<![CDATA[
120
120
<?php
@@ -158,7 +158,7 @@ array(
158
158
</screen >
159
159
</example >
160
160
<example >
161
- <title ><function >Yaf_Route_Rewrite</function > (2.3.0 以降) の例</title >
161
+ <title ><classname >Yaf_Route_Rewrite</classname > (2.3.0 以降) の例</title >
162
162
<programlisting role =" php" >
163
163
<![CDATA[
164
164
<?php
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 73fae4ee51b644b72028e610abefefced57c18ad Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: b37bddfde36975bf6bf06ce98867e62d489d49c5 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-route-supervar.construct" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
45
45
<refsect1 role =" examples" >
46
46
&reftitle.examples;
47
47
<example >
48
- <title ><function >Yaf_Route_Supervar</function > の例</title >
48
+ <title ><classname >Yaf_Route_Supervar</classname > の例</title >
49
49
<programlisting role =" php" >
50
50
<![CDATA[
51
51
<?php
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<!-- $Revision$ -->
3
- <!-- EN-Revision: 30c2d6226d1576647c91b36b912ac841abfcafab Maintainer: takagi Status: ready -->
3
+ <!-- EN-Revision: 22583751fbfdaa3eaa41aeb6470d1343f5cb2c78 Maintainer: takagi Status: ready -->
4
4
5
5
<refentry xml : id =" yaf-router.addconfig" xmlns =" http://docbook.org/ns/docbook" xmlns : xlink =" http://www.w3.org/1999/xlink" >
6
6
<refnamediv >
@@ -90,6 +90,7 @@ class Bootstrap extends Yaf_Bootstrap_Abstract{
90
90
*/
91
91
$router->addConfig(Yaf_Registry::get("config")->routes);
92
92
}
93
+ }
93
94
?>
94
95
]]>
95
96
</programlisting >
You can’t perform that action at this time.
0 commit comments