From 0379d92c5e5f40939192f5fac1ed86c52f5eecc5 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Wed, 21 Sep 2011 20:17:40 +0000 Subject: [PATCH] Added some sections to the manual Enhanced some styles --- jOOQ-website/contribute.php | 3 + jOOQ-website/css/jooq.css | 59 ++++- jOOQ-website/frame.php | 60 ++--- jOOQ-website/img/navigation-item-active.png | Bin 0 -> 1836 bytes jOOQ-website/index.php | 78 ++---- jOOQ-website/links.php | 3 + .../manual/ADVANCED/CONNECTBY/index.php | 3 + jOOQ-website/manual/ADVANCED/Export/index.php | 3 + jOOQ-website/manual/ADVANCED/Import/index.php | 3 + .../manual/ADVANCED/MasterData/index.php | 3 + .../manual/ADVANCED/OracleHints/index.php | 3 + .../manual/ADVANCED/SchemaMapping/index.php | 3 + jOOQ-website/manual/ADVANCED/index.php | 3 + jOOQ-website/manual/DSL/ALIAS/index.php | 3 + jOOQ-website/manual/DSL/ARITHMETIC/index.php | 3 + jOOQ-website/manual/DSL/CASE/index.php | 3 + jOOQ-website/manual/DSL/CAST/index.php | 3 + jOOQ-website/manual/DSL/CONDITION/index.php | 3 + jOOQ-website/manual/DSL/EXISTS/index.php | 3 + jOOQ-website/manual/DSL/FUNCTIONS/index.php | 122 +++++++++- jOOQ-website/manual/DSL/IN/index.php | 3 + jOOQ-website/manual/DSL/NESTED/index.php | 3 + jOOQ-website/manual/DSL/PROCEDURES/index.php | 7 +- jOOQ-website/manual/DSL/SELECT/index.php | 5 +- jOOQ-website/manual/DSL/SQL/index.php | 3 + jOOQ-website/manual/DSL/UNION/index.php | 150 +++++++++++- jOOQ-website/manual/DSL/index.php | 5 +- .../manual/JOOQ/ExampleDatabase/index.php | 3 + jOOQ-website/manual/JOOQ/Extend/index.php | 3 + jOOQ-website/manual/JOOQ/Factory/index.php | 3 + jOOQ-website/manual/JOOQ/Query/index.php | 3 + jOOQ-website/manual/JOOQ/QueryPart/index.php | 3 + jOOQ-website/manual/JOOQ/Result/index.php | 3 + .../manual/JOOQ/ResultQuery/index.php | 3 + .../manual/JOOQ/Serializability/index.php | 3 + jOOQ-website/manual/JOOQ/Table/index.php | 3 + .../manual/JOOQ/UpdatableRecord/index.php | 3 + jOOQ-website/manual/JOOQ/index.php | 3 + .../manual/META/Configuration/index.php | 3 + jOOQ-website/manual/META/PROCEDURE/index.php | 3 + jOOQ-website/manual/META/SCHEMA/index.php | 3 + jOOQ-website/manual/META/SEQUENCE/index.php | 3 + jOOQ-website/manual/META/TABLE/index.php | 3 + jOOQ-website/manual/META/UDT/index.php | 3 + jOOQ-website/manual/META/index.php | 3 + jOOQ-website/manual/index.php | 5 +- jOOQ-website/notes.php | 3 + .../src/main/resources/html-pages.xsl | 3 + jOOQ-website/src/main/resources/manual.xml | 226 +++++++++++++++++- 49 files changed, 723 insertions(+), 108 deletions(-) create mode 100644 jOOQ-website/img/navigation-item-active.png diff --git a/jOOQ-website/contribute.php b/jOOQ-website/contribute.php index 64766c5f1e..5a709e6d9b 100644 --- a/jOOQ-website/contribute.php +++ b/jOOQ-website/contribute.php @@ -8,6 +8,9 @@ function getSlogan() { motivated staff, providing new database integrations, website translations, and shouting out to the world about jOOQ. You have a blog? Write about jOOQ in your language!"; } +function getActiveMenu() { + return "contribute"; +} function printContent() { ?>

The hall of fame

diff --git a/jOOQ-website/css/jooq.css b/jOOQ-website/css/jooq.css index abc11d8223..83f6f0bd92 100644 --- a/jOOQ-website/css/jooq.css +++ b/jOOQ-website/css/jooq.css @@ -67,8 +67,19 @@ p.slogan { padding-left: 2em; color: #444; font-family: 'Georgia',Serif; - font-style: italic; - height: 2.5em; + height: 3em; + + background: none repeat scroll 0 0 #ffffff; + border-radius: 10px 10px 10px 10px; + border-width: 2px; + border-style: solid; + border-color: #882222; + box-shadow: 5px 5px 20px #aa6633; + color: #000000; + display: block; + line-height: 1.5em; + margin: 1.5em 0; + padding: 1em; } td.left { @@ -139,10 +150,15 @@ a:hover { background: -webkit-gradient(linear, left, right, from(#f6cab9), to(#ffeedd)); background: -moz-linear-gradient(left, #f6cab9, #ffeedd); background: gradient(linear, left, right, from(#f6cab9), to(#ffeedd)); + + -webkit-box-shadow: inset rgba(0,0,0,.1) 0 5px 5px; + -moz-box-shadow: inset rgba(0,0,0,.1) 0 5px 5px; + box-shadow: inset rgba(0,0,0,.1) 0 5px 5px; + border-top: 1px solid rgba(0,0,0,.2); } #navigation { - padding-top: 1.3em; + padding-top: 20px; padding-left: 3em; padding-right: 3em; @@ -153,14 +169,37 @@ a:hover { background: gradient(linear, left top, left bottom, from(#555), to(#333)); } +#tweets { + display: none; + padding-top: 1.3em; + padding-left: 3em; + padding-right: 3em; + + height: 40px; + + background: #444; + background: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333)); + background: -moz-linear-gradient(top, #555, #333); + background: gradient(linear, left top, left bottom, from(#555), to(#333)); +} + #navigation a, #navigation a:link, #navigation a:visited, #navigation a:hover, #navigation a:active { - color: #fadccb; + color: #aaa; + text-shadow: #000 -1px -1px 0px; text-decoration: none; - text-shadow: 0 1px 1px #666666; + font-size: 15px; +} + +#navigation .navigation-item-active a, +#navigation .navigation-item-active a:link, +#navigation .navigation-item-active a:visited, +#navigation .navigation-item-active a:hover, +#navigation .navigation-item-active a:active { + color: #fadccb; } #navigation a:hover { @@ -169,11 +208,12 @@ a:hover { div.navigation-item-left { float: left; - padding-right: 2em; + margin-right: 2em; + height: 40px; } -#tweets { - height: 40px; +div.navigation-item-active { + background: url("../img/navigation-item-active.png") no-repeat center bottom; } #footer { @@ -193,7 +233,8 @@ div.navigation-item-left { -moz-box-shadow: inset rgba(0,0,0,.1) 0 5px 5px; box-shadow: inset rgba(0,0,0,.1) 0 5px 5px; border-top: 1px solid rgba(0,0,0,.2); - text-shadow: #555 -1px -1px 0px;} + text-shadow: #555 -1px -1px 0px; + } div.tweet-item-left { float: left; diff --git a/jOOQ-website/frame.php b/jOOQ-website/frame.php index 3b52c689f6..682978da95 100644 --- a/jOOQ-website/frame.php +++ b/jOOQ-website/frame.php @@ -14,55 +14,59 @@