From 3bf17fb1423283d79a81b6ec3ca6134566b28475 Mon Sep 17 00:00:00 2001 From: Joël Cox Date: Sun, 9 Oct 2011 19:20:12 +0200 Subject: Initial conversion of the HTML to RST using pandoc. --- user_guide_src/source/tutorial/index.rst | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 user_guide_src/source/tutorial/index.rst (limited to 'user_guide_src/source/tutorial/index.rst') diff --git a/user_guide_src/source/tutorial/index.rst b/user_guide_src/source/tutorial/index.rst new file mode 100644 index 000000000..a0ed53c85 --- /dev/null +++ b/user_guide_src/source/tutorial/index.rst @@ -0,0 +1,35 @@ +Tutorial − Introduction +======================= + +This tutorial is intended to introduce you to the CodeIgniter framework +and the basic principles of MVC architecture. It will show you how a +basic CodeIgniter application is constructed in step-by-step fashion. + +In this tutorial, you will be creating a **basic news application**. You +will begin by writing the code that can load static pages. Next, you +will create a news section that reads news items from a database. +Finally, you'll add a form to create news items in the database. + +This tutorial will primarily focus on: + +- Model-View-Controller basics +- Routing basics +- Form validation +- Performing basic database queries using "Active Record" + +The entire tutorial is split up over several pages, each explaining a +small part of the functionality of the CodeIgniter framework. You'll go +through the following pages: + +- Introduction, this page, which gives you an overview of what to + expect. +- `Static pages `_, which will teach you the basics + of controllers, views and routing. +- `News section `_, where you'll start using models + and will be doing some basic database operations. +- `Create news items `_, which will introduce + more advanced database operations and form validation. +- `Conclusion `_, which will give you some pointers on + further reading and other resources. + +Enjoy your exploration of the CodeIgniter framework. -- cgit v1.2.3-24-g4f1b From c2b48812b1e1c3457ddaffb2fbbfcccb45554694 Mon Sep 17 00:00:00 2001 From: Joël Cox Date: Mon, 10 Oct 2011 20:24:46 +0200 Subject: Fixed markup glitches from HTML to RST parser. --- user_guide_src/source/tutorial/index.rst | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'user_guide_src/source/tutorial/index.rst') diff --git a/user_guide_src/source/tutorial/index.rst b/user_guide_src/source/tutorial/index.rst index a0ed53c85..eb6f11e34 100644 --- a/user_guide_src/source/tutorial/index.rst +++ b/user_guide_src/source/tutorial/index.rst @@ -1,5 +1,6 @@ -Tutorial − Introduction -======================= +######## +Tutorial +######## This tutorial is intended to introduce you to the CodeIgniter framework and the basic principles of MVC architecture. It will show you how a @@ -33,3 +34,14 @@ through the following pages: further reading and other resources. Enjoy your exploration of the CodeIgniter framework. + +.. toctree:: + :glob: + :hidden: + :titlesonly: + + index + static_pages + news_section + create_news_items + conclusion \ No newline at end of file -- cgit v1.2.3-24-g4f1b From 8352f093567caf7e64e38698b6d9cf65396d5a10 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Mon, 10 Oct 2011 17:22:33 -0500 Subject: removed 'index' listing from tutorial index toc --- user_guide_src/source/tutorial/index.rst | 1 - 1 file changed, 1 deletion(-) (limited to 'user_guide_src/source/tutorial/index.rst') diff --git a/user_guide_src/source/tutorial/index.rst b/user_guide_src/source/tutorial/index.rst index eb6f11e34..c959d04d2 100644 --- a/user_guide_src/source/tutorial/index.rst +++ b/user_guide_src/source/tutorial/index.rst @@ -40,7 +40,6 @@ Enjoy your exploration of the CodeIgniter framework. :hidden: :titlesonly: - index static_pages news_section create_news_items -- cgit v1.2.3-24-g4f1b