This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |