diff options
author | z411 | 2019-04-01 04:28:52 -0300 |
---|---|---|
committer | z411 | 2019-04-01 04:29:56 -0300 |
commit | ff6bf1b045fa810989a3efc78624123d3fc97f19 (patch) | |
tree | 13f949851ef0bc1d85b1fa5370c484002d5bdfdb /cgi/templates/board.html | |
parent | 85790a8a070a9bb4e024beef4fd49c842c7e07d8 (diff) | |
download | weabot-ff6bf1b045fa810989a3efc78624123d3fc97f19.tar.gz weabot-ff6bf1b045fa810989a3efc78624123d3fc97f19.tar.xz weabot-ff6bf1b045fa810989a3efc78624123d3fc97f19.zip |
Reimplementado oekaki en Python y otros cambios
- Portados algoritmos de guardado de imagen a Python e incorporados en weabot
- Ahora los dibujos temporales se guardan en el directorio del board (adiĆ³s oek_temp)
- (Temporal) Los dibujos no se borran si no que se guardan como .bak
- Arreglado bug donde se pierde el dibujo si hubo cualquier problema al subir
Diffstat (limited to 'cgi/templates/board.html')
-rw-r--r-- | cgi/templates/board.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/templates/board.html b/cgi/templates/board.html index 6ded4c5..09ed67d 100644 --- a/cgi/templates/board.html +++ b/cgi/templates/board.html @@ -31,7 +31,7 @@ <?py if oek_finish == "no": ?> <font size="+3">No hay dibujo</font> <?py else: ?> - <img src="#{boards_url}oek_temp/#{oek_finish}.png?ts=#{ts}" /> + <img src="#{images_url}#{board}/temp/#{oek_finish}.png?ts=#{ts}" /> <?py #endif ?> </td></tr></table></center> <?py #endif ?> |