Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
da307100
Commit
da307100
authored
Dec 03, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the doc styling
parent
4b9b61aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
7 deletions
+22
-7
documentation.php
manual/documentation.php
+8
-4
features.php
manual/features.php
+2
-2
highlight.php
manual/highlight.php
+10
-0
basic.css
manual/styles/basic.css
+2
-1
No files found.
manual/documentation.php
View file @
da307100
...
...
@@ -67,10 +67,10 @@ function renderCode($c = null) {
$h
->
loadString
(
$c
);
print
"<table width=500 border=1 class='dashed' cellpadding=0 cellspacing=0>"
;
print
"<tr><td>"
;
print
"<tr><td>
<b>
"
;
$h
->
toHtml
();
print
"</td></tr>"
;
print
"</
b></
td></tr>"
;
print
"</table>"
;
}
}
...
...
@@ -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"
,
...
...
manual/features.php
View file @
da307100
...
...
@@ -27,7 +27,7 @@ include("top.php");
<li
\
>
Database connection pooling with connection-record -registry
<li
\
>
Runtime configuration (no XML needed!)
<li
\
>
Very modular structure (only uses the needed features)
<li
\
>
The
whole framework
can be compiled into a single file
<li
\
>
The
runtime components
can be compiled into a single file
<li
\
>
Leveled configuration (attributes can be set at global, connection and table levels)
</ul>
<br
\
>
...
...
@@ -54,7 +54,7 @@ include("top.php");
<li
\
>
LIMIT / OFFSET emulation
</ul>
<br
\
>
<b
class=
'title'
>
OBJECT RELATIONAL MAPPING
</b>
:
<b
class=
'title'
>
OBJECT RELATIONAL MAPPING
</b>
<ul>
<b
class=
'title'
>
General features
</b>
<li
\
>
Validators
...
...
manual/highlight.php
View file @
da307100
...
...
@@ -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
=
'<span style="color: %s;">%s</span>'
;
}
else
{
// Basic styles
...
...
manual/styles/basic.css
View file @
da307100
...
...
@@ -33,8 +33,9 @@ font-family: Verdana, Arial, Helvetica;
}
table
.dashed
{
border-style
:
soli
d
;
border-style
:
dashe
d
;
border-color
:
116699
;
border-shadow
:
none
;
border-width
:
1
px
;
}
b
.title
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment