You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2016/12/12 22:36:32 UTC

[29/46] geode git commit: GEODE-2135 Update schema location in the docs

GEODE-2135  Update schema location in the docs


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/b35f07a7
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/b35f07a7
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/b35f07a7

Branch: refs/heads/feature/GEODE-1930
Commit: b35f07a7669c67f09a19a801846ac11bcee4048b
Parents: 03715a6
Author: Karen Miller <km...@pivotal.io>
Authored: Tue Nov 22 13:39:28 2016 -0800
Committer: Karen Miller <km...@pivotal.io>
Committed: Tue Nov 22 15:47:12 2016 -0800

----------------------------------------------------------------------
 .../data_regions/managing_data_regions.html.md.erb  |  4 ++--
 .../the_cache/intro_cache_management.html.md.erb    | 14 ++++++++------
 .../the_cache/managing_a_client_cache.html.md.erb   |  4 ++--
 .../managing_a_peer_server_cache.html.md.erb        |  4 ++--
 ...onfiguring_db_connections_using_JNDI.html.md.erb | 16 ++++++++--------
 .../region_compression.html.md.erb                  |  4 ++--
 .../diagnosing_system_probs.html.md.erb             |  8 ++++----
 .../reference/topics/elements_ref.html.md.erb       | 16 +++++++++-------
 8 files changed, 37 insertions(+), 33 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb b/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
index 0164cd7..c93f13a 100644
--- a/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
+++ b/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
@@ -237,9 +237,9 @@ You can create subregions using one of the following methods:
 
         <?xml version="1.0"?>
         <cache
-            xmlns="http://geode.incubator.apache.org/schema/cache"
+            xmlns="http://geode.apache.org/schema/cache"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+            xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
             version="1.0"
             lock-lease="120"
             lock-timeout="60"

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/basic_config/the_cache/intro_cache_management.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/basic_config/the_cache/intro_cache_management.html.md.erb b/geode-docs/basic_config/the_cache/intro_cache_management.html.md.erb
index e2e9a4e..2427bd5 100644
--- a/geode-docs/basic_config/the_cache/intro_cache_management.html.md.erb
+++ b/geode-docs/basic_config/the_cache/intro_cache_management.html.md.erb
@@ -39,7 +39,8 @@ Geode's caching APIs provide specialized behavior for different system member ty
 
 ## <a id="concept_F8BA7F2D3B5A40D78461E78BC5FB31FA__section_6486BDAF06EC4B91A548872066F3EC8C" class="no-quick-link"></a>The Cache XML
 
-Your `cache.xml` must be formatted according to the product XML schema definition `cache-1.0.xsd`. The schema definition file is available in the product distribution at `$GEMFIRE/schemas/geode.apache.org/schema/cache/cache-1.0.xsd`.
+Your `cache.xml` must be formatted according to the product XML schema definition `cache-1.0.xsd`. The schema definition file is available at
+[http://geode.apache.org/schema/cache/cache-1.0.xsd](http://geode.apache.org/schema/cache/cache-1.0.xsd).
 
 You use one format for peer and server caches and another for client caches.
 
@@ -47,9 +48,9 @@ You use one format for peer and server caches and another for client caches.
 
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
-<cache xmlns="http://geode.incubator.apache.org/schema/cache"
+<cache xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0\u201d>
 ...
 </cache>
@@ -60,9 +61,9 @@ You use one format for peer and server caches and another for client caches.
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
 <client-cache
-    xmlns="http://geode.incubator.apache.org/schema/cache"
+    xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0\u201d>
 ...
 </client-cache>
@@ -76,7 +77,8 @@ Your system configuration and cache configuration are initialized when you start
 
 The steps in this section use `gemfire.properties` and `cache.xml` file examples, except where API is required. You can configure your distributed system properties and cache through the API as well, and you can use a combination of file configuration and API configuration.
 
-The XML examples may not include the full `cache.xml` file listing. All of your declarative cache configuration must conform to the cache XSD in the product installation `$GEMFIRE/schemas/geode.apache.org/schema/cache/cache-1.0.xsd`.
+The XML examples may not include the full `cache.xml` file listing. All of your declarative cache configuration must conform to the cache XSD at
+[http://geode.apache.org/schema/cache/cache-1.0.xsd](http://geode.apache.org/schema/cache/cache-1.0.xsd).
 
 For all of your Geode applications:
 

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/basic_config/the_cache/managing_a_client_cache.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/basic_config/the_cache/managing_a_client_cache.html.md.erb b/geode-docs/basic_config/the_cache/managing_a_client_cache.html.md.erb
index 1c76397..dbd5112 100644
--- a/geode-docs/basic_config/the_cache/managing_a_client_cache.html.md.erb
+++ b/geode-docs/basic_config/the_cache/managing_a_client_cache.html.md.erb
@@ -33,9 +33,9 @@ Geode automatically configures the distributed system for your `ClientCache` as
         ``` pre
         <?xml version="1.0" encoding="UTF-8"?>
         <client-cache
-            xmlns="http://geode.incubator.apache.org/schema/cache"
+            xmlns="http://geode.apache.org/schema/cache"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+            xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
             version="1.0">
             <pool name="serverPool">
                 <locator host="host1" port="44444"/>

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/basic_config/the_cache/managing_a_peer_server_cache.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/basic_config/the_cache/managing_a_peer_server_cache.html.md.erb b/geode-docs/basic_config/the_cache/managing_a_peer_server_cache.html.md.erb
index 65fceca..e7d48d8 100644
--- a/geode-docs/basic_config/the_cache/managing_a_peer_server_cache.html.md.erb
+++ b/geode-docs/basic_config/the_cache/managing_a_peer_server_cache.html.md.erb
@@ -51,9 +51,9 @@ Geode peers are members of a Geode distributed system that do not act as clients
         ``` pre
         <?xml version="1.0" encoding="UTF-8"?>
         <cache
-            xmlns="http://geode.incubator.apache.org/schema/cache"
+            xmlns="http://geode.apache.org/schema/cache"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+            xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
             version="1.0\u201d>
             // NOTE: Use this <cache-server> element only for server processes 
             <cache-server port="40404"/>

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/developing/transactions/configuring_db_connections_using_JNDI.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/developing/transactions/configuring_db_connections_using_JNDI.html.md.erb b/geode-docs/developing/transactions/configuring_db_connections_using_JNDI.html.md.erb
index 55ad402..4a08b6a 100644
--- a/geode-docs/developing/transactions/configuring_db_connections_using_JNDI.html.md.erb
+++ b/geode-docs/developing/transactions/configuring_db_connections_using_JNDI.html.md.erb
@@ -53,9 +53,9 @@ When specifying the configuration properties for JCA-implemented database driver
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
 <cache
-    xmlns="http://geode.incubator.apache.org/schema/cache"
+    xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0"
     lock-lease="120" lock-timeout="60" search-timeout="300"> 
    <region name="root">
@@ -196,9 +196,9 @@ The following are some example data source configurations for different database
 
 ``` pre
 <?xml version="1.0"?>
-<cache xmlns="http://geode.incubator.apache.org/schema/cache"
+<cache xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0"
     lock-lease="120" 
     lock-timeout="60"
@@ -247,9 +247,9 @@ Use the `PooledDataSource` and `SimpleDataSource` connections for operations exe
 
 ``` pre
 <?xml version="1.0"?>
-<cache xmlns="http://geode.incubator.apache.org/schema/cache"
+<cache xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0"
     lock-lease="120"
     lock-timeout="60"
@@ -301,9 +301,9 @@ A simple data source connection does not generally require vendor-specific prope
 
 ``` pre
 <?xml version="1.0"?>
-<cache xmlns="http://geode.incubator.apache.org/schema/cache"
+<cache xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0"
     lock-lease="120" 
     lock-timeout="60" 

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/managing/region_compression/region_compression.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/managing/region_compression/region_compression.html.md.erb b/geode-docs/managing/region_compression/region_compression.html.md.erb
index 0d28a2e..90add1a 100644
--- a/geode-docs/managing/region_compression/region_compression.html.md.erb
+++ b/geode-docs/managing/region_compression/region_compression.html.md.erb
@@ -83,9 +83,9 @@ To enable compression on your region, set the following region attribute in your
 
 ``` pre
 <?xml version="1.0" encoding= "UTF-8"?>
-<cache xmlns="http://geode.incubator.apache.org/schema/cache"
+<cache xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0\u201d lock-lease="120"  lock-timeout= "60" search-timeout= "300"  is-server= "true"  copy-on-read= "false" > 
    <region name="compressedRegion" > 
       <region-attributes data-policy="replicate" ... /> 

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/managing/troubleshooting/diagnosing_system_probs.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/managing/troubleshooting/diagnosing_system_probs.html.md.erb b/geode-docs/managing/troubleshooting/diagnosing_system_probs.html.md.erb
index fcb7926..9b34a3b 100644
--- a/geode-docs/managing/troubleshooting/diagnosing_system_probs.html.md.erb
+++ b/geode-docs/managing/troubleshooting/diagnosing_system_probs.html.md.erb
@@ -156,9 +156,9 @@ Response:
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
 <cache
-    xmlns="http://geode.incubator.apache.org/schema/cache"
+    xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0\u201d>
 ...
 </cache>
@@ -169,9 +169,9 @@ Response:
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
 <client-cache
-    xmlns="http://geode.incubator.apache.org/schema/cache"
+    xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0">
 ...
 </client-cache>

http://git-wip-us.apache.org/repos/asf/geode/blob/b35f07a7/geode-docs/reference/topics/elements_ref.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/reference/topics/elements_ref.html.md.erb b/geode-docs/reference/topics/elements_ref.html.md.erb
index 9351bdf..7ca73dc 100644
--- a/geode-docs/reference/topics/elements_ref.html.md.erb
+++ b/geode-docs/reference/topics/elements_ref.html.md.erb
@@ -29,16 +29,18 @@ This section documents cache.xml file requirements and variables. It also points
 
 The cache.xml file has these requirements:
 
--   The contents must conform to the XML schema definition provided in cache-1.0.xsd. The schema definition file is available in the product distribution at `$GEMFIRE/schemas/geode.apache.org/schema/cache/cache-1.0.xsd`.
+-   The contents must conform to the XML schema definition provided in cache-1.0.xsd.
+The schema definition file is available at
+[http://geode.apache.org/schema/cache/cache-1.0.xsd](http://geode.apache.org/schema/cache/cache-1.0.xsd).
 -   The file must include a &lt;cache&gt; schema declaration of one of the following forms:
     -   Server or peer cache:
 
         ``` pre
         <?xml version="1.0" encoding="UTF-8"?>
         <cache
-            xmlns="http://geode.incubator.apache.org/schema/cache"
+            xmlns="http://geode.apache.org/schema/cache"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+            xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
             version="1.0">
         ...
         </cache>
@@ -49,9 +51,9 @@ The cache.xml file has these requirements:
         ``` pre
         <?xml version="1.0" encoding="UTF-8"?>
         <client-cache
-            xmlns="http://geode.incubator.apache.org/schema/cache"
+            xmlns="http://geode.apache.org/schema/cache"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-            xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+            xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
             version="1.0">
         ...
         </client-cache>
@@ -70,9 +72,9 @@ Example cache.xml with variables and the gfsh `start server` command that sets t
 ``` pre
 <?xml version="1.0" encoding="UTF-8"?>
 <cache
-    xmlns="http://geode.incubator.apache.org/schema/cache"
+    xmlns="http://geode.apache.org/schema/cache"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://geode.incubator.apache.org/schema/cache http://geode.incubator.apache.org/schema/cache/cache-1.0.xsd"
+    xsi:schemaLocation="http://geode.apache.org/schema/cache http://geode.apache.org/schema/cache/cache-1.0.xsd"
     version="1.0">
   <cache-server port="${PORT}" max-connections="${MAXCNXS}"/>
   <region name="root">