-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial translation in reference/yaf
- Loading branch information
1 parent
1d8982b
commit 6f4f240
Showing
15 changed files
with
2,274 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- EN-Revision: 68c2c871505aadf983f16113c5b077b335ce8d76 Maintainer: leonardolara Status: ready --> | ||
|
||
<book xml:id="book.yaf" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<?phpdoc extension-membership="pecl" ?> | ||
<title>Yet Another Framework</title> | ||
<titleabbrev>Yaf</titleabbrev> | ||
|
||
<preface xml:id="intro.yaf"> | ||
&reftitle.intro; | ||
<para> | ||
E extensão <literal>Yet Another Framework</literal> (<acronym>Yaf</acronym>) | ||
é uma estrutura em PHP usada para desenvolver aplicações web. | ||
</para> | ||
<para> | ||
Uma análise simples de desempenho pode ser consultada em <link | ||
xlink:href="&url.yaf.benchmarks;">Yaf Performance</link>. | ||
</para> | ||
<para> | ||
Para um guia de início rápido, consulte a seção de <link | ||
linkend="yaf.tutorials">tutoriais</link>. | ||
</para> | ||
</preface> | ||
|
||
&reference.yaf.setup; | ||
&reference.yaf.constants; | ||
&reference.yaf.tutorials; | ||
&reference.yaf.appconfig; | ||
&reference.yaf.yaf-application; | ||
&reference.yaf.yaf-bootstrap-abstract; | ||
&reference.yaf.yaf-dispatcher; | ||
&reference.yaf.yaf-config-abstract; | ||
&reference.yaf.yaf-config-ini; | ||
&reference.yaf.yaf-config-simple; | ||
&reference.yaf.yaf-controller-abstract; | ||
&reference.yaf.yaf-action-abstract; | ||
&reference.yaf.yaf-view-interface; | ||
&reference.yaf.yaf-view-simple; | ||
&reference.yaf.yaf-loader; | ||
&reference.yaf.yaf-plugin-abstract; | ||
&reference.yaf.yaf-registry; | ||
&reference.yaf.yaf-request-abstract; | ||
&reference.yaf.yaf-request-http; | ||
&reference.yaf.yaf-request-simple; | ||
&reference.yaf.yaf-response-abstract; | ||
&reference.yaf.yaf-route-interface; | ||
&reference.yaf.yaf-route-map; | ||
&reference.yaf.yaf-route-regex; | ||
&reference.yaf.yaf-route-rewrite; | ||
&reference.yaf.yaf-router; | ||
&reference.yaf.yaf-route-simple; | ||
&reference.yaf.yaf-route-static; | ||
&reference.yaf.yaf-route-supervar; | ||
&reference.yaf.yaf-session; | ||
&reference.yaf.yaf-exception; | ||
&reference.yaf.yaf-exception-typeerror; | ||
&reference.yaf.yaf-exception-startuperror; | ||
&reference.yaf.yaf-exception-dispatchfailed; | ||
&reference.yaf.yaf-exception-routerfailed; | ||
&reference.yaf.yaf-exception-loadfailed; | ||
&reference.yaf.yaf-exception-loadfailed-module; | ||
&reference.yaf.yaf-exception-loadfailed-controller; | ||
&reference.yaf.yaf-exception-loadfailed-action; | ||
&reference.yaf.yaf-exception-loadfailed-view; | ||
|
||
</book> | ||
|
||
<!-- Keep this comment at the end of the file | ||
Local variables: | ||
mode: sgml | ||
sgml-omittag:t | ||
sgml-shorttag:t | ||
sgml-minimize-attributes:nil | ||
sgml-always-quote-attributes:t | ||
sgml-indent-step:1 | ||
sgml-indent-data:t | ||
indent-tabs-mode:nil | ||
sgml-parent-document:nil | ||
sgml-default-dtd-file:"~/.phpdoc/manual.ced" | ||
sgml-exposed-tags:nil | ||
sgml-local-catalogs:nil | ||
sgml-local-ecat-files:nil | ||
End: | ||
vim600: syn=xml fen fdm=syntax fdl=2 si | ||
vim: et tw=78 syn=sgml | ||
vi: ts=1 sw=1 | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- EN-Revision: 1f71c647dd6e32a7e4f03c33bac449c69ed2135b Maintainer: leonardolara Status: ready --> | ||
|
||
<section xml:id="yaf.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
&reftitle.install; | ||
|
||
<para> | ||
&pecl.info; | ||
<link xlink:href="&url.pecl.package;yaf">&url.pecl.package;yaf</link> | ||
</para> | ||
|
||
|
||
</section> | ||
|
||
|
||
<!-- Keep this comment at the end of the file | ||
Local variables: | ||
mode: sgml | ||
sgml-omittag:t | ||
sgml-shorttag:t | ||
sgml-minimize-attributes:nil | ||
sgml-always-quote-attributes:t | ||
sgml-indent-step:1 | ||
sgml-indent-data:t | ||
indent-tabs-mode:nil | ||
sgml-parent-document:nil | ||
sgml-default-dtd-file:"~/.phpdoc/manual.ced" | ||
sgml-exposed-tags:nil | ||
sgml-local-catalogs:nil | ||
sgml-local-ecat-files:nil | ||
End: | ||
vim600: syn=xml fen fdm=syntax fdl=2 si | ||
vim: et tw=78 syn=sgml | ||
vi: ts=1 sw=1 | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- EN-Revision: 86e6094e86b84a51d00ab217ac50ce8dde33d82a Maintainer: leonardolara Status: ready --> | ||
|
||
<appendix xml:id="yaf.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
&reftitle.constants; | ||
&extension.constants; | ||
<para> | ||
<variablelist> | ||
<varlistentry xml:id="constant.yaf-version"> | ||
<term> | ||
<constant>YAF_VERSION</constant> | ||
(<type>string</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-environ"> | ||
<term> | ||
<constant>YAF_ENVIRON</constant> | ||
(<type>string</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-startup-failed"> | ||
<term> | ||
<constant>YAF_ERR_STARTUP_FAILED</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-route-failed"> | ||
<term> | ||
<constant>YAF_ERR_ROUTE_FAILED</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-dispatch-failed"> | ||
<term> | ||
<constant>YAF_ERR_DISPATCH_FAILED</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-autoload-failed"> | ||
<term> | ||
<constant>YAF_ERR_AUTOLOAD_FAILED</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-notfound-module"> | ||
<term> | ||
<constant>YAF_ERR_NOTFOUND_MODULE</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-notfound-controller"> | ||
<term> | ||
<constant>YAF_ERR_NOTFOUND_CONTROLLER</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-notfound-action"> | ||
<term> | ||
<constant>YAF_ERR_NOTFOUND_ACTION</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-notfound-view"> | ||
<term> | ||
<constant>YAF_ERR_NOTFOUND_VIEW</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-call-failed"> | ||
<term> | ||
<constant>YAF_ERR_CALL_FAILED</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.yaf-err-type-error"> | ||
<term> | ||
<constant>YAF_ERR_TYPE_ERROR</constant> | ||
(<type>int</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> | ||
</para> | ||
</appendix> | ||
|
||
<!-- Keep this comment at the end of the file | ||
Local variables: | ||
mode: sgml | ||
sgml-omittag:t | ||
sgml-shorttag:t | ||
sgml-minimize-attributes:nil | ||
sgml-always-quote-attributes:t | ||
sgml-indent-step:1 | ||
sgml-indent-data:t | ||
indent-tabs-mode:nil | ||
sgml-parent-document:nil | ||
sgml-default-dtd-file:"~/.phpdoc/manual.ced" | ||
sgml-exposed-tags:nil | ||
sgml-local-catalogs:nil | ||
sgml-local-ecat-files:nil | ||
End: | ||
vim600: syn=xml fen fdm=syntax fdl=2 si | ||
vim: et tw=78 syn=sgml | ||
vi: ts=1 sw=1 | ||
--> |
Oops, something went wrong.