gtk-doc r648 - trunk
- From: stefkost svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk-doc r648 - trunk
- Date: Tue, 20 Jan 2009 12:12:34 +0000 (UTC)
Author: stefkost
Date: Tue Jan 20 12:12:34 2009
New Revision: 648
URL: http://svn.gnome.org/viewvc/gtk-doc?rev=648&view=rev
Log:
* gtkdoc-fixxref.in:
Indent.
* gtkdoc-mkdb.in:
Fix end of string handling.
* style.css:
Use one tango colors one more time.
Modified:
trunk/ChangeLog
trunk/gtkdoc-fixxref.in
trunk/gtkdoc-mkdb.in
trunk/style.css
Modified: trunk/gtkdoc-fixxref.in
==============================================================================
--- trunk/gtkdoc-fixxref.in (original)
+++ trunk/gtkdoc-fixxref.in Tue Jan 20 12:12:34 2009
@@ -78,7 +78,7 @@
my $path_prefix="";
if ($HTML_DIR =~ m%(.*?)/share/gtk-doc/html%) {
$path_prefix=$1;
-# print "Path prefix: $path_prefix\n";
+ #print "Path prefix: $path_prefix\n";
}
if (!defined $MODULE_DIR) {
Modified: trunk/gtkdoc-mkdb.in
==============================================================================
--- trunk/gtkdoc-mkdb.in (original)
+++ trunk/gtkdoc-mkdb.in Tue Jan 20 12:12:34 2009
@@ -336,11 +336,13 @@
foreach my $symbol (keys(%IndexEntriesFull)) {
if(($NAME_SPACE eq "") || $symbol =~ /^$NAME_SPACE/i) {
$letter=substr($symbol,$pos,1);
- if ($letter eq "_") {
- # stop on "_"
- last;
+ if (defined($letter)) {
+ if ($letter eq "_") {
+ # stop on "_"
+ last;
+ }
+ $prefix{uc($letter)}++;
}
- $prefix{uc($letter)}++;
}
}
if ($letter ne "_") {
Modified: trunk/style.css
==============================================================================
--- trunk/style.css (original)
+++ trunk/style.css Tue Jan 20 12:12:34 2009
@@ -41,6 +41,7 @@
top: 3.1em;
z-index: 0;
}
+ /* this seems to be a bug in the xsl style sheets when generating indexes */
div.index div.index
{
top: 0em;
@@ -79,7 +80,8 @@
}
td.shortcuts
{
- color: #cc0000;
+ /* tango:scarlet red 1 */
+ color: #ef2929;
font-size: 80%;
white-space: nowrap;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]