diff --git a/manual/documentation.php b/manual/documentation.php
index 58ffaf6fd..e9209f146 100644
--- a/manual/documentation.php
+++ b/manual/documentation.php
@@ -67,10 +67,10 @@ function renderCode($c = null) {
$h->loadString($c);
print "
";
- print "";
+ print " |
";
$h->toHtml();
- print " |
";
+ print "";
print "
";
}
}
@@ -116,10 +116,12 @@ $menu = array("Getting started" =>
"Composite",
"Sequential")
),
- /**
+
"Schema reference" =>
array(
"Data types" => array(
+ "Introduction",
+ "Type modifiers",
"Boolean",
"Integer",
"Float",
@@ -129,13 +131,13 @@ $menu = array("Getting started" =>
"Blob",
"Clob",
"Timestamp",
+ "Time",
"Date",
"Enum",
"Gzip",
),
),
- */
"Basic Components" =>
array(
"Manager"
@@ -248,6 +250,8 @@ $menu = array("Getting started" =>
"Introduction",
"Levels of configuration",
"Setting attributes" => array(
+ "Portability",
+ "Identifier quoting",
"Table creation",
"Fetching strategy",
"Batch size",
diff --git a/manual/features.php b/manual/features.php
index 992651d41..48524ba3f 100644
--- a/manual/features.php
+++ b/manual/features.php
@@ -27,7 +27,7 @@ include("top.php");
Database connection pooling with connection-record -registry
Runtime configuration (no XML needed!)
Very modular structure (only uses the needed features)
-The whole framework can be compiled into a single file
+The runtime components can be compiled into a single file
Leveled configuration (attributes can be set at global, connection and table levels)
@@ -54,7 +54,7 @@ include("top.php");
LIMIT / OFFSET emulation
-OBJECT RELATIONAL MAPPING:
+OBJECT RELATIONAL MAPPING
General features
- Validators
diff --git a/manual/highlight.php b/manual/highlight.php
index d23d2f08c..8ab0aa1e5 100644
--- a/manual/highlight.php
+++ b/manual/highlight.php
@@ -113,6 +113,7 @@ class PHP_Highlight
// Inline
if ($inline === false) {
// Default colours from php.ini
+ /**
$this->highlight = array(
'string' => ini_get('highlight.string'),
'comment' => ini_get('highlight.comment'),
@@ -121,6 +122,15 @@ class PHP_Highlight
'default' => ini_get('highlight.default'),
'html' => ini_get('highlight.html')
);
+ */
+ $this->highlight = array(
+ 'string' => "#cb0864",
+ 'comment' => "#888888",
+ 'keyword' => "#118994",
+ 'bg' => "#222222",
+ 'default' => "#000000",
+ 'html' => ini_get('highlight.html')
+ );
$this->span = '%s';
} else {
// Basic styles
diff --git a/manual/styles/basic.css b/manual/styles/basic.css
index c44d01207..7e1a63a74 100644
--- a/manual/styles/basic.css
+++ b/manual/styles/basic.css
@@ -33,8 +33,9 @@ font-family: Verdana, Arial, Helvetica;
}
table.dashed {
-border-style: solid;
+border-style: dashed;
border-color: 116699;
+border-shadow: none;
border-width: 1 px;
}
b.title {