1 | # -*- coding: utf-8 -*-
|
---|
2 | # $Id: wuivcshistory.py 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
3 |
|
---|
4 | """
|
---|
5 | Test Manager WUI - VCS history
|
---|
6 | """
|
---|
7 |
|
---|
8 | __copyright__ = \
|
---|
9 | """
|
---|
10 | Copyright (C) 2012-2024 Oracle and/or its affiliates.
|
---|
11 |
|
---|
12 | This file is part of VirtualBox base platform packages, as
|
---|
13 | available from https://www.virtualbox.org.
|
---|
14 |
|
---|
15 | This program is free software; you can redistribute it and/or
|
---|
16 | modify it under the terms of the GNU General Public License
|
---|
17 | as published by the Free Software Foundation, in version 3 of the
|
---|
18 | License.
|
---|
19 |
|
---|
20 | This program is distributed in the hope that it will be useful, but
|
---|
21 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
23 | General Public License for more details.
|
---|
24 |
|
---|
25 | You should have received a copy of the GNU General Public License
|
---|
26 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
27 |
|
---|
28 | The contents of this file may alternatively be used under the terms
|
---|
29 | of the Common Development and Distribution License Version 1.0
|
---|
30 | (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
31 | in the VirtualBox distribution, in which case the provisions of the
|
---|
32 | CDDL are applicable instead of those of the GPL.
|
---|
33 |
|
---|
34 | You may elect to license modified versions of this file under the
|
---|
35 | terms and conditions of either the GPL or the CDDL or both.
|
---|
36 |
|
---|
37 | SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
38 | """
|
---|
39 | __version__ = "$Revision: 106061 $"
|
---|
40 |
|
---|
41 | # Python imports.
|
---|
42 | #import datetime;
|
---|
43 |
|
---|
44 | # Validation Kit imports.
|
---|
45 | from testmanager import config;
|
---|
46 | from testmanager.core import db;
|
---|
47 | from testmanager.webui.wuicontentbase import WuiContentBase;
|
---|
48 | from common import webutils;
|
---|
49 |
|
---|
50 | class WuiVcsHistoryTooltip(WuiContentBase):
|
---|
51 | """
|
---|
52 | WUI VCS history tooltip generator.
|
---|
53 | """
|
---|
54 |
|
---|
55 | def __init__(self, aoEntries, sRepository, iRevision, cEntries, fnDPrint, oDisp):
|
---|
56 | """Override initialization"""
|
---|
57 | WuiContentBase.__init__(self, fnDPrint = fnDPrint, oDisp = oDisp);
|
---|
58 | self.aoEntries = aoEntries;
|
---|
59 | self.sRepository = sRepository;
|
---|
60 | self.iRevision = iRevision;
|
---|
61 | self.cEntries = cEntries;
|
---|
62 |
|
---|
63 |
|
---|
64 | def show(self):
|
---|
65 | """
|
---|
66 | Generates the tooltip.
|
---|
67 | Returns (sTitle, HTML).
|
---|
68 | """
|
---|
69 | sHtml = '<div class="tmvcstimeline tmvcstimelinetooltip">\n';
|
---|
70 |
|
---|
71 | oCurDate = None;
|
---|
72 | for oEntry in self.aoEntries:
|
---|
73 | oTsZulu = db.dbTimestampToZuluDatetime(oEntry.tsCreated);
|
---|
74 | if oCurDate is None or oCurDate != oTsZulu.date():
|
---|
75 | if oCurDate is not None:
|
---|
76 | sHtml += ' </dl>\n'
|
---|
77 | oCurDate = oTsZulu.date();
|
---|
78 | sHtml += ' <h2>%s:</h2>\n' \
|
---|
79 | ' <dl>\n' \
|
---|
80 | % (oTsZulu.strftime('%Y-%m-%d'),);
|
---|
81 |
|
---|
82 | sEntry = ' <dt id="r%s">' % (oEntry.iRevision, );
|
---|
83 | sEntry += '<a href="%s" target="_blank">' \
|
---|
84 | % ( webutils.escapeAttr(config.g_ksTracChangsetUrlFmt
|
---|
85 | % { 'iRevision': oEntry.iRevision, 'sRepository': oEntry.sRepository,}), );
|
---|
86 |
|
---|
87 | sEntry += '<span class="tmvcstimeline-time">%s</span>' % ( oTsZulu.strftime('%H:%MZ'), );
|
---|
88 | sEntry += ' Changeset <span class="tmvcstimeline-rev">[%s]</span>' % ( oEntry.iRevision, );
|
---|
89 | sEntry += ' by <span class="tmvcstimeline-author">%s</span>' % ( webutils.escapeElem(oEntry.sAuthor), );
|
---|
90 | sEntry += '</a>\n';
|
---|
91 | sEntry += '</dt>\n';
|
---|
92 | sEntry += ' <dd>%s</dd>\n' % ( webutils.escapeElem(oEntry.sMessage), );
|
---|
93 |
|
---|
94 | sHtml += sEntry;
|
---|
95 |
|
---|
96 | if oCurDate is not None:
|
---|
97 | sHtml += ' </dl>\n';
|
---|
98 | sHtml += '</div>\n';
|
---|
99 |
|
---|
100 | return ('VCS History Tooltip', sHtml);
|
---|
101 |
|
---|