Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
7d5e5b79
Commit
7d5e5b79
authored
Jul 26, 2026
by
System Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[etersoft] Cherry-pick
2e393ba0
parent
9b7ea718
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
2 deletions
+52
-2
Bugzilla.pm
contrib/Bugzilla.pm
+50
-0
timer.js
js/etersoft/timer.js
+0
-0
timersplash.html.tmpl
template/en/default/etersoft/timersplash.html.tmpl
+1
-1
timersplash.html.tmpl
template/ru/default/etersoft/timersplash.html.tmpl
+1
-1
No files found.
contrib/Bugzilla.pm
0 → 100644
View file @
7d5e5b79
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
package
Bugzilla
;
use
5.10.1
;
use
strict
;
use
warnings
;
#######################################################################
# The goal of this tiny module is to let Bugzilla packagers of #
# various Linux distributions easily specify the path to the Bugzilla #
# modules without having to edit each *.cgi script manually to fix #
# the | use lib qw(. lib) | line. #
# #
# If the real Bugzilla.pm module and the Bugzilla/ directory are in #
# the same directory as *.cgi scripts (which is the default), then #
# this module is useless and has no effect. #
# If the real Bugzilla.pm module and other Bugzilla/*.pm modules are #
# moved elsewhere, then the *.cgi scripts will call this module which #
# will give them the location of the Bugzilla modules. #
#######################################################################
# #
# IMPORTANT NOTE: This module must be in a place where Perl will find #
# it by default, e.g. in /usr/lib/perl5/vendor_perl/5.x.y/. #
# #
#######################################################################
# #
# Specify the path to the real Bugzilla.pm file in BZ_ROOT_DIR. #
# Some Linux distros may set it to '/usr/share/bugzilla/lib'. #
# #
# Specify the path to the Bugzilla lib/ directory in BZ_LIB_DIR. #
# If your Linux distro doesn't use it, make it point to BZ_ROOT_DIR. #
# #
#######################################################################
use
constant
BZ_ROOT_DIR
=>
'/var/www/bugs.etersoft.ru'
;
use
constant
BZ_LIB_DIR
=>
BZ_ROOT_DIR
.
'/lib'
;
#######################################################################
# DO NOT EDIT THE CODE BELOW, UNLESS YOU KNOW WHAT YOU ARE DOING!! #
#######################################################################
use
lib
(
BZ_ROOT_DIR
,
BZ_LIB_DIR
);
# Now load the real Bugzilla.pm file.
BEGIN
{
my
$bugzilla
=
BZ_ROOT_DIR
.
'/Bugzilla.pm'
;
require
$bugzilla
;
}
1
;
js/etersoft/timer.js
View file @
7d5e5b79
This diff is collapsed.
Click to expand it.
template/en/default/etersoft/timersplash.html.tmpl
View file @
7d5e5b79
...
...
@@ -46,4 +46,4 @@
<script language="javascript" type="text/javascript" src="js/etersoft/focusManager.js"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer_common.js?25_10_2017"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer.js?
11_09_2020__
"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer.js?
07_10_2020
"></script>
template/ru/default/etersoft/timersplash.html.tmpl
View file @
7d5e5b79
...
...
@@ -46,4 +46,4 @@
<script language="javascript" type="text/javascript" src="js/etersoft/focusManager.js"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer_common.js?25_10_2017"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer.js?
11_09_2020__
"></script>
<script language="javascript" type="text/javascript" src="js/etersoft/timer.js?
07_10_2020
"></script>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment