]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
doclets: Fix text size in html & devhelp
authorFlorian Brosch <flo.brosch@gmail.com>
Wed, 30 Nov 2011 15:27:34 +0000 (16:27 +0100)
committerFlorian Brosch <flo.brosch@gmail.com>
Wed, 30 Nov 2011 15:27:34 +0000 (16:27 +0100)
icons/devhelpstyle.css
icons/style.css
src/libvaladoc/importer/girdocumentationbuilder.vala [deleted file]

index fa181e22297aff6b4bf84f762d3708938dc3e9b2..bc37d5c2b93c25bae8a7283b677cf29cd58c16c4 100644 (file)
@@ -1,5 +1,6 @@
 * {
-       font-size: 12px;
+       font-family: 'Times New Roman';
+       font-size: 12pt;
 }
 
 ul.external_link {
index e556fbd6d4d6b9816baab4b39ebe9e03681fc0fc..ef969724759778425b42d604fd3f8bcd76c2d8fc 100644 (file)
@@ -1,5 +1,6 @@
 * {
-       font-size: 12px;
+       font-family: 'Times New Roman';
+       font-size: 12pt;
 }
 
 ul.external_link {
diff --git a/src/libvaladoc/importer/girdocumentationbuilder.vala b/src/libvaladoc/importer/girdocumentationbuilder.vala
deleted file mode 100644 (file)
index 7c4bc0f..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/* DocumentationBuilderimporter.vala
- *
- * Copyright (C) 2010 Florian Brosch
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
- *
- * Author:
- *     Florian Brosch <flo.brosch@gmail.com>
- */
-
-
-using Valadoc;
-using Gee;
-
-
-/**
- * A documentation comment used by valadoc
- */
-public class Valadoc.Importer.GirComment : Valadoc.Api.Comment {
-       private HashMap<string, Api.Comment> _parameters = new HashMap<string, APi.Comment> ();
-
-       public Map<string, Api.Comment> parameters {
-               owned get { return _parameters.read_only_view; }
-       }
-
-       public Api.Comment? return_value {
-               internal set;
-               get;
-       }
-       
-       //TODO
-       public GirComment.empty (Api.SourceReference _source_reference) {
-               base ("", _source_reference);
-               return_value = null;
-       }
-
-       //TODO
-       public GirComment (Api.Comment comment) {
-               base (comment.content, comment.source_reference);
-               return_value = null;
-       }
-
-       internal void add_parameter (string name, Api.Comment comment) {
-               _parameters.set (name, comment);
-       }
-
-       public bool is_empty () {
-               return return_value == null && (content == null || content == "") && parameters.is_empty;
-       }
-}
-