From: Alan Knowles Date: Fri, 30 Apr 2010 02:31:01 +0000 (+0800) Subject: Merge branch 'master' into live X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=a884b7db7a6233cfbfc56458bc76525fb48d96e8;hp=43b95a998e0d221c87f96c4f3031e902957e5141 Merge branch 'master' into live --- diff --git a/docs.js b/docs.js index 9755ebe..cc82686 100644 --- a/docs.js +++ b/docs.js @@ -67,7 +67,8 @@ ns_list.map(function(ns_name) }; for (var i in actions) { - idx[i]= ns[i].length; + // we flag GLib as a GObject lib... + idx[i]= ns_name == 'GLib' ? 1 : ns[i].length ; ns[i].map( function(n) { Gio.simple_write(outputdir + '/'+ ns_name + '.' + n + '.html', cls_template.process( diff --git a/docs/index.html b/docs/index.html index 0a852cf..b411cc1 100755 --- a/docs/index.html +++ b/docs/index.html @@ -9,38 +9,44 @@ - -
- - + +
-

GObject Libraries

- - {! - if (!thisClass.objects) { continue; } - !} -
-

{+ (new Link().toSymbol(thisClass.name)) +}

+ +
+ +
+

GObject Libraries

+ + {! + if (!thisClass.objects) { continue; } + !} +
+

{+ (new Link().toSymbol(thisClass.name)) +}

+
+
+
+ +
+ +

Non - GObject Libraries

+ + {! + if (thisClass.objects) { continue; } + !} +
+

{+ (new Link().toSymbol(thisClass.name)) +}

+
+
+
+ +
-
- -

Non - GObject Libraries

- - {! - if (thisClass.objects) { continue; } - !} -
-

{+ (new Link().toSymbol(thisClass.name)) +}

-
-
- - -
- - + + diff --git a/docs/resources/default.css b/docs/resources/default.css index 3ccdc37..5935d5d 100755 --- a/docs/resources/default.css +++ b/docs/resources/default.css @@ -510,4 +510,10 @@ td.msource margin:5px; padding:5px; width:18%; +} +.ns-list { + + display:block; + float:left; + margin:30px; } \ No newline at end of file