Skip to content

Commit 1ede838

Browse files
committed
Trying custom stuff
1 parent 084301f commit 1ede838

File tree

8 files changed

+134
-19
lines changed

8 files changed

+134
-19
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ sql/multicorn--*.sql
99
/dist
1010
/results
1111
doc/_build
12+
doc/dist

doc/_static/css/custom.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background-color: red;
3+
}

doc/conf.py

+27-1
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@
1515
import sys
1616
import os
1717

18+
from sphinx.builders.html import StandaloneHTMLBuilder
19+
StandaloneHTMLBuilder.css_files = ["_static/css/custom.css"] + StandaloneHTMLBuilder.css_files
20+
1821
# If extensions (or modules to document with autodoc) are in another directory,
1922
# add these directories to sys.path here. If the directory is relative to the
2023
# documentation root, use os.path.abspath to make it absolute, like shown here.
2124
#sys.path.insert(0, os.path.abspath('.'))
2225
sys.path.insert(0, os.path.abspath('../python/'))
26+
sys.path.insert(0, os.path.abspath('.'))
2327

2428
# -- General configuration ------------------------------------------------
2529

@@ -35,6 +39,7 @@
3539
'sphinx.ext.todo',
3640
'sphinx.ext.coverage',
3741
'sphinx.ext.viewcode',
42+
'multicorn_directives'
3843
]
3944

4045
# Add any paths that contain templates here, relative to this directory.
@@ -103,9 +108,17 @@
103108

104109
# -- Options for HTML output ----------------------------------------------
105110

111+
# on_rtd is whether we are on readthedocs.org
112+
import os
113+
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
114+
115+
if not on_rtd: # only import and set the theme if we're building docs locally
116+
import sphinx_rtd_theme
117+
html_theme = 'sphinx_rtd_theme'
118+
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
119+
106120
# The theme to use for HTML and HTML Help pages. See the documentation for
107121
# a list of builtin themes.
108-
html_theme = 'default'
109122

110123
# Theme options are theme-specific and customize the look and feel of a theme
111124
# further. For a list of options available for each theme, see the
@@ -267,3 +280,16 @@
267280

268281
# Example configuration for intersphinx: refer to the Python standard library.
269282
intersphinx_mapping = {'http://docs.python.org/': None}
283+
284+
rst_prolog = """
285+
:mailaddress: [email protected]
286+
:mailarchives: http://librelist.com/browser/multicorn
287+
:buglink: https://github.com/Kozea/Multicorn/issues
288+
:codelink: https://github.com/Kozea/Multicorn
289+
"""
290+
291+
rst_epilog = """
292+
.. _Foreign Data Wrapper: http://www.postgresql.org/docs/current/static/ddl-foreign-data.html
293+
294+
295+
"""

doc/contribute.rst

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
Send Us a Mail
66
==============
77

8-
Want to write kind words? You can send a mail on :mailaddress:`our Librelist
9-
mailing-list` and even take a look at :mailarchives:`the archives`.
8+
Want to write kind words? You can send a mail on .. meta: mailaddress_`our Librelist
9+
mailing-list` and even take a look at .. meta: mailarchives_`the archives`.
1010

1111

1212
Chat with Us on IRC
@@ -18,12 +18,15 @@ Want to say something? Join our IRC room: ##kozea on Freenode.
1818
Report Bugs
1919
===========
2020

21-
Found a bug? Want a new feature? Report a new issue on the :buglink:`Multicorn
21+
.. meta
22+
:mailarchives:
23+
24+
Found a bug? Want a new feature? Report a new issue on the :meta: buglink `Multicorn
2225
bug-tracker on GitHub`.
2326

2427

2528
Hack
2629
====
2730

28-
Interested in hacking? Feel free to clone the :codelink:`git repository on
31+
Interested in hacking? Feel free to clone the .. meta: codelink_`git repository on
2932
GitHub` if you want to add new features, fix bugs or update documentation.

doc/index.rst

+14-4
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,30 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
Welcome to Multicorn's documentation!
7-
=====================================
6+
7+
Multicorn
8+
=========
9+
10+
Multicorn is a PostgreSQL 9.1+ extension meant to make `Foreign Data Wrapper`_
11+
development easy, by allowing the programmer to use the Python programming
12+
language.
13+
14+
If you just wanto use it as soon as possible, jump straight to the installation
15+
section.
16+
817

918
Contents:
1019

1120
.. toctree::
1221
:maxdepth: 2
13-
introduction.rst
22+
1423
installation.rst
1524
getting-started.rst
25+
introduction.rst
1626
foreign-data-wrappers.rst
1727
third-party-fdw.rst
1828
implementing-an-fdw.rst
1929
contribute.rst
20-
index.rst
2130

2231
Indices and tables
2332
==================
@@ -26,3 +35,4 @@ Indices and tables
2635
* :ref:`modindex`
2736
* :ref:`search`
2837

38+

doc/introduction.rst

-10
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,3 @@ Multicorn is a PostgreSQL 9.1+ extension meant to make `Foreign Data Wrapper`_
55
development easy, by allowing the programmer to use the Python programming
66
language.
77

8-
Ok, but why should I care ?
9-
---------------------------
10-
11-
- Multicorn allows you to access any data source in your PostgreSQL database.
12-
- You can leverage the full power of SQL to query your data sources
13-
- Every tool you use for SQL can be reused with those datasources (think about
14-
an ORM, BI tool...)
15-
16-
.. _Foreign Data Wrapper: http://people.planetpostgresql.org/andrew/uploads/fdw2.pdf
17-

doc/multicorn_directives/__init__.py

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
from docutils.parsers.rst import Directive
2+
from docutils.parsers.rst import directives
3+
from docutils.nodes import Element
4+
from sphinx.builders.html import StandaloneHTMLBuilder
5+
6+
7+
8+
class_map = {
9+
'read': 'glyphicons-book-open',
10+
'write': 'glyphicons-edit',
11+
'transaction': 'glyphicons-database-plus',
12+
'import_schema': 'glyphicons-disk-import'
13+
}
14+
15+
class api_compat(Element):
16+
17+
def __init__(self, api=None):
18+
self.api = api or {}
19+
super(api_compat, self).__init__()
20+
21+
def visit_api_compat_node_html(self, node):
22+
self.body.append("<span>Supports: %s" % "".join(
23+
['<span class="%s" title="%s">%s</span>' %
24+
(class_map.get(key), key, key)
25+
for key in node.api]))
26+
27+
28+
def depart_api_compat_node_html(self, node):
29+
self.body.append("</span>")
30+
31+
32+
def visit_api_compat_node_text(self, node):
33+
self.add_text("Supported API: %s" % ",".join(node.api))
34+
35+
36+
def depart_api_compat_node_text(self, node):
37+
pass
38+
39+
40+
def visit_api_compat_node_latex(self, node):
41+
# TODO: make it render in latex
42+
classes = node.get('classes', [])
43+
self.body.append(r'\DUspan{%s}{' % ','.join(classes))
44+
45+
46+
def depart_api_compat_node_latex(self, node):
47+
pass
48+
49+
50+
51+
52+
53+
54+
def setup(app):
55+
app.add_directive('api_compat', APICompatDirective)
56+
app.add_node(api_compat,
57+
html=(visit_api_compat_node_html, depart_api_compat_node_html),
58+
latex=(visit_api_compat_node_latex, depart_api_compat_node_latex),
59+
text=(visit_api_compat_node_text, depart_api_compat_node_text))
60+
61+
62+
class APICompatDirective(Directive):
63+
64+
has_content = True
65+
66+
option_spec = {
67+
'read': directives.flag,
68+
'write': directives.flag,
69+
'transaction': directives.flag,
70+
'import_schema': directives.flag
71+
}
72+
73+
def run(self):
74+
values = {key: key in self.options
75+
for key in self.option_spec}
76+
return [api_compat(api=values)]

doc/third-party-fdw.rst

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ third-party modules available on the net:
77
* rethinkdb-multicorn-postgresql-fdw
88
A FDW for accessing RethinkDB databases
99

10+
.. api_compat::
11+
:read:
12+
:write:
13+
:transaction:
14+
:import_schema:
15+
1016
repository
1117
https://github.com/wilsonrmsorg/rethinkdb-multicorn-postgresql-fdw/
1218

0 commit comments

Comments
 (0)