From 1e10096d64a11520f14c021b2107693d2483dcd9 Mon Sep 17 00:00:00 2001 From: danroth27 Date: Fri, 1 May 2015 17:11:19 -0700 Subject: [PATCH] Renamed runtime to fundamentals --- docs/conceptual-overview/aspnet.rst | 12 ++++++------ docs/{runtime => fundamentals}/configuration.rst | 0 .../dependency-injection.rst | 0 docs/{runtime => fundamentals}/diagnostics.rst | 0 docs/{runtime => fundamentals}/environments.rst | 0 docs/{runtime => fundamentals}/index.rst | 4 ++-- docs/{runtime => fundamentals}/owin.rst | 0 docs/{runtime => fundamentals}/routing.rst | 0 docs/{runtime => fundamentals}/static-files.rst | 0 docs/getting-started/installing-on-mac.rst | 2 +- docs/index.rst | 2 +- 11 files changed, 10 insertions(+), 10 deletions(-) rename docs/{runtime => fundamentals}/configuration.rst (100%) rename docs/{runtime => fundamentals}/dependency-injection.rst (100%) rename docs/{runtime => fundamentals}/diagnostics.rst (100%) rename docs/{runtime => fundamentals}/environments.rst (100%) rename docs/{runtime => fundamentals}/index.rst (92%) rename docs/{runtime => fundamentals}/owin.rst (100%) rename docs/{runtime => fundamentals}/routing.rst (100%) rename docs/{runtime => fundamentals}/static-files.rst (100%) diff --git a/docs/conceptual-overview/aspnet.rst b/docs/conceptual-overview/aspnet.rst index 496179d2af..c2476f8422 100644 --- a/docs/conceptual-overview/aspnet.rst +++ b/docs/conceptual-overview/aspnet.rst @@ -59,7 +59,7 @@ The ``ConfigureServices`` method defines the services used by your application a Services -------- -A service is a component that is intended for common consumption in an application. Services are made available through dependency injection. ASP.NET 5 includes a simple built-in inversion of control (IoC) container that supports constructor injection by default, but can be easily replaced with your IoC container of choice. See :doc:`/runtime/dependency-injection` for more details. +A service is a component that is intended for common consumption in an application. Services are made available through dependency injection. ASP.NET 5 includes a simple built-in inversion of control (IoC) container that supports constructor injection by default, but can be easily replaced with your IoC container of choice. See :doc:`/fundamentals/dependency-injection` for more details. Services in ASP.NET 5 come in three varieties: singleton, scoped and transient. Transient services are created each time they’re requested from the container. Scoped services are created only if they don’t already exist in the current scope. For Web applications, a container scope is created for each request, so you can think of scoped services as per request. Singleton services are only ever created once. @@ -70,14 +70,14 @@ In ASP.NET 5 you compose your request pipeline using middleware. ASP.NET 5 middl ASP.NET 5 comes with a rich set of prebuilt middleware: -- :doc:`/runtime/static-files` -- :doc:`/runtime/routing` -- :doc:`/runtime/diagnostics` +- :doc:`/fundamentals/static-files` +- :doc:`/fundamentals/routing` +- :doc:`/fundamentals/diagnostics` - :doc:`Authentication ` You can also author your own :doc:`custom middleware `. -You can use any `OWIN `_-based middleware with ASP.NET 5. See :doc:`/runtime/owin` for details. +You can use any `OWIN `_-based middleware with ASP.NET 5. See :doc:`/fundamentals/owin` for details. Servers ------- @@ -112,7 +112,7 @@ ASP.NET 5 uses a new configuration model for handling of simple name-value pairs configuration.AddEnvironmentVariables(); Configuration = configuration; -See :doc:`/runtime/configuration` for more details on the new configuration system and :doc:`/runtime/environments` for details on how to work with environments in ASP.NET 5. +See :doc:`/fundamentals/configuration` for more details on the new configuration system and :doc:`/fundamentals/environments` for details on how to work with environments in ASP.NET 5. Client-side development ----------------------- diff --git a/docs/runtime/configuration.rst b/docs/fundamentals/configuration.rst similarity index 100% rename from docs/runtime/configuration.rst rename to docs/fundamentals/configuration.rst diff --git a/docs/runtime/dependency-injection.rst b/docs/fundamentals/dependency-injection.rst similarity index 100% rename from docs/runtime/dependency-injection.rst rename to docs/fundamentals/dependency-injection.rst diff --git a/docs/runtime/diagnostics.rst b/docs/fundamentals/diagnostics.rst similarity index 100% rename from docs/runtime/diagnostics.rst rename to docs/fundamentals/diagnostics.rst diff --git a/docs/runtime/environments.rst b/docs/fundamentals/environments.rst similarity index 100% rename from docs/runtime/environments.rst rename to docs/fundamentals/environments.rst diff --git a/docs/runtime/index.rst b/docs/fundamentals/index.rst similarity index 92% rename from docs/runtime/index.rst rename to docs/fundamentals/index.rst index 64550e44f6..f1816f1ed7 100644 --- a/docs/runtime/index.rst +++ b/docs/fundamentals/index.rst @@ -1,5 +1,5 @@ -Runtime -======= +Fundamentals +============ .. note:: diff --git a/docs/runtime/owin.rst b/docs/fundamentals/owin.rst similarity index 100% rename from docs/runtime/owin.rst rename to docs/fundamentals/owin.rst diff --git a/docs/runtime/routing.rst b/docs/fundamentals/routing.rst similarity index 100% rename from docs/runtime/routing.rst rename to docs/fundamentals/routing.rst diff --git a/docs/runtime/static-files.rst b/docs/fundamentals/static-files.rst similarity index 100% rename from docs/runtime/static-files.rst rename to docs/fundamentals/static-files.rst diff --git a/docs/getting-started/installing-on-mac.rst b/docs/getting-started/installing-on-mac.rst index 64607db6cc..8bd4074cfb 100644 --- a/docs/getting-started/installing-on-mac.rst +++ b/docs/getting-started/installing-on-mac.rst @@ -42,7 +42,7 @@ To install the latest version of DNX using DNVM, run: ``dnvm upgrade`` -Now that DNX is installed, you're ready to begin using ASP.NET 5! Learn how you can :doc:`create a cross-platform console application ` or a simple ASP.NET MVC application that runs within DNX. +Now that DNX is installed, you're ready to begin using ASP.NET 5! Learn how you can :doc:`create a cross-platform console application ` or a simple ASP.NET MVC application that runs within DNX. .. TODO: create links to cross-platform console application and simple ASP.NET MVC application running in DNX/command line. diff --git a/docs/index.rst b/docs/index.rst index c436cfaabe..d32dc5fa1d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,7 +12,7 @@ ASP.NET 5 Documentation getting-started/index tutorials/index conceptual-overview/index - runtime/index + fundamentals/index dnx/index client-side/index security/index