]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libvaladoc/html: typo
authorHohoo <grejppi@gmail.com>
Sun, 7 Mar 2010 12:24:47 +0000 (13:24 +0100)
committerFlorian Brosch <flo.brosch@gmail.com>
Sun, 7 Mar 2010 12:24:47 +0000 (13:24 +0100)
icons/*.css: typo

icons/devhelpstyle.css
icons/style.css
icons/wikistyle.css
src/doclets/valadoc.org/doclet.vala
src/libvaladoc/html/basicdoclet.vala

index 10d940fe9f1fb85b4e63a88bc19fe65e6fdbaa94..346725f870cd0cceeff11fcb18e7ed9bb22ad09d 100644 (file)
@@ -83,7 +83,7 @@ div {
        font-size: 40;
 }
 
-div.site_foother {
+div.site_footer {
        text-align: center;
        background-color: #aaaaff;
        padding-bottom: 5px;
index c5af325b1a3cc724aa829979b574e8e99d9ca9a5..673847240a2169f0d635717e5f4067b911e3e679 100644 (file)
@@ -86,7 +86,7 @@ div {
        font-size: 40;
 }
 
-div.site_foother {
+div.site_footer {
        text-align: center;
        background-color: #aaaaff;
        padding-bottom: 5px;
index a80bd8135f504c134cebef24af81f4ac3f4f1021..0f14363d9e14f9eacce31d02f4e363d40376b78a 100644 (file)
@@ -79,7 +79,7 @@ div {
        font-size: 40;
 }
 
-div.site_foother {
+div.site_footer {
        text-align: center;
        background-color: #aaaaff;
        padding-bottom: 5px;
index 0e184db8518b592f94bc525e4935870eb8d1ec08..f22c20bdda9dd055e74893b715f7c669993e513a 100755 (executable)
@@ -35,6 +35,10 @@ public class Valadoc.ValadocOrg.Doclet : Valadoc.Html.BasicDoclet {
                _renderer = new ValadocOrg.HtmlRenderer (this);
        }
 
+       protected override string get_img_path_html (Api.Node element, string type) {
+               return Path.build_filename ("/doc", element.package.name,"img", element.full_name () + "." + type);
+       }
+
        private string get_path (Api.Node element) {
                return element.full_name () + ".html";
        }
index 28d6fb2b70e858eb5844c94f93a44cd97220f372..51459eaa31dd1813e0754ce770ba099539d8d8bf 100755 (executable)
@@ -734,7 +734,7 @@ public abstract class Valadoc.Html.BasicDoclet : Api.Visitor, Doclet {
        protected void write_file_footer () {
                writer.end_tag ("div");
                writer.simple_tag ("br");
-               writer.start_tag ("div", {"class", "site_foother"});
+               writer.start_tag ("div", {"class", "site_footer"});
                writer.text ("Generated by ");
                writer.link ("http://www.valadoc.org/", "Valadoc");
                writer.end_tag ("div");