Author: crossley Date: Wed Jan 12 19:34:23 2005 New Revision: 125027 URL: http://svn.apache.org/viewcvs?view=rev&rev=125027 Log: There is a .htaccess in this directory. Its purpose is to deliver DTDs and associated resources to some impoverished XML tools that do not use the Catalog Entity Resolver. The .htaccess uses Files/ForceType to set proper content-type.
Added: forrest/trunk/main/webapp/resources/schema/dtd/.htaccess (contents, props changed) forrest/trunk/main/webapp/resources/schema/dtd/index.html (contents, props changed) forrest/trunk/main/webapp/resources/schema/entity/.htaccess (contents, props changed) forrest/trunk/main/webapp/resources/schema/entity/index.html (contents, props changed) Added: forrest/trunk/main/webapp/resources/schema/dtd/.htaccess Url: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/dtd/.htaccess?view=auto&rev=125027 ============================================================================== --- (empty file) +++ forrest/trunk/main/webapp/resources/schema/dtd/.htaccess Wed Jan 12 19:34:23 2005 @@ -0,0 +1,6 @@ +<Files ~ "\.(dtd|mod)$"> + ForceType application/xml-dtd +</Files> +<Files ~ "\.(pen|ent)$"> + ForceType application/xml-external-parsed-entity +</Files> Added: forrest/trunk/main/webapp/resources/schema/dtd/index.html Url: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/dtd/index.html?view=auto&rev=125027 ============================================================================== --- (empty file) +++ forrest/trunk/main/webapp/resources/schema/dtd/index.html Wed Jan 12 19:34:23 2005 @@ -0,0 +1,19 @@ +<html> +<head> + <title>Apache Document Type Definitions</title> +</head> +<body> + <h1>Apache Document Type Definitions</h1> + + <p> + If you are here looking for the Apache Document DTDs + then you shouldn't be :-) + See <a href="http://forrest.apache.org/docs/catalog.html">Using Catalog Entity Resolver for local DTDs</a>. + </p> + + <p> + That said, you can find the relevant DTDs using the naming convention + "forrest.apache.org/dtd/document-v13.dtd" etc. + </p> +</body> +</html> Added: forrest/trunk/main/webapp/resources/schema/entity/.htaccess Url: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/entity/.htaccess?view=auto&rev=125027 ============================================================================== --- (empty file) +++ forrest/trunk/main/webapp/resources/schema/entity/.htaccess Wed Jan 12 19:34:23 2005 @@ -0,0 +1,6 @@ +<Files ~ "\.(dtd|mod)$"> + ForceType application/xml-dtd +</Files> +<Files ~ "\.(pen|ent)$"> + ForceType application/xml-external-parsed-entity +</Files> Added: forrest/trunk/main/webapp/resources/schema/entity/index.html Url: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/resources/schema/entity/index.html?view=auto&rev=125027 ============================================================================== --- (empty file) +++ forrest/trunk/main/webapp/resources/schema/entity/index.html Wed Jan 12 19:34:23 2005 @@ -0,0 +1,19 @@ +<html> +<head> + <title>Apache Document Type Definitions</title> +</head> +<body> + <h1>Apache Document Type Definitions</h1> + + <p> + If you are here looking for the Apache Document DTDs + then you shouldn't be :-) + See <a href="http://forrest.apache.org/docs/catalog.html">Using Catalog Entity Resolver for local DTDs</a>. + </p> + + <p> + That said, you can find the relevant DTDs using the naming convention + "forrest.apache.org/dtd/document-v13.dtd" etc. + </p> +</body> +</html>
