VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/webui/wuivcshistory.py@ 90802

Last change on this file since 90802 was 83432, checked in by vboxsync, 5 years ago

TestManager/vcshistory: Open links in new tab rather than inside the tooltip windows (which was certifiable stupid).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: wuivcshistory.py 83432 2020-03-25 20:19:30Z vboxsync $
3
4"""
5Test Manager WUI - VCS history
6"""
7
8__copyright__ = \
9"""
10Copyright (C) 2012-2020 Oracle Corporation
11
12This file is part of VirtualBox Open Source Edition (OSE), as
13available from http://www.virtualbox.org. This file is free software;
14you can redistribute it and/or modify it under the terms of the GNU
15General Public License (GPL) as published by the Free Software
16Foundation, in version 2 as it comes in the "COPYING" file of the
17VirtualBox OSE distribution. VirtualBox OSE is distributed in the
18hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19
20The contents of this file may alternatively be used under the terms
21of the Common Development and Distribution License Version 1.0
22(CDDL) only, as it comes in the "COPYING.CDDL" file of the
23VirtualBox OSE distribution, in which case the provisions of the
24CDDL are applicable instead of those of the GPL.
25
26You may elect to license modified versions of this file under the
27terms and conditions of either the GPL or the CDDL or both.
28"""
29__version__ = "$Revision: 83432 $"
30
31# Python imports.
32#import datetime;
33
34# Validation Kit imports.
35from testmanager import config;
36from testmanager.core import db;
37from testmanager.webui.wuicontentbase import WuiContentBase;
38from common import webutils;
39
40class WuiVcsHistoryTooltip(WuiContentBase):
41 """
42 WUI VCS history tooltip generator.
43 """
44
45 def __init__(self, aoEntries, sRepository, iRevision, cEntries, fnDPrint, oDisp):
46 """Override initialization"""
47 WuiContentBase.__init__(self, fnDPrint = fnDPrint, oDisp = oDisp);
48 self.aoEntries = aoEntries;
49 self.sRepository = sRepository;
50 self.iRevision = iRevision;
51 self.cEntries = cEntries;
52
53
54 def show(self):
55 """
56 Generates the tooltip.
57 Returns (sTitle, HTML).
58 """
59 sHtml = '<div class="tmvcstimeline tmvcstimelinetooltip">\n';
60
61 oCurDate = None;
62 for oEntry in self.aoEntries:
63 oTsZulu = db.dbTimestampToZuluDatetime(oEntry.tsCreated);
64 if oCurDate is None or oCurDate != oTsZulu.date():
65 if oCurDate is not None:
66 sHtml += ' </dl>\n'
67 oCurDate = oTsZulu.date();
68 sHtml += ' <h2>%s:</h2>\n' \
69 ' <dl>\n' \
70 % (oTsZulu.strftime('%Y-%m-%d'),);
71
72 sEntry = ' <dt id="r%s">' % (oEntry.iRevision, );
73 sEntry += '<a href="%s" target="_blank">' \
74 % ( webutils.escapeAttr(config.g_ksTracChangsetUrlFmt
75 % { 'iRevision': oEntry.iRevision, 'sRepository': oEntry.sRepository,}), );
76
77 sEntry += '<span class="tmvcstimeline-time">%s</span>' % ( oTsZulu.strftime('%H:%MZ'), );
78 sEntry += ' Changeset <span class="tmvcstimeline-rev">[%s]</span>' % ( oEntry.iRevision, );
79 sEntry += ' by <span class="tmvcstimeline-author">%s</span>' % ( webutils.escapeElem(oEntry.sAuthor), );
80 sEntry += '</a>\n';
81 sEntry += '</dt>\n';
82 sEntry += ' <dd>%s</dd>\n' % ( webutils.escapeElem(oEntry.sMessage), );
83
84 sHtml += sEntry;
85
86 if oCurDate is not None:
87 sHtml += ' </dl>\n';
88 sHtml += '</div>\n';
89
90 return ('VCS History Tooltip', sHtml);
91
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette