Recent Updates
28 |September 2 2010
29 |
Updated to 0.7-SNAPSHOT, now works with Clojure 1.2 and has page templates.
31 |
January 11 2010
32 |
Updated to 0.5-SNAPSHOT, now works with Clojure 1.1 and does AOT compiling.
├── webjure ├── src │ ├── init.clj │ ├── test │ │ └── resources │ │ │ ├── message.cpt │ │ │ ├── repeat-binding.cpt │ │ │ ├── simple.cpt │ │ │ └── inbox.cpt │ ├── main │ │ └── resources │ │ │ ├── profiler │ │ │ ├── profiler.js │ │ │ ├── report.xml │ │ │ └── profiler.css │ │ │ └── crud │ │ │ ├── generic-listing-template.cpt │ │ │ └── crud-styles.cpt │ ├── webjure │ │ ├── servlet.clj │ │ ├── sql │ │ │ ├── crud │ │ │ │ └── editors.clj │ │ │ └── crud.clj │ │ ├── html.clj │ │ ├── sql.clj │ │ ├── xml │ │ │ └── feeds.clj │ │ ├── json.clj │ │ ├── csv.clj │ │ ├── profiler.clj │ │ ├── xml.clj │ │ └── cpt.clj │ └── webjure.clj ├── test │ └── webjure │ │ ├── html │ │ └── test.clj │ │ ├── cpt │ │ └── test.clj │ │ └── csv │ │ └── test.clj └── project.clj ├── demos ├── src │ └── main │ │ ├── resources │ │ ├── var.cpt │ │ ├── function.cpt │ │ ├── docs.cpt │ │ ├── page.cpt │ │ └── docs-pdf.cpt │ │ ├── webapp │ │ ├── resource │ │ │ ├── images │ │ │ │ ├── img01.gif │ │ │ │ ├── img02.gif │ │ │ │ ├── img03.gif │ │ │ │ ├── img04.gif │ │ │ │ └── spacer.gif │ │ │ ├── repl.js │ │ │ └── default.css │ │ └── WEB-INF │ │ │ └── web.xml │ │ └── clojure │ │ └── webjure │ │ ├── wiki.clj │ │ ├── demos.clj~ │ │ └── demos.clj └── pom.xml ├── .classpath ├── .gitignore ├── .project ├── LICENSE ├── pom.xml ├── README.markdown └── changes.txt /webjure/src/init.clj: -------------------------------------------------------------------------------- 1 | 2 | 3 | (require 'swank.swank) 4 | (swank.swank/start-repl 4005) -------------------------------------------------------------------------------- /demos/src/main/resources/var.cpt: -------------------------------------------------------------------------------- 1 |
September 2 2010
29 |
Updated to 0.7-SNAPSHOT, now works with Clojure 1.2 and has page templates.
January 11 2010
32 |
Updated to 0.5-SNAPSHOT, now works with Clojure 1.1 and does AOT compiling.
| 12 | $label 13 | | 14 |
|
19 | |
31 |
| 34 | 35 | < previous 36 | 37 | 38 | 39 | $(+ page 1) 41 | pagenum 43 | 44 | 45 | 46 | next > 47 | 48 | 49 | | 50 |