You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2013/10/20 20:25:48 UTC

svn commit: r1533939 - in /wicket/common/site/trunk/_site/guide/guide/scripts: ./ _Events.groovy

Author: adelbene
Date: Sun Oct 20 18:25:47 2013
New Revision: 1533939

URL: http://svn.apache.org/r1533939
Log:
Added event handler script for document generation

Added:
    wicket/common/site/trunk/_site/guide/guide/scripts/
    wicket/common/site/trunk/_site/guide/guide/scripts/_Events.groovy

Added: wicket/common/site/trunk/_site/guide/guide/scripts/_Events.groovy
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/scripts/_Events.groovy?rev=1533939&view=auto
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/scripts/_Events.groovy (added)
+++ wicket/common/site/trunk/_site/guide/guide/scripts/_Events.groovy Sun Oct 20 18:25:47 2013
@@ -0,0 +1,10 @@
+eventDocStart = { kind ->
+   println "Started $kind"
+}
+
+eventDocEnd = { kind ->
+   println "Completed $kind"
+   /*new File("../img").eachFile() { file -> 
+      println file.getName()
+   }*/
+}