Compare commits

..

No commits in common. "073448257af7d1a3057ffaa3c1ab149a6a713b02" and "c8f9e9c3917573bedaca4b8d4737f29f69689585" have entirely different histories.

4 changed files with 10 additions and 7 deletions

View File

@ -37,4 +37,3 @@ minor_release_name: "Soyeon"
notes:
- "[Feature] Made image upload part of regular API"
- "[Bugfix] Additional entity name sanitization"
- "[Bugfix] Fixed image display on Safari"

View File

@ -137,7 +137,7 @@ def print_info():
print(col['lightblue']("Configuration Directory:"),conf.dir_settings['config'])
print(col['lightblue']("Data Directory: "),conf.dir_settings['state'])
print(col['lightblue']("Log Directory: "),conf.dir_settings['logs'])
print(col['lightblue']("Network: "),f"Dual Stack, Port {conf.malojaconfig['port']}" if conf.malojaconfig['host'] == "*" else f"IPv{ip_address(conf.malojaconfig['host']).version}, Port {conf.malojaconfig['port']}")
print(col['lightblue']("Network: "),f"IPv{ip_address(conf.malojaconfig['host']).version}, Port {conf.malojaconfig['port']}")
print(col['lightblue']("Timezone: "),f"UTC{conf.malojaconfig['timezone']:+d}")
print()
print()

View File

@ -10,7 +10,8 @@
{% if pages > 1 %}
{% if page > 1 %}
<a href='{{ mlj_uri.create_uri("",filterkeys,limitkeys,delimitkeys,amountkeys,{'page':0}) }}'>
<span class='stat_selector'>1</span></a> |
<span class='stat_selector'>1</span>
</a> |
{% endif %}
{% if page > 2 %}
@ -19,7 +20,8 @@
{% if page > 0 %}
<a href='{{ mlj_uri.create_uri("",filterkeys,limitkeys,delimitkeys,amountkeys,{'page':page-1}) }}'>
<span class='stat_selector'>{{ page }}</span></a> «
<span class='stat_selector'>{{ page }}</span>
</a> «
{% endif %}
<span style='opacity:0.5;' class='stat_selector'>
@ -28,7 +30,8 @@
{% if page < pages-1 %}
» <a href='{{ mlj_uri.create_uri("",filterkeys,limitkeys,delimitkeys,amountkeys,{'page':page+1}) }}'>
<span class='stat_selector'>{{ page+2 }}</span></a>
<span class='stat_selector'>{{ page+2 }}</span>
</a>
{% endif %}
{% if page < pages-3 %}
@ -37,7 +40,8 @@
{% if page < pages-2 %}
| <a href='{{ mlj_uri.create_uri("",filterkeys,limitkeys,delimitkeys,amountkeys,{'page':pages-1}) }}'>
<span class='stat_selector'>{{ pages }}</span></a>
<span class='stat_selector'>{{ pages }}</span>
</a>
{% endif %}
{% endif %}

View File

@ -1,2 +1,2 @@
User-agent: *
Disallow: /
Disallow: *