Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-12-21 02:37:17 +0000
committerSravan Kumar Lakkimsetti2018-12-21 02:37:17 +0000
commit81a4a6ca24cc28c1c750e66044b136cfb0b5b2d9 (patch)
treeaf1283775913b6169b26a50b8c989ad8add41869 /eclipse.platform.releng.tychoeclipsebuilder
parent5939687daecc51230399b78eb9f89ff7b1f3ea59 (diff)
downloadeclipse.platform.releng.aggregator-81a4a6ca24cc28c1c750e66044b136cfb0b5b2d9.tar.gz
eclipse.platform.releng.aggregator-81a4a6ca24cc28c1c750e66044b136cfb0b5b2d9.tar.xz
eclipse.platform.releng.aggregator-81a4a6ca24cc28c1c750e66044b136cfb0b5b2d9.zip
Bug 541598 - Generate gitLog as html report
Change-Id: Ib74c680f341cb8575990bc837747f139a1bb5875 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/gitLogSection.css18
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_java12.php2
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php2
3 files changed, 14 insertions, 8 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/gitLogSection.css b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/gitLogSection.css
index 7c5cf7a08..14e0aa3e9 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/gitLogSection.css
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/gitLogSection.css
@@ -16,6 +16,7 @@ div.gitLogSection table {
margin-right: 10%;
margin-left: 10%;
border: 1px solid black;
+ width: 1400px;
}
div.gitLogSection table tr {
@@ -63,21 +64,22 @@ div.gitLogSection table th.datecell {
div.gitLogSection table td.datecell {
text-align: left;
- width: 30em;
color: black;
- white-space: nowrap;
+ width: 225px;
+ text-overflow: ellipsis;
}
div.gitLogSection table th.authorcell {
text-align: left;
color: black;
+}
div.gitLogSection table td.authorcell {
text-align: left;
- width: 20em;
+ width: 200px;
color: black;
- white-space: nowrap;
+ text-overflow: ellipsis;
}
div.gitLogSection table th.commitcell {
@@ -87,9 +89,12 @@ div.gitLogSection table th.commitcell {
div.gitLogSection table td.commitcell {
text-align: left;
- width: 80em;
+ width: 975px;
color: black;
+ overflow: hidden;
+ display: inline-block;
white-space: nowrap;
+ text-overflow: ellipsis;
}
div.gitLogSection table td.errorcell {
@@ -103,4 +108,5 @@ div.gitLogSection table td.namecell {
width: 30em;
color: black;
white-space: nowrap;
-} \ No newline at end of file
+}
+
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_java12.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_java12.php
index baf002487..6185c758d 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_java12.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_java12.php
@@ -139,7 +139,7 @@ if (isset ($BUILD_FAILED) ) {
echo "<p>Specifically, see <a href=\"buildlogs/$SPECIFIC_LOG\">the log with errors</a>, \n";
echo "or a <a href=\"$summaryFile[0]\">summary</a>. <br /> \n";
echo "Or see traditional <a href=\"testResults.php\">Compile Logs</a> (if any).\n";
- echo "See recent changes in the <a href="gitLog.php">git log</a>.</p>\n";
+ echo "See recent changes in the <a href=\"gitLog.php\">git log</a>.</p>\n";
}
}
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
index baf002487..6185c758d 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_master.php
@@ -139,7 +139,7 @@ if (isset ($BUILD_FAILED) ) {
echo "<p>Specifically, see <a href=\"buildlogs/$SPECIFIC_LOG\">the log with errors</a>, \n";
echo "or a <a href=\"$summaryFile[0]\">summary</a>. <br /> \n";
echo "Or see traditional <a href=\"testResults.php\">Compile Logs</a> (if any).\n";
- echo "See recent changes in the <a href="gitLog.php">git log</a>.</p>\n";
+ echo "See recent changes in the <a href=\"gitLog.php\">git log</a>.</p>\n";
}
}

Back to the top