diff --git a/user_guide_src/source/general/ajax.rst b/user_guide_src/source/general/ajax.rst index 710406b41272..d3fd5945f1ff 100644 --- a/user_guide_src/source/general/ajax.rst +++ b/user_guide_src/source/general/ajax.rst @@ -8,6 +8,10 @@ To get around this problem, the most efficient solution (so far) is to manually Here's how to force the ``X-Requested-With`` header to be sent in the Fetch API and other JavaScript libraries. +.. contents:: + :local: + :depth: 2 + Fetch API ========= diff --git a/user_guide_src/source/general/caching.rst b/user_guide_src/source/general/caching.rst index f241cb02c15d..b3d5e152b879 100644 --- a/user_guide_src/source/general/caching.rst +++ b/user_guide_src/source/general/caching.rst @@ -12,6 +12,10 @@ page load speeds. By caching your pages, since they are saved in their fully rendered state, you can achieve performance much closer to that of static web pages. +.. contents:: + :local: + :depth: 2 + How Does Caching Work? ====================== diff --git a/user_guide_src/source/general/environments.rst b/user_guide_src/source/general/environments.rst index ac860d4634cf..057dd8e57dea 100644 --- a/user_guide_src/source/general/environments.rst +++ b/user_guide_src/source/general/environments.rst @@ -9,6 +9,10 @@ while developing an application, but it may also pose a security issue when "live". In development environments, you might want additional tools loaded that you don't in production environments, etc. +.. contents:: + :local: + :depth: 2 + The ENVIRONMENT Constant ======================== diff --git a/user_guide_src/source/general/managing_apps.rst b/user_guide_src/source/general/managing_apps.rst index 21fcebdf9407..5e4711958c24 100644 --- a/user_guide_src/source/general/managing_apps.rst +++ b/user_guide_src/source/general/managing_apps.rst @@ -8,6 +8,10 @@ directory. It is possible, however, to have multiple sets of applications that share a single CodeIgniter installation, or even to rename or relocate your application directory. +.. contents:: + :local: + :depth: 2 + Renaming or Relocating the Application Directory ================================================ diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst index 5eab9ee7a1e1..da056cc96cbc 100644 --- a/user_guide_src/source/general/urls.rst +++ b/user_guide_src/source/general/urls.rst @@ -2,6 +2,10 @@ CodeIgniter URLs ################ +.. contents:: + :local: + :depth: 2 + By default, URLs in CodeIgniter are designed to be search-engine and human-friendly. Rather than using the standard "query-string" approach to URLs that is synonymous with dynamic systems, CodeIgniter uses a **segment-based** approach::