This quickstart demonstrates the use of a number of HTML5, CSS3 and JavaScript techniques. The registration form uses client side validation based on the constraints also defined on the model class as well as new input attributes like placeholder and autofocus. The member table is populated using RESTful get calls, client side templating and CSS3 styling.
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
[WARNING] Invalid gemspec in [/scratch/hudson/workspace/torquebox-2x-abstractj/label/m1.large/ruby_compat_version/1.8/integration-tests/target/integ-dist/jruby/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Yecht::DefaultKey:0x2529caa4> 3.2.0"] | |
[WARNING] Invalid gemspec in [/scratch/hudson/workspace/torquebox-2x-abstractj/label/m1.large/ruby_compat_version/1.8/integration-tests/target/integ-dist/jruby/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Yecht::DefaultKey:0x2529caa4> 3.2.0"] | |
[WARNING] Invalid gemspec in [/scratch/hudson/workspace/torquebox-2x-abstractj/label/m1.large/ruby_compat_version/1.8/integration-tests/target/integ-dist/jruby/lib/ruby/gems/1.8/specifications/activemodel-3.2.0.gemspec]: Illformed requirement ["#<YAML::Yecht::DefaultKey:0x2529caa4> 3.2.0"] | |
[WARNING] Invalid gemspec in [/scratch/hudson/workspace/torquebox-2x-abstractj/label/m1.large/ruby_compat_version/1.8/integration-tests/target/integ-di |
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
web: | |
host: foobar.com | |
context: /tacos | |
session-timeout: 10 m |
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
/* | |
* Copyright 2008-2012 Red Hat, Inc, and individual contributors. | |
* | |
* This is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU Lesser General Public License as | |
* published by the Free Software Foundation; either version 2.1 of | |
* the License, or (at your option) any later version. | |
* | |
* This software is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
[INFO] Failures: | |
[INFO] | |
[INFO] 1) STOMP applications via websockets should be able to connect and disconnect using stomp over websockets | |
[INFO] Failure/Error: visit( '/stomp-websockets/give-me-a-cookie-please' ) | |
[INFO] Selenium::WebDriver::Error::WebDriverError: | |
[INFO] unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) | |
[INFO] # ./spec/browser_stomp_spec.rb:24:in `(root)' | |
[INFO] # ./target/rspec-runner.rb:97:in `(root)' | |
[INFO] # -e:1:in `(root)' | |
[INFO] |
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
/** | |
* Copyright 2011 Douglas Campos | |
* Copyright 2011 dynjs contributors | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This is a initial proposal on having a very simple persistence layer
- Persist data on local storage as a type of buffer
- Enable data to be created/saved/persisted/queryied/removed to/from the server side
This is a initial proposal on having a very simple persistence layer
- Persist data on local storage as a type of buffer
- Enable data to be created/saved/persisted/queryied/removed to/from the server side
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
Meeting minutes: | |
Roadmap review: | |
=============== | |
https://github.com/aerogear/beta.aerogear.org/blob/master/docs/planning/1.0.0/AeroGearAndroid.asciidoc | |
M1 progress: | |
------------ |
This gist is a follow up a previous gist that investigated using CDI events for handling SecurityProvider responses.
In short, a route can be configured so that only users belonging to certain groups can access the target endpoint. For example:
route()
.from("/delorean").roles("admin")
.on(RequestMethod.GET)