Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Zend\Http & Documentation
Browse files Browse the repository at this point in the history
  - Broken Zend\Http into separate files
  - added a build-manual2.php script to help building manual with PhD
  - created a manual2.xml.in for ZF2 specific sections
  • Loading branch information
Ralph Schindler committed Aug 18, 2011
1 parent f9d9fdb commit 5a29c44
Show file tree
Hide file tree
Showing 9 changed files with 4,453 additions and 4,255 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@ nbproject
.buildpath
.project
.settings/
tmp/
4,614 changes: 2,315 additions & 2,299 deletions documentation/manual/en/manual.xml.in

Large diffs are not rendered by default.

108 changes: 108 additions & 0 deletions documentation/manual/en/manual2.xml.in
@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book [
<!-- Add translated specific definitions and snippets -->
<!ENTITY % language-snippets SYSTEM "./ref/language-snippets.xml">
%language-snippets;

<!-- Fallback to English definitions and snippets (in case of missing translation) -->
<!ENTITY % language-snippets.default SYSTEM "../en/ref/language-snippets.xml">
%language-snippets.default;
]>
<book xmlns="http://docbook.org/ns/docbook" version="5.0" xml:id="manual"
xml:lang="&lang;">
<info>
<title>&book.title;</title>
<subtitle>&book.subtitle;</subtitle>
<edition>&book.edition;</edition>
<pubdate><?dbtimestamp?></pubdate>
<copyright>
<year>2005-<?dbtimestamp format="Y"?></year>
<holder>
Zend Technologies Inc.
(<uri xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.zend.com">http://www.zend.com</uri>)
</holder>
</copyright>
</info>

<part xml:id="learning">
<info><title>&part.learning.title;</title></info>


<chapter xml:id="learning.di"><info><title>Learning Dependency Injection</title></info>

<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="tutorials/quickstart-di.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/tutorials/quickstart-di.xml" parse="xml"/>
</xi:fallback>
</xi:include>
</chapter>
</part>

<part xml:id="reference">
<info><title>&part.reference.title;</title></info>

<chapter xml:id="zend.event-manager">
<info><title>Zend\EventManager</title></info>

<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_EventManager-EventManager.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_EventManager-EventManager.xml" parse="xml"/>
</xi:fallback>
</xi:include>
</chapter>

<chapter xml:id="zend.http"><info><title>Zend\Http</title></info>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Http.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Http.xml" parse="xml"/>
</xi:fallback>
</xi:include>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Http_Request.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Http_Request.xml" parse="xml"/>
</xi:fallback>
</xi:include>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Http_Response.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Http_Response.xml" parse="xml"/>
</xi:fallback>
</xi:include>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Http_Headers.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Http_Headers.xml" parse="xml"/>
</xi:fallback>
</xi:include>

</chapter>

<chapter xml:id="zend.loader"><info><title>Zend_Loader</title></info>

<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Loader.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Loader.xml" parse="xml"/>
</xi:fallback>
</xi:include>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Loader-Autoloader-Resource.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Loader-Autoloader-Resource.xml" parse="xml"/>
</xi:fallback>
</xi:include>
</chapter>

<chapter xml:id="zend.uri"><info><title>Zend_Uri</title></info>

<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="module_specs/Zend_Uri.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/module_specs/Zend_Uri.xml" parse="xml"/>
</xi:fallback>
</xi:include>
</chapter>

</part>

<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ref/copyrights.xml" parse="xml">
<xi:fallback>
<xi:include href="../en/ref/copyrights.xml" parse="xml"/>
</xi:fallback>
</xi:include>
</book>

0 comments on commit 5a29c44

Please sign in to comment.