From: André Malo Date: Sun, 6 Apr 2003 18:01:34 +0000 (+0000) Subject: - new XML and XSLT for our start page X-Git-Tag: pre_ajp_proxy~1895 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac7a154727c67c7ea4d4a8effeb5301eece753d6;p=apache - new XML and XSLT for our start page - required some changes in DTD, CSS and style/lang/* files Reviewed by: Astrid Ke�ler, Erik Abele git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99270 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/index.html.en b/docs/manual/index.html.en index 6ab693e0b6..d2013c7173 100644 --- a/docs/manual/index.html.en +++ b/docs/manual/index.html.en @@ -1,219 +1,82 @@ - - - -Apache HTTP Server Version 2.1 Documentation - - -
<-
Apache > HTTP Server > Documentation > Version 2.1
- -
-

Apache HTTP Server Version 2.1 Documentation

- - - -
- -
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Release Notes
-New Features in Version 2.0
Upgrading to Version - 2.0
Apache License
 
Reference Manual
Compiling and - Installing
Starting
Stopping or - Restarting
Run-time - Configuration Directives
Directive - Quick-Reference
Modules
Multi-Processing Modules - (MPMs)
Filters
Handlers
Server and Supporting - Programs
Glossary
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Users' Guide
Binding
Configuration - Files
Configuration - Sections
Content - Negotiation
Dynamic Shared - Objects (DSO)
Environment Variables -
Log Files
Mapping URLs to the - Filesystem
Performance - Tuning
Security - Tips
Server-Wide - Configuration
SSL/TLS Encryption
Suexec Execution - for CGI
URL Rewriting - Guide
Virtual Hosts
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
How-To / Tutorials
Authentication, - Authorization, and Access Control
CGI: Dynamic - Content
.htaccess files -
Server Side - Includes (SSI)
Per-user Web - Directories (public_html)
 
Platform Specific Notes
Microsoft - Windows
Novell NetWare -
EBCDIC Port -
 
Other Topics
Frequently Asked Questions -
Sitemap -
Documentation for - Developers
Other Notes
- -
- -
- + + +Apache HTTP Server Version 2.1 Documentation - Apache HTTP Server + + + + + + +
<-
+
+Apache > HTTP Server > Documentation
+

Apache HTTP Server Version 2.1 Documentation

+

+
+ + \ No newline at end of file diff --git a/docs/manual/index.xml b/docs/manual/index.xml new file mode 100644 index 0000000000..f195a92bff --- /dev/null +++ b/docs/manual/index.xml @@ -0,0 +1,73 @@ + + + + + + + + +Apache HTTP Server Version 2.1 Documentation + +Release Notes + New features with Apache 2.0 + Upgrading to 2.0 from 1.3 + Apache License + + +Reference Manual + Compiling and Installing + Starting + Stopping or Restarting + Run-time Configuration Directives + Directive Quick-Reference + Modules + Multi-Processing Modules (MPMs) + Filters + Handlers + Server and Supporting Programs + Glossary + + +Users' Guide + Binding + Configuration Files + Configuration Sections + Content Negotiation + Dynamic Shared Objects (DSO) + Environment Variables + Log Files + Mapping URLs to the Filesystem + Performance Tuning + Security Tips + Server-Wide Configuration + SSL/TLS Encryption + Suexec Execution for CGI + URL Rewriting Guide + Virtual Hosts + + +How-To / Tutorials + Authentication, Authorization, and Access + Control + CGI: Dynamic Content + .htaccess files + Server Side Includes (SSI) + Per-user Web Directories + (public_html) + + +Platform Specific Notes + Microsoft Windows + Novell NetWare + EBCDIC Port + + +Other Topics + Frequently Asked Questions + Sitemap + Documentation for Developers + Other Notes + + + + diff --git a/docs/manual/style/common.dtd b/docs/manual/style/common.dtd index 6ad4661f24..8ad730438a 100644 --- a/docs/manual/style/common.dtd +++ b/docs/manual/style/common.dtd @@ -143,4 +143,12 @@ width CDATA #IMPLIED > - \ No newline at end of file + + + + + + + + + diff --git a/docs/manual/style/css/manual-loose-100pc.css b/docs/manual/style/css/manual-loose-100pc.css index 493e39d9a5..5687737120 100644 --- a/docs/manual/style/css/manual-loose-100pc.css +++ b/docs/manual/style/css/manual-loose-100pc.css @@ -38,6 +38,10 @@ h2 { font-size: 1.2em; } +.category h2 { + font-size: 1em; +} + h3 { font-size: 1.1em; } diff --git a/docs/manual/style/css/manual-print.css b/docs/manual/style/css/manual-print.css index bffd210f8e..54c299f9b6 100644 --- a/docs/manual/style/css/manual-print.css +++ b/docs/manual/style/css/manual-print.css @@ -129,7 +129,8 @@ h2 { } .section h2, -.directive-section h2 { +.directive-section h2, +.category h2 { background-color: #fff; color: #000; } @@ -675,6 +676,10 @@ p.indent { margin-top: 1em; } +#index-page form { + display: none; +} + p.figure { margin-left: 2em; font-style: italic; diff --git a/docs/manual/style/css/manual.css b/docs/manual/style/css/manual.css index 66ebc39ded..3085be20cc 100644 --- a/docs/manual/style/css/manual.css +++ b/docs/manual/style/css/manual.css @@ -191,6 +191,12 @@ h2 { color: #fff; } +.category h2 { + background-color: #e5ecf3; + color: #405871; + font-size: 14px; +} + /* take care of s inside */ h2 a, h2 a:hover, @@ -363,6 +369,38 @@ table table.bordered th { border: 1px solid #aaa; } +/* index page layout table */ +/* ======================= */ +body#index-page div#page-content { + width: 100%; /* IE fun */ +} + +body[id]#index-page div#page-content { + width: auto; /* reasonable browsers. */ +} + +table#indextable { + width: 100%; + border-collapse: collapse; + border: 0 none; +} + +table#indextable td { + width: 33.3%; + border-left: 1px solid #aaa; + padding-top: 0; + padding-bottom: 0; +} + +table#indextable td.col1 { + border-left: 0 none; + padding-left: 0; +} + +table#indextable td.col3 { + padding-right: 0; +} + /* mod/dir. overview table and quick reference */ /* ============================================ */ table.module th, @@ -530,6 +568,18 @@ div#directive-list ul { padding: 0; } +/* indextable */ +/* ========== */ +table#indextable td ul { + list-style-type: none; + margin: 0 0 1em 0.5em; + padding: 0 0 0 0; +} + +table#indextable td ul li { + margin-top: 0.3em; +} + /* sidebar */ /* ====================== */ div#quickview li { @@ -679,6 +729,14 @@ div#page-content { padding-right: 30px; } +/* unsqueeze on some pages... */ +body#index-page div#page-content { + margin-left: 30px; + margin-right: 0; + padding-right: 0; + padding-bottom: 1em; +} + /* in general */ p { line-height: 1.3em; @@ -790,7 +848,7 @@ table div.warning { } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - * quotations, indented paragraphs and figures + * quotations, indented paragraphs, forms and figures * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ p.letters { margin: 1em 0 0 0; @@ -838,6 +896,18 @@ span.indent { display: block; } +#index-page form { + text-align: center; +} + +#index-page form p { + line-height: 1.1em; +} + +#index-page form input { + font-size: 1em; +} + p.figure { margin-left: 2em; font-style: italic; diff --git a/docs/manual/style/lang/de.xml b/docs/manual/style/lang/de.xml index fd5a0660a3..c852a91ef5 100644 --- a/docs/manual/style/lang/de.xml +++ b/docs/manual/style/lang/de.xml @@ -66,6 +66,7 @@ - Apache HTTP Server Apache HTTP Server Version 2.1 [APACHE DOCUMENTATION] + Suchen Index Startseite diff --git a/docs/manual/style/lang/en.xml b/docs/manual/style/lang/en.xml index 57677dcf08..1e34fe0ffe 100644 --- a/docs/manual/style/lang/en.xml +++ b/docs/manual/style/lang/en.xml @@ -63,6 +63,7 @@ - Apache HTTP Server Apache HTTP Server Version 2.1 [APACHE DOCUMENTATION] + Search Index Home diff --git a/docs/manual/style/lang/ja.xml b/docs/manual/style/lang/ja.xml index 97465ee2a7..7fb10f6722 100644 --- a/docs/manual/style/lang/ja.xml +++ b/docs/manual/style/lang/ja.xml @@ -58,6 +58,7 @@ - Apache HTTP $B%5!<%P(B Apache HTTP $B%5!<%P(B $B%P!<%8%g%s(B 2.1 [APACHE DOCUMENTATION] + Search $B:w0z(B $B%[!<%`(B diff --git a/docs/manual/style/lang/ru.xml b/docs/manual/style/lang/ru.xml index 53943823cd..d3d755ff58 100644 --- a/docs/manual/style/lang/ru.xml +++ b/docs/manual/style/lang/ru.xml @@ -52,6 +52,7 @@ - HTTP ÓÅÒ×ÅÒ Apache HTTP ÓÅÒ×ÅÒ Apache ÷ÅÒÓÉÑ 2.1 [äïëõíåîôáãéñ APACHE] + Search ïÇÌÁ×ÌÅÎÉÅ îÁ ÇÌÁ×ÎÕÀ ÓÔÒÁÎÉÃÕ diff --git a/docs/manual/style/manualpage.dtd b/docs/manual/style/manualpage.dtd index 2bdb498e7a..a0ef109ee9 100644 --- a/docs/manual/style/manualpage.dtd +++ b/docs/manual/style/manualpage.dtd @@ -6,11 +6,3 @@ - - - - - - - - diff --git a/docs/manual/style/sitemap.dtd b/docs/manual/style/sitemap.dtd index 89808e7964..e326afdbd9 100644 --- a/docs/manual/style/sitemap.dtd +++ b/docs/manual/style/sitemap.dtd @@ -6,6 +6,9 @@ + + + @@ -15,8 +18,3 @@ - - - - - diff --git a/docs/manual/style/xsl/common.xsl b/docs/manual/style/xsl/common.xsl index 0fed1753da..12b88d5008 100644 --- a/docs/manual/style/xsl/common.xsl +++ b/docs/manual/style/xsl/common.xsl @@ -39,6 +39,7 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ +

+ + + + +

+ + + + + + +

+ + + + + + + + + + +
+ + + + + +
+
+ + + + + + + + + + + +
+ + + + + + +
  • + + separate + + + + + + + + + + +
  • + + + + + + + + + + + + + +
    + + +

    + + + + + + + + + +

    + + + + + +
      + +
    + + + + +
    +
    + + + + diff --git a/docs/manual/style/xsl/sitemap.xsl b/docs/manual/style/xsl/sitemap.xsl index 1436b829b6..c01ffe4d10 100644 --- a/docs/manual/style/xsl/sitemap.xsl +++ b/docs/manual/style/xsl/sitemap.xsl @@ -142,7 +142,7 @@ - +
  • separate @@ -168,7 +168,7 @@ - + @@ -212,7 +212,7 @@ - +