mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-01 10:56:22 -04:00
bundling required python dependencies, to make it easier on Tails users
This commit is contained in:
parent
18fd65acd7
commit
8ffa569094
224 changed files with 52588 additions and 0 deletions
1
lib/flask/testsuite/templates/_macro.html
Normal file
1
lib/flask/testsuite/templates/_macro.html
Normal file
|
@ -0,0 +1 @@
|
|||
{% macro hello(name) %}Hello {{ name }}!{% endmacro %}
|
1
lib/flask/testsuite/templates/context_template.html
Normal file
1
lib/flask/testsuite/templates/context_template.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>{{ value }}|{{ injected_value }}
|
6
lib/flask/testsuite/templates/escaping_template.html
Normal file
6
lib/flask/testsuite/templates/escaping_template.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{ text }}
|
||||
{{ html }}
|
||||
{% autoescape false %}{{ text }}
|
||||
{{ html }}{% endautoescape %}
|
||||
{% autoescape true %}{{ text }}
|
||||
{{ html }}{% endautoescape %}
|
1
lib/flask/testsuite/templates/mail.txt
Normal file
1
lib/flask/testsuite/templates/mail.txt
Normal file
|
@ -0,0 +1 @@
|
|||
{{ foo}} Mail
|
1
lib/flask/testsuite/templates/nested/nested.txt
Normal file
1
lib/flask/testsuite/templates/nested/nested.txt
Normal file
|
@ -0,0 +1 @@
|
|||
I'm nested
|
1
lib/flask/testsuite/templates/simple_template.html
Normal file
1
lib/flask/testsuite/templates/simple_template.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>{{ whiskey }}</h1>
|
1
lib/flask/testsuite/templates/template_filter.html
Normal file
1
lib/flask/testsuite/templates/template_filter.html
Normal file
|
@ -0,0 +1 @@
|
|||
{{ value|super_reverse }}
|
3
lib/flask/testsuite/templates/template_test.html
Normal file
3
lib/flask/testsuite/templates/template_test.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
{% if value is boolean %}
|
||||
Success!
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue