Skip to content

Instantly share code, notes, and snippets.

@Daan-
Daan- / catalina.out
Created May 9, 2012 17:38
Catalina.out from storing Balsamiq mockup in XWiki
2012-05-09 19:32:51,194 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG o.a.s.u.ModuleUtils - Get module name for path /bin
2012-05-09 19:32:51,200 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG o.a.s.u.ModuleUtils - Module name found: default
2012-05-09 19:32:51,200 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG o.a.s.a.RequestProcessor - Processing a 'POST' for path '/mockup/'
2012-05-09 19:32:51,200 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG o.a.s.a.RequestProcessor - Looking for Action instance for class com.balsamiq.xwiki.plugins.mockups.struts.MockupAction
2012-05-09 19:32:51,205 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG c.x.x.s.XWikiCacheStore - Cache: begin for doc xwiki:XWiki.XWikiPreferences in cache
2012-05-09 19:32:51,205 [http://localhost:8080/xwiki/bin/mockup/Sandbox/TestPage2] DEBUG c.x.x.s.XWikiCacheStore - Cache: Trying to get doc xwiki:XWiki.
# Additional translations at http://github.com/plataformatec/devise/wiki/I18n
nl:
errors:
messages:
expired: "is verlopen, vraag een nieuwe aan"
not_found: "niet gevonden"
already_confirmed: "is reeds bevestigd"
not_locked: "is niet gesloten"
not_saved:
# app/models/my_model.rb
module MyApp
module Model
def self.included(base)
base.send :include, Mongoid::Document
base.send :include, Mongoid::Timestamps
base.send :include, ActiveAdmin::Mongoid::Patches
end
end