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
91b5c2b0
Commit
91b5c2b0
authored
Jul 13, 2011
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some more adjustments, removed old script, added README, fixed version in conf.py
parent
67b1fee3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
16 deletions
+10
-16
README.md
README.md
+8
-0
convert.sh
convert.sh
+0
-14
conf.py
en/conf.py
+2
-2
No files found.
README.md
0 → 100644
View file @
91b5c2b0
# Doctrine DBAL Documentation
## How to Generate
1.
Run ./bin/install-dependencies.sh
2.
Run ./bin/generate-docs.sh
It will generate the documentation into the build directory of the checkout.
\ No newline at end of file
convert.sh
deleted
100755 → 0
View file @
67b1fee3
#!/bin/bash
FILES
=
`
find
-iname
*
.txt
-print
`
for
FILE
in
$FILES
do
# replace the + to # chars
sed
-i
-r
's/^([+]{4})\s/#### /'
$FILE
sed
-i
-r
's/^([+]{3})\s/### /'
$FILE
sed
-i
-r
's/^([+]{2})\s/## /'
$FILE
sed
-i
-r
's/^([+]{1})\s/# /'
$FILE
sed
-i
-r
's/(\[php\])/<?php/'
$FILE
# convert markdown to reStructured Text
pandoc
-f
markdown
-t
rst
$FILE
>
${
FILE
%.txt
}
.rst
done
\ No newline at end of file
en/conf.py
View file @
91b5c2b0
...
@@ -45,9 +45,9 @@ copyright = u'2010, Roman Borschel, Guilherme Blanco, Benjamin Eberlei, Jonathan
...
@@ -45,9 +45,9 @@ copyright = u'2010, Roman Borschel, Guilherme Blanco, Benjamin Eberlei, Jonathan
# built documents.
# built documents.
#
#
# The short X.Y version.
# The short X.Y version.
version
=
'2.
0
'
version
=
'2.
1
'
# The full version, including alpha/beta/rc tags.
# The full version, including alpha/beta/rc tags.
release
=
'2.
0.0-BETA4
'
release
=
'2.
1.0
'
# The language for content autogenerated by Sphinx. Refer to documentation
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
# for a list of supported languages.
...
...
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