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
6aad5f8e
Commit
6aad5f8e
authored
Oct 21, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs formatting updated
parent
dd4aff4a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
8 deletions
+21
-8
documentation.php
manual/documentation.php
+14
-4
basic.css
manual/styles/basic.css
+1
-1
top.php
manual/top.php
+6
-3
No files found.
manual/documentation.php
View file @
6aad5f8e
...
...
@@ -442,21 +442,25 @@ $menu = array("Getting started" =>
</tr>
<tr>
<td
bgcolor=
"white"
valign=
"top"
>
<?php
if
(
!
isset
(
$_REQUEST
[
"index"
]))
{
$i
=
1
;
$missing
=
array
();
$missing
[
0
]
=
0
;
$missing
[
1
]
=
0
;
print
"<dl>
\n
"
;
foreach
(
$menu
as
$title
=>
$titles
)
{
print
$i
.
". <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
#
$i
\"
>"
.
$title
.
"</a><br>
\n
"
;
print
"<dt>"
.
$i
.
". <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
#
$i
\"
>"
.
$title
.
"</a></dt>
\n
"
;
print
"<dd><dl>"
;
$i2
=
1
;
foreach
(
$titles
as
$k
=>
$t
)
{
$e
=
"
$i
."
.
$i2
.
""
;
if
(
is_array
(
$t
))
{
print
"<d
d>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
.
$i2
#
$e
\"
>"
.
$k
.
"</a><br
>
\n
"
;
print
"<d
t>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
.
$i2
#
$e
\"
>"
.
$k
.
"</a><dt
>
\n
"
;
$i3
=
1
;
print
"<dd><dl>"
;
foreach
(
$t
as
$k2
=>
$v2
)
{
$str
=
""
;
if
(
!
file_exists
(
"docs/
$title
-
$k
-
$v2
.php"
))
{
...
...
@@ -472,9 +476,11 @@ $menu = array("Getting started" =>
}
$e
=
implode
(
"."
,
array
(
$i
,
$i2
,
$i3
));
print
"<d
d><dd>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
.
$i2
#
$e
\"
>"
.
$v2
.
"</a>
$str
<br
>
\n
"
;
print
"<d
t>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
.
$i2
#
$e
\"
>"
.
$v2
.
"</a>
$str
</dt
>
\n
"
;
$i3
++
;
}
print
"</dl></dd>"
;
}
else
{
$str
=
""
;
if
(
!
file_exists
(
"docs/
$title
-
$t
.php"
))
{
...
...
@@ -487,12 +493,16 @@ $menu = array("Getting started" =>
$str
.=
" [ <font color='red'>code</font> ] "
;
touch
(
"codes/
$title
-
$t
.php"
);
}
print
"<d
d>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
#
$e
\"
>"
.
$t
.
"</a>
$str
<br
>
\n
"
;
print
"<d
t>"
.
$e
.
" <a href=
\"
"
.
$_SERVER
[
'PHP_SELF'
]
.
"?index=
$i
#
$e
\"
>"
.
$t
.
"</a>
$str
</dt
>
\n
"
;
}
$i2
++
;
}
$i
++
;
print
"</dl></dd>"
;
}
print
"</dl>
\n
"
;
}
else
{
$i
=
1
;
$ex
=
explode
(
"."
,
$_REQUEST
[
"index"
]);
...
...
manual/styles/basic.css
View file @
6aad5f8e
body
{
margin
:
10
,
0
,
0
,
0
;
margin
:
10px
auto
0px
auto
;
font-family
:
Verdana
,
Arial
,
Helvetica
;
text-decoration
:
none
;
}
...
...
manual/top.php
View file @
6aad5f8e
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>
Doctrine ORM Framework
</TITLE>
<META
HTTP-EQUIV=
"Content-Type"
CONTENT=
"text/html; charset=iso-8859-1"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"styles/basic.css"
>
<style
type=
"text/css"
>
</style>
</HEAD>
<table
width=
"100%"
cellspacing=
0
cellpadding=
0
>
<tr>
...
...
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