From: Florian Brosch Date: Wed, 30 Nov 2011 15:27:34 +0000 (+0100) Subject: doclets: Fix text size in html & devhelp X-Git-Tag: 0.37.1~3^2~270 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=8ec48f53db37a1fb7c4c06fb62cae13f0ffac40d;p=thirdparty%2Fvala.git doclets: Fix text size in html & devhelp --- diff --git a/icons/devhelpstyle.css b/icons/devhelpstyle.css index fa181e222..bc37d5c2b 100644 --- a/icons/devhelpstyle.css +++ b/icons/devhelpstyle.css @@ -1,5 +1,6 @@ * { - font-size: 12px; + font-family: 'Times New Roman'; + font-size: 12pt; } ul.external_link { diff --git a/icons/style.css b/icons/style.css index e556fbd6d..ef9697247 100644 --- a/icons/style.css +++ b/icons/style.css @@ -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 index 7c4bc0f17..000000000 --- a/src/libvaladoc/importer/girdocumentationbuilder.vala +++ /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 - */ - - -using Valadoc; -using Gee; - - -/** - * A documentation comment used by valadoc - */ -public class Valadoc.Importer.GirComment : Valadoc.Api.Comment { - private HashMap _parameters = new HashMap (); - - public Map 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; - } -} -