├── .gitignore ├── .gradle └── 1.0-milestone-3 │ └── taskArtifacts │ ├── cache.bin │ └── cache.properties ├── README ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sample.iml └── src ├── DSLD_meta_script.dsld ├── functionalTest └── groovy │ ├── GebConfig.groovy │ └── SmokeSpec.groovy ├── gaelyk.dsld ├── gaelyk.gdsl ├── main ├── bloogaey.iml ├── groovy │ └── bloogy │ │ └── Utilities.groovy └── webapp │ ├── WEB-INF │ ├── appengine-web.xml │ ├── groovy │ │ ├── __testMailParsing2__.groovy │ │ ├── __testMailParsing__.groovy │ │ ├── admin │ │ │ ├── adminCategories.groovy │ │ │ ├── adminMedia.groovy │ │ │ ├── adminPosts.groovy │ │ │ ├── categoryAdd.groovy │ │ │ ├── categoryDelete.groovy │ │ │ ├── clearCache.groovy │ │ │ ├── email.groovy │ │ │ ├── mediaAdd.groovy │ │ │ ├── mediaDelete.groovy │ │ │ ├── mediaSelector.groovy │ │ │ ├── postDelete.groovy │ │ │ ├── postSave.groovy │ │ │ └── titleExists.groovy │ │ ├── archive.groovy │ │ ├── article.groovy │ │ ├── category.groovy │ │ ├── error.groovy │ │ ├── feed.groovy │ │ ├── home.groovy │ │ ├── media.groovy │ │ ├── search.groovy │ │ ├── social.groovy │ │ └── viewRawEmail.groovy │ ├── includes │ │ ├── bottom.gtpl │ │ ├── footer.gtpl │ │ ├── header.gtpl │ │ ├── left.gtpl │ │ ├── meta.gtpl │ │ ├── navigation.gtpl │ │ └── syntaxHighlighting.gtpl │ ├── lib │ │ ├── antlr-2.7.7.jar │ │ ├── appengine-api-1.0-sdk-1.8.0.jar │ │ ├── appengine-api-labs-1.8.0.jar │ │ ├── asm-4.0.jar │ │ ├── asm-analysis-4.0.jar │ │ ├── asm-commons-4.0.jar │ │ ├── asm-tree-4.0.jar │ │ ├── asm-util-4.0.jar │ │ ├── gaelyk-2.0.jar │ │ ├── groovy-2.1.3.jar │ │ ├── groovy-all-2.1.3.jar │ │ ├── groovy-json-2.1.3.jar │ │ ├── groovy-servlet-2.1.3.jar │ │ ├── groovy-templates-2.1.3.jar │ │ ├── groovy-xml-2.1.3.jar │ │ ├── ocpsoft-pretty-time-1.0.7.jar │ │ └── servlet-api-2.5.jar │ ├── logging.properties │ ├── pages │ │ ├── admin │ │ │ ├── adminCategories.gtpl │ │ │ ├── adminMedia.gtpl │ │ │ ├── adminPosts.gtpl │ │ │ └── postEdit.gtpl │ │ ├── archive.gtpl │ │ ├── article.gtpl │ │ ├── error.gtpl │ │ ├── home.gtpl │ │ ├── notAllowed.gtpl │ │ ├── notFound.gtpl │ │ ├── search.gtpl │ │ └── social.gtpl │ ├── routes.groovy │ └── web.xml │ ├── css │ ├── chosen.css │ ├── google-search.css │ ├── idea.css │ ├── jquery.cleditor.css │ ├── stabs.css │ ├── style.css │ └── wysiwyg.css │ ├── images │ ├── add.png │ ├── atom.gif │ ├── box.gif │ ├── buttons.gif │ ├── chosen-sprite.png │ ├── clipboard.png │ ├── content-two-columns.gif │ ├── content-wrapper.gif │ ├── cross.png │ ├── feed.png │ ├── footer-wrapper.gif │ ├── gaelyk-favicon.png │ ├── gradient-light.gif │ ├── header-wrapper-2.gif │ ├── header.gif │ ├── help.gif │ ├── icon-delicious.png │ ├── icon-gplus.png │ ├── icon-greader.png │ ├── icon-twitter.png │ ├── image-not-found.png │ ├── images.png │ ├── images2.png │ ├── navigation-arrow-2.gif │ ├── navigation-arrow.gif │ ├── navigation-wrapper-2.gif │ ├── navigation.gif │ ├── newspaper.png │ ├── page_white_text.png │ ├── pencil.png │ ├── sample-gravatar.jpg │ ├── separator-vertical.gif │ ├── subnav-wrapper-2.gif │ ├── subnav-wrapper.gif │ ├── toolbar.gif │ └── transparent.png │ ├── js │ ├── chosen.jquery.min.js │ ├── highlight.js │ ├── highlight.pack.js │ ├── jquery-1.6.2.min.js │ ├── jquery.cleditor.js │ ├── jquery.sTabs.min.js │ ├── languages │ │ ├── css.js │ │ ├── diff.js │ │ ├── go.js │ │ ├── groovy.js │ │ ├── haskell.js │ │ ├── ini.js │ │ ├── java.js │ │ ├── javascript.js │ │ ├── lisp.js │ │ ├── objectivec.js │ │ ├── perl.js │ │ ├── php.js │ │ ├── python.js │ │ ├── ruby.js │ │ ├── scala.js │ │ ├── smalltalk.js │ │ ├── sql.js │ │ ├── vbscript.js │ │ └── xml.js │ ├── mediaChoserPlugin.js │ └── postEdit.js │ ├── msg.txt │ ├── robots.txt │ └── sitemap.xml └── test └── groovy ├── RegisterSpec.groovy └── RoutesSpec.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/1.0-milestone-3/taskArtifacts/cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/.gradle/1.0-milestone-3/taskArtifacts/cache.bin -------------------------------------------------------------------------------- /.gradle/1.0-milestone-3/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Jul 28 16:50:19 CEST 2011 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/README -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/gradlew.bat -------------------------------------------------------------------------------- /sample.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/sample.iml -------------------------------------------------------------------------------- /src/DSLD_meta_script.dsld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/DSLD_meta_script.dsld -------------------------------------------------------------------------------- /src/functionalTest/groovy/GebConfig.groovy: -------------------------------------------------------------------------------- 1 | baseUrl = 'http://localhost:8080/' 2 | -------------------------------------------------------------------------------- /src/functionalTest/groovy/SmokeSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/functionalTest/groovy/SmokeSpec.groovy -------------------------------------------------------------------------------- /src/gaelyk.dsld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/gaelyk.dsld -------------------------------------------------------------------------------- /src/gaelyk.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/gaelyk.gdsl -------------------------------------------------------------------------------- /src/main/bloogaey.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/bloogaey.iml -------------------------------------------------------------------------------- /src/main/groovy/bloogy/Utilities.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/groovy/bloogy/Utilities.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/appengine-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/appengine-web.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/__testMailParsing2__.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/__testMailParsing2__.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/__testMailParsing__.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/__testMailParsing__.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/adminCategories.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/adminCategories.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/adminMedia.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/adminMedia.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/adminPosts.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/adminPosts.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/categoryAdd.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/categoryAdd.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/categoryDelete.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/categoryDelete.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/clearCache.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/clearCache.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/email.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/email.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/mediaAdd.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/mediaAdd.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/mediaDelete.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/mediaDelete.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/mediaSelector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/mediaSelector.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/postDelete.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/postDelete.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/postSave.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/postSave.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/admin/titleExists.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/admin/titleExists.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/archive.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/archive.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/article.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/article.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/category.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/category.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/error.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/error.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/feed.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/feed.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/home.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/home.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/media.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/media.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/search.groovy: -------------------------------------------------------------------------------- 1 | forward '/WEB-INF/pages/search.gtpl' -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/social.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/social.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/groovy/viewRawEmail.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/groovy/viewRawEmail.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/bottom.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/bottom.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/footer.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/footer.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/header.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/header.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/left.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/left.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/meta.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/meta.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/navigation.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/navigation.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/includes/syntaxHighlighting.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/includes/syntaxHighlighting.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/antlr-2.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/antlr-2.7.7.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/appengine-api-1.0-sdk-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/appengine-api-1.0-sdk-1.8.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/appengine-api-labs-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/appengine-api-labs-1.8.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/asm-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/asm-4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/asm-analysis-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/asm-analysis-4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/asm-commons-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/asm-commons-4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/asm-tree-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/asm-tree-4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/asm-util-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/asm-util-4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/gaelyk-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/gaelyk-2.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-all-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-all-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-json-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-json-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-servlet-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-servlet-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-templates-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-templates-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/groovy-xml-2.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/groovy-xml-2.1.3.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/ocpsoft-pretty-time-1.0.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/ocpsoft-pretty-time-1.0.7.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/logging.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/admin/adminCategories.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/admin/adminCategories.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/admin/adminMedia.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/admin/adminMedia.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/admin/adminPosts.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/admin/adminPosts.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/admin/postEdit.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/admin/postEdit.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/archive.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/archive.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/article.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/article.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/error.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/error.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/home.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/home.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/notAllowed.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/notAllowed.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/notFound.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/notFound.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/search.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/search.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/pages/social.gtpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/pages/social.gtpl -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/routes.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/routes.groovy -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/css/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/chosen.css -------------------------------------------------------------------------------- /src/main/webapp/css/google-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/google-search.css -------------------------------------------------------------------------------- /src/main/webapp/css/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/idea.css -------------------------------------------------------------------------------- /src/main/webapp/css/jquery.cleditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/jquery.cleditor.css -------------------------------------------------------------------------------- /src/main/webapp/css/stabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/stabs.css -------------------------------------------------------------------------------- /src/main/webapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/style.css -------------------------------------------------------------------------------- /src/main/webapp/css/wysiwyg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/css/wysiwyg.css -------------------------------------------------------------------------------- /src/main/webapp/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/add.png -------------------------------------------------------------------------------- /src/main/webapp/images/atom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/atom.gif -------------------------------------------------------------------------------- /src/main/webapp/images/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/box.gif -------------------------------------------------------------------------------- /src/main/webapp/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/buttons.gif -------------------------------------------------------------------------------- /src/main/webapp/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/chosen-sprite.png -------------------------------------------------------------------------------- /src/main/webapp/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/clipboard.png -------------------------------------------------------------------------------- /src/main/webapp/images/content-two-columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/content-two-columns.gif -------------------------------------------------------------------------------- /src/main/webapp/images/content-wrapper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/content-wrapper.gif -------------------------------------------------------------------------------- /src/main/webapp/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/cross.png -------------------------------------------------------------------------------- /src/main/webapp/images/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/feed.png -------------------------------------------------------------------------------- /src/main/webapp/images/footer-wrapper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/footer-wrapper.gif -------------------------------------------------------------------------------- /src/main/webapp/images/gaelyk-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/gaelyk-favicon.png -------------------------------------------------------------------------------- /src/main/webapp/images/gradient-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/gradient-light.gif -------------------------------------------------------------------------------- /src/main/webapp/images/header-wrapper-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/header-wrapper-2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/header.gif -------------------------------------------------------------------------------- /src/main/webapp/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/help.gif -------------------------------------------------------------------------------- /src/main/webapp/images/icon-delicious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/icon-delicious.png -------------------------------------------------------------------------------- /src/main/webapp/images/icon-gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/icon-gplus.png -------------------------------------------------------------------------------- /src/main/webapp/images/icon-greader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/icon-greader.png -------------------------------------------------------------------------------- /src/main/webapp/images/icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/icon-twitter.png -------------------------------------------------------------------------------- /src/main/webapp/images/image-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/image-not-found.png -------------------------------------------------------------------------------- /src/main/webapp/images/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/images.png -------------------------------------------------------------------------------- /src/main/webapp/images/images2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/images2.png -------------------------------------------------------------------------------- /src/main/webapp/images/navigation-arrow-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/navigation-arrow-2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/navigation-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/navigation-arrow.gif -------------------------------------------------------------------------------- /src/main/webapp/images/navigation-wrapper-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/navigation-wrapper-2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/navigation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/navigation.gif -------------------------------------------------------------------------------- /src/main/webapp/images/newspaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/newspaper.png -------------------------------------------------------------------------------- /src/main/webapp/images/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/page_white_text.png -------------------------------------------------------------------------------- /src/main/webapp/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/pencil.png -------------------------------------------------------------------------------- /src/main/webapp/images/sample-gravatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/sample-gravatar.jpg -------------------------------------------------------------------------------- /src/main/webapp/images/separator-vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/separator-vertical.gif -------------------------------------------------------------------------------- /src/main/webapp/images/subnav-wrapper-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/subnav-wrapper-2.gif -------------------------------------------------------------------------------- /src/main/webapp/images/subnav-wrapper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/subnav-wrapper.gif -------------------------------------------------------------------------------- /src/main/webapp/images/toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/toolbar.gif -------------------------------------------------------------------------------- /src/main/webapp/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/images/transparent.png -------------------------------------------------------------------------------- /src/main/webapp/js/chosen.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/chosen.jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/highlight.js -------------------------------------------------------------------------------- /src/main/webapp/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/highlight.pack.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery.cleditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/jquery.cleditor.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery.sTabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/jquery.sTabs.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/css.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/diff.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/go.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/groovy.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/haskell.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/ini.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/java.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/javascript.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/lisp.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/objectivec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/objectivec.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/perl.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/php.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/python.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/ruby.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/scala.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/smalltalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/smalltalk.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/sql.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/vbscript.js -------------------------------------------------------------------------------- /src/main/webapp/js/languages/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/languages/xml.js -------------------------------------------------------------------------------- /src/main/webapp/js/mediaChoserPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/mediaChoserPlugin.js -------------------------------------------------------------------------------- /src/main/webapp/js/postEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/js/postEdit.js -------------------------------------------------------------------------------- /src/main/webapp/msg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/msg.txt -------------------------------------------------------------------------------- /src/main/webapp/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/robots.txt -------------------------------------------------------------------------------- /src/main/webapp/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/main/webapp/sitemap.xml -------------------------------------------------------------------------------- /src/test/groovy/RegisterSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/test/groovy/RegisterSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/RoutesSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glaforge/bloogaey/HEAD/src/test/groovy/RoutesSpec.groovy --------------------------------------------------------------------------------