[Libreoffice-commits] .: Branch 'tinderbox' - 3 commits - lib/HTMLPopUp lib/TinderDB local_conf/Error_Parse.pm local_conf/TreeData.pm
Thorsten Behrens
thorsten at kemper.freedesktop.org
Fri Jan 27 00:44:22 PST 2012
lib/HTMLPopUp/OverLib.pm | 7 +++--
lib/TinderDB/Build.pm | 54 +---------------------------------------------
local_conf/Error_Parse.pm | 1
local_conf/TreeData.pm | 18 +++++++++++++++
4 files changed, 25 insertions(+), 55 deletions(-)
New commits:
commit 9e63a5906b344dedd1b681a06dec5615162442c7
Author: Thorsten Behrens <tbehrens at suse.com>
Date: Fri Jan 27 09:25:11 2012 +0100
Trim down config to LibreOffice.
Some cleanups, some more feature branches added.
diff --git a/lib/TinderDB/Build.pm b/lib/TinderDB/Build.pm
index 2ec3f1e..00b0756 100644
--- a/lib/TinderDB/Build.pm
+++ b/lib/TinderDB/Build.pm
@@ -181,7 +181,7 @@ $NUM_OF_AVERAGE = 10;
$NOTICE= TinderDB::Notice->new();
-$DEBUG=1;
+$DEBUG=0;
# Find the name of each build and the proper order to display them.
# No part of the code should peek at keys %{ $DATABASE{$tree} } directly.
@@ -1337,45 +1337,16 @@ sub buildcell_links {
# We wish to encourage people to use the brief log. If they need
# the full log they can get there from the brief log page.
- if ($current_rec->{'brieflog'}) {
$links.= "\t\t\t".
HTMLPopUp::Link(
- "linktxt"=>"l",
+ "linktxt"=>"details",
# the mail processor tells us the URL to
# retreive the log files.
"href"=>$current_rec->{'brieflog'},
"windowtxt"=>$current_rec->{'info'}.$index_links,
"windowtitle" =>$title,
)."\n";
- }
-
- if ($current_rec->{'fulllog'}) {
- $links.= "\t\t\t".
- HTMLPopUp::Link(
- "linktxt"=>"L",
- # the mail processor tells us the URL to
- # retreive the log files.
- "href"=>$current_rec->{'fulllog'},
- "windowtxt"=>$current_rec->{'info'}.$index_links,
- "windowtitle" =>$title,
- )."\n";
- }
- # Binary file Link
- my $binary_ref = (
- FileStructure::get_filename($tree, build_bin_dir) .
- $current_rec->{'binaryname'}
- );
-
- if ($current_rec->{'binaryname'}) {
- $links.= "\t\t\t".
- HTMLPopUp::Link(
- "linktxt"=>"B",
- "href"=> $binary_ref,
- "windowtxt"=>$current_rec->{'info'}.$index_links,
- "windowtitle" =>$title,
- )."\n";
- }
# Bloat Data Link
@@ -1394,27 +1365,6 @@ sub buildcell_links {
}
# What Changed Link
- if ( $current_rec->{'previousbuildtime'} ) {
-
- # If the current build is broken, show what to see what has
- # changed in VC during the last build.
-
- my ($maxdate) = $current_rec->{'starttime'};
- my ($mindate) = $current_rec->{'previousbuildtime'};
-
- $links .= (
- "\t\t\t".
- VCDisplay::query(
- 'linktxt'=> "C",
- 'tree' => $tree,
- 'mindate' => $mindate,
- 'maxdate' => $maxdate,
- "windowtxt"=>$current_rec->{'info'}.$index_links,
- "windowtitle" =>$title,
- ).
- "\n"
- );
- }
# Error count (not a link, but hey)
diff --git a/local_conf/Error_Parse.pm b/local_conf/Error_Parse.pm
index 316bfa9..cc59796 100644
--- a/local_conf/Error_Parse.pm
+++ b/local_conf/Error_Parse.pm
@@ -161,6 +161,7 @@ sub line_type {
($line =~ / Warning:/) || # dmake warning
($line =~ / Error:/) || # dmake error
($line =~ /\*\*\* No rule to make target/) || # make error (no rule or failed to build)
+ ($line =~ /^cc1plus: warnings being treated as errors/) ||
0);
diff --git a/local_conf/TreeData.pm b/local_conf/TreeData.pm
index dd99d52..e49ec0e 100644
--- a/local_conf/TreeData.pm
+++ b/local_conf/TreeData.pm
@@ -243,6 +243,24 @@ $VERSION = '#tinder_version#';
branch => 'libreoffice-3-4',
VCS => 'GIT',
},
+ 'feature/gbuild_extensions' => {
+ root => 'git://anongit.freedesktop.org/git/libreoffice/core',
+ module => 'all',
+ branch => 'feature/gbuild_extensions',
+ VCS => 'GIT',
+ },
+ 'feature/gbuild_cppuhelper' => {
+ root => 'git://anongit.freedesktop.org/git/libreoffice/core',
+ module => 'all',
+ branch => 'feature/gbuild_cppuhelper',
+ VCS => 'GIT',
+ },
+ 'feature/gbuild_java' => {
+ root => 'git://anongit.freedesktop.org/git/libreoffice/core',
+ module => 'all',
+ branch => 'feature/gbuild_java',
+ VCS => 'GIT',
+ },
);
# We group trees into sets so that individual managers can get a page
commit f373521163405c9a880f89baa6b7266d5a681e44
Author: Miklos Vajna <vmiklos at frugalware.org>
Date: Mon Dec 5 16:50:32 2011 +0100
Don't close the popup by just moving the mouse over the 'Close' link.
It closes the window annoyingly easily.
diff --git a/lib/HTMLPopUp/OverLib.pm b/lib/HTMLPopUp/OverLib.pm
index f282ba3..42c7d45 100644
--- a/lib/HTMLPopUp/OverLib.pm
+++ b/lib/HTMLPopUp/OverLib.pm
@@ -532,7 +532,7 @@ function ol_content_caption(text,title,close) {
var closing, closeevent;
closing = "";
- closeevent = "onmouseover";
+ closeevent = "onclick";
if (o3_closeclick == 1) closeevent = (o3_closetitle ? "title='" + o3_closetitle +"'" : "") + " onclick";
if (o3_capicon != "") {
nameId = ' hspace = \"5\"'+' align = \"middle\" alt = \"\"';
commit 55265a8e070773c8b9b11c1848f25c6115e85ceb
Author: Muthu Subramanian K <sumuthu at suse.com>
Date: Mon Dec 5 16:47:19 2011 +0100
Disable the closing of window when moving the mouse over the links
diff --git a/lib/HTMLPopUp/OverLib.pm b/lib/HTMLPopUp/OverLib.pm
index 831c304..f282ba3 100644
--- a/lib/HTMLPopUp/OverLib.pm
+++ b/lib/HTMLPopUp/OverLib.pm
@@ -1720,8 +1720,9 @@ sub Link {
$popup .= ",STICKY";
$popup .= "); \" ";
-
- $popup .= "onMouseOut=\" return nd(); \" ";
+
+ # MouseOut functions currently disabled for better UX
+ # $popup .= "onMouseOut=\" return nd(); \" ";
}
More information about the Libreoffice-commits
mailing list