Skip to content

Commit 2c129c8

Browse files
committed
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop
2 parents e347927 + 8352f09 commit 2c129c8

File tree

8 files changed

+69
-69
lines changed

8 files changed

+69
-69
lines changed

user_guide_src/source/_themes/eldocs/layout.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,15 @@
124124

125125
{%- block footer %}
126126
<div id="footer">
127-
<p class="top"><a href="#header" title="Return to top">Return to top</a></p>
127+
<p class="top">
128+
{% if prev %}
129+
<span class="prev">Previous Topic: <a href="{{ prev.link }}">{{ prev.title }}</a></span>
130+
{% endif %}
131+
{% if next %}
132+
<span class="next">Next Topic: <a href="{{ next.link }}">{{ next.title }}</a></span>
133+
{% endif %}
134+
<a href="#header" title="Return to top">Return to top</a>
135+
</p>
128136
<p><a href="{{ project_url }}">{{ project }}</a> &ndash; Copyright &copy; {{ copyright }}</a> &ndash; Last updated: {{ last_updated }}</p>
129137
</div><!-- /#footer -->
130138
{%- endblock %}

user_guide_src/source/_themes/eldocs/static/asset/css/common.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ img{ display: block; max-width: 100%; }
119119
fieldset{ border: 0; }
120120

121121
.top{ float: right; }
122+
.next{ padding: 0 20px 0 10px; }
123+
.prev{ padding-right: 10px; }
122124

123125
.highlight-ci,
124126
.highlight-ee,

user_guide_src/source/database/index.rst

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,20 @@ CodeIgniter comes with a full-featured and very fast abstracted database
66
class that supports both traditional structures and Active Record
77
patterns. The database functions offer clear, simple syntax.
88

9-
- :doc:`Quick Start: Usage Examples <examples>`
10-
- :doc:`Database Configuration <configuration>`
11-
- :doc:`Connecting to a Database <connecting>`
12-
- :doc:`Running Queries <queries>`
13-
- :doc:`Generating Query Results <results>`
14-
- :doc:`Query Helper Functions <helpers>`
15-
- :doc:`Active Record Class <active_record>`
16-
- :doc:`Transactions <transactions>`
17-
- :doc:`Table MetaData <table_data>`
18-
- :doc:`Field MetaData <fields>`
19-
- :doc:`Custom Function Calls <call_function>`
20-
- :doc:`Query Caching <caching>`
21-
- :doc:`Database manipulation with Database Forge <forge>`
22-
- :doc:`Database Utilities Class <utilities>`
23-
249
.. toctree::
25-
:glob:
2610
:titlesonly:
27-
:hidden:
2811

29-
*
12+
Quick Start: Usage Examples <examples>
13+
Database Configuration <configuration>
14+
Connecting to a Database <connecting>
15+
Running Queries <queries>
16+
Generating Query Results <results>
17+
Query Helper Functions <helpers>
18+
Active Record Class <active_record>
19+
Transactions <transactions>
20+
Table MetaData <table_data>
21+
Field MetaData <fields>
22+
Custom Function Calls <call_function>
23+
Query Caching <caching>
24+
Database Manipulation with Database Forge <forge>
25+
Database Utilities Class <utilities>
Lines changed: 28 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,32 @@
1-
##################
2-
General
3-
##################
4-
5-
6-
- :doc:`CodeIgniter URLs <urls>`
7-
- :doc:`Controllers <controllers>`
8-
- :doc:`Reserved Names <reserved_names>`
9-
- :doc:`Views <views>`
10-
- :doc:`Models <models>`
11-
- :doc:`Helpers <helpers>`
12-
- :doc:`Using CodeIgniter Libraries <libraries>`
13-
- :doc:`Creating Your Own Libraries <creating_libraries>`
14-
- :doc:`Using CodeIgniter Drivers <drivers>`
15-
- :doc:`Creating Your Own Drivers <creating_drivers>`
16-
- :doc:`Creating Core Classes <core_classes>`
17-
- :doc:`Creating Ancillary Classes <ancillary_classes>`
18-
- :doc:`Hooks - Extending the Core <hooks>`
19-
- :doc:`Auto-loading Resources <autoloader>`
20-
- :doc:`Common Function <common_functions>`
21-
- :doc:`URI Routing <routing>`
22-
- :doc:`Error Handling <errors>`
23-
- :doc:`Caching <caching>`
24-
- :doc:`Profiling Your Application <profiling>`
25-
- :doc:`Running via the CLI <cli>`
26-
- :doc:`Managing Applications <managing_apps>`
27-
- :doc:`Handling Multiple Environments <environments>`
28-
- :doc:`Alternative PHP Syntax <alternative_php>`
29-
- :doc:`Security <security>`
30-
- :doc:`PHP Style Guide <styleguide>`
31-
- :doc:`Server Requirements <requirements>`
32-
- :doc:`Credits <credits>`
1+
##############
2+
General Topics
3+
##############
334

345
.. toctree::
35-
:glob:
366
:titlesonly:
37-
:hidden:
387

39-
*
8+
urls
9+
controllers
10+
reserved_names
11+
views
12+
models
13+
Helpers <helpers>
14+
libraries
15+
creating_libraries
16+
drivers
17+
creating_drivers
18+
core_classes
19+
ancillary_classes
20+
hooks
21+
autoloader
22+
common_functions
23+
routing
24+
errors
25+
Caching <caching>
26+
profiling
27+
cli
28+
managing_apps
29+
environments
30+
alternative_php
31+
security
32+
PHP Style Guide <styleguide>

user_guide_src/source/general/styleguide.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
########################
2-
General Style and Syntax
3-
########################
1+
###############
2+
PHP Style Guide
3+
###############
4+
45

56
The following page describes the use of coding rules adhered to when
67
developing CodeIgniter.

user_guide_src/source/index.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,13 @@ CodeIgniter is right for you if:
3737

3838
*
3939
overview/index
40+
general/requirements
4041
installation/index
4142
general/index
4243
libraries/index
43-
database/index
4444
helpers/index
45+
database/index
4546
documentation/index
46-
tutorial/index
47+
tutorial/index
48+
general/quick_reference
49+
general/credits

user_guide_src/source/overview/index.rst

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ CodeIgniter Overview
44

55
The following pages describe the broad concepts behind CodeIgniter:
66

7-
- :doc:`CodeIgniter at a Glance <at_a_glance>`
8-
- :doc:`Supported Features <features>`
9-
- :doc:`Application Flow Chart <appflow>`
10-
- :doc:`Introduction to the Model-View-Controller <mvc>`
11-
- :doc:`Design and Architectural Goals <goals>`
12-
137
.. toctree::
14-
:glob:
15-
:hidden:
168
:titlesonly:
179

18-
*
10+
Getting Started <getting_started>
11+
CodeIgniter at a Glance <at_a_glance>
12+
CodeIgniter Cheatsheets <cheatsheets>
13+
Supported Features <features>
14+
Application Flow Chart <appflow>
15+
Model-View-Controller <mvc>
16+
Architectural Goals <goals>

user_guide_src/source/tutorial/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ Enjoy your exploration of the CodeIgniter framework.
4040
:hidden:
4141
:titlesonly:
4242

43-
index
4443
static_pages
4544
news_section
4645
create_news_items

0 commit comments

Comments
 (0)