summaryrefslogtreecommitdiff
path: root/util/vndb.pl
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-10-07 11:03:59 +0200
committerYorhel <git@yorhel.nl>2009-10-07 11:22:37 +0200
commite0161bd219a3004a3affdecd04d54a85f5cf9e1d (patch)
tree1761fcb2d6c9f5b76dabef82083221e9147eeaca /util/vndb.pl
parentbafb8b134744cba74a3a019fefb36091b0e19d13 (diff)
JS: Moved script.js to data/ and added jsgen.pl to process it
While this 'processing' is currently limited to minifying the file if JavaScript::Minifier::XS is available, this change would make it a lot easier to make the strings in the JS code translatable.
Diffstat (limited to 'util/vndb.pl')
-rwxr-xr-xutil/vndb.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/util/vndb.pl b/util/vndb.pl
index ed74a92f..609d47a8 100755
--- a/util/vndb.pl
+++ b/util/vndb.pl
@@ -28,6 +28,10 @@ our(%O, %S);
$S{skins} = readskins();
+# automatically regenerate script.js when required and possible
+checkjs();
+
+
# load lang.dat
VNDB::L10N::loadfile();
@@ -113,3 +117,11 @@ sub readskins {
return \%skins;
}
+
+sub checkjs {
+ my $script = "$ROOT/static/f/script.js";
+ system "$ROOT/util/jsgen.pl" if
+ (!-e $script && -x "$ROOT/static/f")
+ || (-e $script && -w $script && [stat $script]->[9] < [stat "$ROOT/data/script.js"]->[9]);
+}
+