a5e08f7bcc
I installed the rails_xss plugin, for the main purpose of seeing what will break with Rails 3.0 (where the behaviour of the plugin is the default). I think I've fixed everything, but let me know if you see stuff that is HTML-escaped, which shouldn't be. As a side benefit, we now use Erubis, rather than ERB, to render templates. They tell me it's faster ...
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
all = example.rb example.php example.c example.java example.scm example.pl example.js
|
|
|
|
all: $(all)
|
|
|
|
example.rb: example.eruby
|
|
erubis -l ruby example.eruby > example.rb
|
|
|
|
|
|
example.php: example.ephp
|
|
erubis -l php example.ephp > example.php
|
|
|
|
example.c: example.ec
|
|
erubis -bl c example.ec > example.c
|
|
|
|
example.java: example.ejava
|
|
erubis -bl java example.ejava > example.java
|
|
|
|
example.scm: example.escheme
|
|
erubis -l scheme --func=display example.escheme > example.scm
|
|
# erubis -l scheme example.escheme > example.scm
|
|
|
|
example.pl: example.eperl
|
|
erubis -l perl example.eperl > example.pl
|
|
|
|
example.js: example.ejs
|
|
erubis -l javascript example.ejs > example.js
|
|
|
|
|
|
###----------
|
|
|
|
src = example.eruby example.ephp example.ec example.ejava example.escheme example.eperl example.ejs Makefile
|
|
|
|
clean:
|
|
rm -f `ruby -e 'puts(Dir.glob("*.*") - %w[$(src)])'`
|
|
# rm -f $(all)
|
|
|
|
compile: example.bin example.class
|
|
|
|
example.bin: example.c
|
|
cc -o example.bin example.c
|
|
|
|
example.class: example.java
|
|
jikes example.java
|
|
|
|
output: $(all) example.bin example.class
|
|
erubis example.eruby > example.ruby.out
|
|
php example.php > example.php.out
|
|
./example.bin '<aaa>' 'b&b' '"ccc"' > example.c.out
|
|
java example > example.javexample.bin
|
|
gosh example.scm > example.scm.out
|
|
# guile example.scm > example.scm.out
|
|
perl example.pl > example.pl.out
|
|
|