[valadoc] libvaladoc/html: typo icons/*.css: typo
- From: Florian Brosch <flobrosch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [valadoc] libvaladoc/html: typo icons/*.css: typo
- Date: Sun, 21 Mar 2010 21:49:16 +0000 (UTC)
commit 4bfa31fe5c54ba44aa817a4acf021d2e9d5f5cdf
Author: Hohoo <grejppi gmail com>
Date: Sun Mar 7 13:24:47 2010 +0100
libvaladoc/html: typo
icons/*.css: typo
icons/devhelpstyle.css | 2 +-
icons/style.css | 2 +-
icons/wikistyle.css | 2 +-
src/doclets/valadoc.org/doclet.vala | 4 ++++
src/libvaladoc/html/basicdoclet.vala | 2 +-
5 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/icons/devhelpstyle.css b/icons/devhelpstyle.css
index 10d940f..346725f 100644
--- a/icons/devhelpstyle.css
+++ b/icons/devhelpstyle.css
@@ -83,7 +83,7 @@ div {
font-size: 40;
}
-div.site_foother {
+div.site_footer {
text-align: center;
background-color: #aaaaff;
padding-bottom: 5px;
diff --git a/icons/style.css b/icons/style.css
index c5af325..6738472 100644
--- a/icons/style.css
+++ b/icons/style.css
@@ -86,7 +86,7 @@ div {
font-size: 40;
}
-div.site_foother {
+div.site_footer {
text-align: center;
background-color: #aaaaff;
padding-bottom: 5px;
diff --git a/icons/wikistyle.css b/icons/wikistyle.css
index a80bd81..0f14363 100644
--- a/icons/wikistyle.css
+++ b/icons/wikistyle.css
@@ -79,7 +79,7 @@ div {
font-size: 40;
}
-div.site_foother {
+div.site_footer {
text-align: center;
background-color: #aaaaff;
padding-bottom: 5px;
diff --git a/src/doclets/valadoc.org/doclet.vala b/src/doclets/valadoc.org/doclet.vala
index 0e184db..f22c20b 100755
--- a/src/doclets/valadoc.org/doclet.vala
+++ b/src/doclets/valadoc.org/doclet.vala
@@ -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";
}
diff --git a/src/libvaladoc/html/basicdoclet.vala b/src/libvaladoc/html/basicdoclet.vala
index 28d6fb2..51459ea 100755
--- a/src/libvaladoc/html/basicdoclet.vala
+++ b/src/libvaladoc/html/basicdoclet.vala
@@ -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");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]