Archived
1
0

Revert "switch to typescript"

This reverts commit de5883d0a0.
This commit is contained in:
Jeff Becker 2016-10-18 10:30:32 -04:00
parent 4b1da71030
commit e080e939dd
5 changed files with 22 additions and 9 deletions

View File

@ -85,7 +85,7 @@ done
if [ "$neochan" == "yes" ] ; then if [ "$neochan" == "yes" ] ; then
set +e set +e
for exe in lessc tsc ; do for exe in lessc coffee ; do
which $exe &> /dev/null which $exe &> /dev/null
if [ "$?" != "0" ] ; then if [ "$?" != "0" ] ; then
echo "$exe not installed"; echo "$exe not installed";
@ -98,10 +98,10 @@ if [ "$neochan" == "yes" ] ; then
echo echo
initfile "$neochan_js_outfile" initfile "$neochan_js_outfile"
for f in ./contrib/js/neochan/*.coffee ; do
echo "compile typescript" echo "compile $f"
tsc ./contrib/js/neochan/*.ts coffee -cs < "$f" > "$f.js"
done
for f in ./contrib/js/neochan/*.js ; do for f in ./contrib/js/neochan/*.js ; do
mini "$f" "$neochan_js_outfile" mini "$f" "$neochan_js_outfile"
done done

View File

@ -1 +1 @@
*.js *.coffee.js

View File

@ -0,0 +1,5 @@
// Generated by CoffeeScript 1.11.1
(function() {
}).call(this);

View File

@ -8,9 +8,9 @@
- files ( bool, do we allow attachments ? ) - files ( bool, do we allow attachments ? )
- csrf ( csrf token ) - csrf ( csrf token )
}} }}
<form action="{{post_url}}" enctype="multipart/form-data" name="post" method="post" id="neochan_postform" > <form action="{{post_url}}" enctype="multipart/form-data" name="post" method="post">
{{{csrf}}} {{{csrf}}}
<input type="hidden" name="reference" value="{{reference}}" id="postform_reference" /> <input type="hidden" name="reference" value="{{reference}}" id="postform_reference"/>
<div id="postform-outer"> <div id="postform-outer">
<div id="postform-inner"> <div id="postform-inner">
<table class="postform"> <table class="postform">
@ -32,7 +32,7 @@
</th> </th>
<td> <td>
<input type="text" name="subject" value="" id="postform_subject" /> <input type="text" name="subject" value="" id="postform_subject" />
<button value="{{button}}" class="button" id="postform_submit" onclick="neochan_submit_post()" /> <input type="submit" value="{{button}}" class="button" id="postform_submit" />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -77,6 +77,14 @@
<input type="text" name="captcha" autocomplete="off" id="captcha_solution" /> <input type="text" name="captcha" autocomplete="off" id="captcha_solution" />
</td> </td>
</tr> </tr>
<!-- <tr>
<th>
{{#i18n.Translations}}{{cuckoo_pow}}{{/i18n.Translations}}
</th>
<td>
<input type="text" name="pow" autocomplete="off" id="miner_result" /><input id="start_miner" class="button" type="button" value="{{#i18n.Translations}}{{start_mining}}{{/i18n.Translations}}"/>
</td>
</tr> -->
</tbody> </tbody>
</table> </table>
</div> </div>