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 : attachment.html
{# Copyright (C) 2006-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/. #} # extends 'layout.html' <!DOCTYPE html> <html> # set parent = attachments.parent if attachments else attachment.resource.parent <head> <title> # block title # if mode == 'new': ${_("%(parent)s – Attachment", parent=name_of(parent))} # elif mode == 'list': ${_("%(parent)s – Attachments", parent=name_of(parent))} # else: # trans filename = attachment.filename, parent = name_of(parent) ${filename} on ${parent} – Attachment # endtrans # endif ${ super() } # endblock title </title> # block head ${ super() } # if preview: <script> jQuery(function($) { $('#preview table.code').enableCollapsibleColumns( $('#preview table.code thead th.content')); }); </script> # endif # endblock head </head> <body> # block content <div id="content" class="attachment"> # if mode == 'new': <h1>${tag_("Add Attachment to %(parent)s", parent=tag.a(name_of(parent), href=url_of(parent)))}</h1> <form id="attachment" class="mod" method="post" enctype="multipart/form-data" action="#"> ${jmacros.form_token_input()} <div class="field"> <label>File{% if max_size is greaterthanorequal 0 %} ${_("(size limit %(value)s)", value=pretty_size(max_size))}{% endif %}:<br /> <input type="file" name="attachment" class="trac-disable-determinant" /> </label> </div> <fieldset id="changeinfo"> <legend>${_("Attachment Info")}</legend> # if authname == 'anonymous': <div class="field"> <label>${_("Your email or username:")}<br /> <input type="text" name="author" class="trac-fullwidth" value="${attachment.author or author}" /> </label> # set preferences <a href="${href.prefs()}" class="trac-target-new">${ _("Preferences")}</a> # endset # if author == 'anonymous': <p class="hint"> # trans preferences E-mail address and name can be saved in the ${preferences}. # endtrans </p> # endif </div> # endif <div class="field"> <label>${_("Description of the file (optional):")}<br /> <input type="text" class="trac-fullwidth wikitext" name="description" value="${attachment.description}" /> </label> </div> # if authname and authname != 'anonymous': <div class="options"> <label> <input type="checkbox" name="replace"${ {'checked': is_replace}|htmlattr}/> ${_("Replace existing attachment of the same name")} </label> </div> # endif </fieldset> <div class="buttons"> <input type="hidden" name="action" value="new" /> <input type="hidden" name="realm" value="${parent.realm}" /> <input type="hidden" name="id" value="${parent.id}" /> <input type="submit" class="trac-disable trac-disable-on-submit" value="${_('Add attachment')}" /> <input type="submit" name="cancel" value="${_('Cancel')}" /> </div> </form> # elif mode == 'delete': <h1><a href="${url_of(parent)}">${name_of(parent)}</a>: ${attachment.filename}</h1> <p> <strong> ${_("Are you sure you want to delete this attachment?")} </strong> <br /> ${_("This is an irreversible operation.")} </p> <div class="buttons"> <form method="post" action="#"> ${jmacros.form_token_input()} <div id="delete"> <input type="hidden" name="action" value="delete" /> <input type="submit" class="trac-disable-on-submit" value="${_('Delete attachment')}" /> <input type="submit" name="cancel" value="${_('Cancel')}" /> </div> </form> </div> # elif mode == 'list': <h1><a href="${url_of(parent)}">${name_of(parent)}</a></h1> # with # set context = context.child(parent) # set alist = attachments # include 'list_of_attachments.html' # endwith # else: ## 'render' mode <h1><a href="${url_of(parent)}">${name_of(parent)}</a>: ${attachment.filename}</h1> <table id="info"> <tr> <th scope="col"> # with # set file = attachment.filename # set size <span title="${ngettext('%(num)d byte', '%(num)d bytes', num=attachment.size)}">${ pretty_size(attachment.size)}</span> # endset # set author = authorinfo(attachment.author) # set pdate = pretty_dateinfo(attachment.date) # trans file, size, author, pdate File ${file}, ${size} (added by ${author}, ${pdate}) # endtrans # endwith </th> </tr> <tr> <td class="message searchable"> ${wiki_to_html(context.child(parent), attachment.description)} </td> </tr> </table> # if preview: <div id="preview" class="searchable"> # include 'preview_file.html' </div> # endif # if attachment and 'ATTACHMENT_DELETE' in perm(attachment.resource): <div class="buttons"> <form method="get" action="#"> <div id="delete"> {# jinjacheck: "ID delete already defined" OK #} <input type="hidden" name="action" value="delete" /> <input type="submit" value="${_('Delete attachment')}" /> </div> </form> </div> # endif # endif </div> ${ super() } # endblock content </body> </html>
Close