Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
trac /
templates /
[ HOME SHELL ]
Name
Size
Permission
Action
about.html
2.42
KB
-rw-r--r--
attach_file_form.html
1006
B
-rw-r--r--
attachment.html
6.4
KB
-rw-r--r--
author_or_creator.rss
442
B
-rw-r--r--
diff_div.html
12.13
KB
-rw-r--r--
diff_options.html
2.48
KB
-rw-r--r--
diff_view.html
4.32
KB
-rw-r--r--
environment_info.html
4.17
KB
-rw-r--r--
error.html
10.93
KB
-rw-r--r--
history_view.html
3.67
KB
-rw-r--r--
index.html
958
B
-rw-r--r--
layout.html
5.35
KB
-rw-r--r--
list_of_attachments.html
3.17
KB
-rw-r--r--
macros.html
2.57
KB
-rw-r--r--
page_index.html
1.33
KB
-rw-r--r--
preview_file.html
1.2
KB
-rw-r--r--
progress_bar.html
2.37
KB
-rw-r--r--
progress_bar_grouped.html
1.59
KB
-rw-r--r--
theme.html
5.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : progress_bar.html
{# Copyright (C) 2010-2021 Edgewall Software This software is licensed as described in the file COPYING, which you should have received as part of this distribution. The terms are also available at https://trac.edgewall.org/wiki/TracLicense. This software consists of voluntary contributions made by many individuals. For the exact contribution history, see the revision history and logs, available at https://trac.edgewall.org/. #} ## Display groups of tickets in a progress bar. {# Arguments: - stats: an instance of trac.ticket.roadmap.TicketGroupStats - interval_hrefs: link associated to each interval in stats.intervals - percent=None: show that value as percentage, instead of stats.done_percent - legend=True: show a legend of label and count for each interval - style=None: explicit styling for the table.progress - stats_href=None: link associated to the total #} # with # set percent = none if percent is undefined else percent # set legend = true if legend is undefined else legend # set style = none if style is undefined else style # set stats_href = none if stats_href is undefined else stats_href <table class="progress"${{'style': style}|htmlattr}> <tr> # for interval in stats.intervals: <td${{'class': interval.css_class, 'style': 'width: %d%%' % interval.percent if interval.percent is greaterthan 0 else 'display: none' }|htmlattr}> <a${{'href': interval_hrefs[loop.index0] if interval_hrefs, 'title': _('%(count)s/%(total)s %(title)s', count=interval.count, total=stats.count, title=interval.title) }|htmlattr}></a> </td> # endfor </tr> </table> <p class="percent">${ '%d%%' % stats.done_percent if percent is none else percent}</p> # if legend: <p class="legend"> <span class="first interval"> <a href="${stats_href}">${_("Total number of %(unit)s: %(count)s", unit=stats.unit, count=stats.count)}</a> </span> # for interval in stats.intervals: <span class="interval"> - <a${{'href': interval_hrefs[loop.index0] if interval_hrefs }|htmlattr}>${_("%(title)s: %(count)s", title=interval.title, count=interval.count)}</a> </span> # endfor </p> # endif # endwith
Close