From fe64b3ff3d51cff0e076fdfadad791efc99ecf42 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 21 Nov 2014 10:10:39 +0900 Subject: [PATCH 1/3] add a documentation example with custome layout and css --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index cc85a1f1e..be5f18cf1 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -73,6 +73,7 @@ Documentation using a customized version of the default theme * Chaco: http://code.enthought.com/projects/chaco/docs/html/ * Chef: http://docs.opscode.com/ * Djagios: http://djagios.org/ +* EZ-Draw: http://pageperso.lif.univ-mrs.fr/~edouard.thiel/ez-draw/doc/en/html/ez-manual.html * GetFEM++: http://home.gna.org/getfem/ * Google or-tools: https://or-tools.googlecode.com/svn/trunk/documentation/user_manual/index.html * GPAW: https://wiki.fysik.dtu.dk/gpaw/ From 2db40f77259fbb669292ae4c489ebd54d9974581 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 21 Nov 2014 10:11:39 +0900 Subject: [PATCH 2/3] wrong branch... Backed out changeset 4d70ed8c4259 --- EXAMPLES | 1 - 1 file changed, 1 deletion(-) diff --git a/EXAMPLES b/EXAMPLES index be5f18cf1..cc85a1f1e 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -73,7 +73,6 @@ Documentation using a customized version of the default theme * Chaco: http://code.enthought.com/projects/chaco/docs/html/ * Chef: http://docs.opscode.com/ * Djagios: http://djagios.org/ -* EZ-Draw: http://pageperso.lif.univ-mrs.fr/~edouard.thiel/ez-draw/doc/en/html/ez-manual.html * GetFEM++: http://home.gna.org/getfem/ * Google or-tools: https://or-tools.googlecode.com/svn/trunk/documentation/user_manual/index.html * GPAW: https://wiki.fysik.dtu.dk/gpaw/ From 6993a7254c9c59a3bb4374dd7515dfabd351410d Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Wed, 26 Nov 2014 20:14:31 +0900 Subject: [PATCH 3/3] fix documentation for extension development tutorial. Closes #1624. Thanks to dkeeney_fastacash. --- doc/extdev/tutorial.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/extdev/tutorial.rst b/doc/extdev/tutorial.rst index a03d6e08b..84e7258bc 100644 --- a/doc/extdev/tutorial.rst +++ b/doc/extdev/tutorial.rst @@ -245,6 +245,7 @@ todolist directive has neither content nor arguments that need to be handled. The ``todo`` directive function looks like this:: from sphinx.util.compat import make_admonition + from sphinx.locale import _ class TodoDirective(Directive):