diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-08 17:43:29 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-08 17:43:29 +0000 |
commit | 9ea045e427caf38e2476eb5c85a937a1447ed25c (patch) | |
tree | 7bb1aa019238ee1aa0c8735ccd62f79290ea451e /doc | |
parent | a07f7ee4fbb51cd6f5f99ffe5959e15727ac9213 (diff) |
web commit by Fred: Reformat the entry so that the patch is readable. Sorry.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn | 77 |
1 files changed, 39 insertions, 38 deletions
diff --git a/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn b/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn index 774f51fba..efd66fbbb 100644 --- a/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn +++ b/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn @@ -1,42 +1,43 @@ The following patch adds a footer div on all pages to ease CSS themeing. Indeed, the misc.tmpl, recentchanges.tmpl and editpage.tmpl templates lack such a div. + This patch is against current svn. -Index: templates/recentchanges.tmpl -=================================================================== ---- templates/recentchanges.tmpl (révision 3543) -+++ templates/recentchanges.tmpl (copie de travail) -@@ -64,6 +64,8 @@ - </div> - - <!-- from <TMPL_VAR NAME=WIKINAME> --> -+<div id="footer"> -+</div> - - </body> - </html> -Index: templates/editpage.tmpl -=================================================================== ---- templates/editpage.tmpl (révision 3543) -+++ templates/editpage.tmpl (copie de travail) -@@ -86,5 +86,7 @@ - <TMPL_VAR PAGE_PREVIEW> - </div> - </TMPL_IF> -+<div id="footer"> -+</div> - </body> - </html> -Index: templates/misc.tmpl -=================================================================== ---- templates/misc.tmpl (révision 3543) -+++ templates/misc.tmpl (copie de travail) -@@ -22,6 +22,8 @@ - <div id="content"> - <TMPL_VAR PAGEBODY> - </div> -+<div id="footer"> -+</div> - - </body> - </html> + Index: templates/recentchanges.tmpl + =================================================================== + --- templates/recentchanges.tmpl (révision 3543) + +++ templates/recentchanges.tmpl (copie de travail) + @@ -64,6 +64,8 @@ + </div> + + <!-- from <TMPL_VAR NAME=WIKINAME> --> + +<div id="footer"> + +</div> + + </body> + </html> + Index: templates/editpage.tmpl + =================================================================== + --- templates/editpage.tmpl (révision 3543) + +++ templates/editpage.tmpl (copie de travail) + @@ -86,5 +86,7 @@ + <TMPL_VAR PAGE_PREVIEW> + </div> + </TMPL_IF> + +<div id="footer"> + +</div> + </body> + </html> + Index: templates/misc.tmpl + =================================================================== + --- templates/misc.tmpl (révision 3543) + +++ templates/misc.tmpl (copie de travail) + @@ -22,6 +22,8 @@ + <div id="content"> + <TMPL_VAR PAGEBODY> + </div> + +<div id="footer"> + +</div> + + </body> + </html> |