appverse-web-html5-security
Appverse Web Client Side security module based on HTML5 and Java Script
More Information
- About this project: http://appverse.github.com/appverse-web
- About licenses & groups: http://appverse.github.com
- About The Appverse Project: http://appverse.org
###Download
GitHub core page GitHub security page GitHub boilerplate page or bower install appverse-web-html5-security
##Running (For using Appverse in your Angular app)
####Before you start, tools you will need
####Inside of your app:
- Run
bower install appverse-web-html5-security -S
- Add the following to your index.html
<!-- build:js scripts/scripts.js -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-touch/angular-touch.min.js"></script>
<!-- uibootstrap -->
<script src="bower_components/bootstrap-sass-official/vendor/assets/javascripts/bootstrap/transition.js"></script>
<script src="bower_components/bootstrap-sass-official/vendor/assets/javascripts/bootstrap/collapse.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<!-- modules -->
<script src="bower_components/angular-cookies/angular-cookies.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="bower_components/angular-cache/dist/angular-cache.min.js"></script>
<script src="bower_components/angular-resource/angular-resource.min.js"></script>
<!-- ########## API modules ########## -->
<!-- Cache module -->
<script src="bower_components/angular-cache/dist/angular-cache.min.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-cache.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-configuration.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-detection.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-logging.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-main.js"></script>
<!-- REST module -->
<script src="bower_components/lodash/dist/lodash.underscore.min.js"></script>
<script src="bower_components/restangular/dist/restangular.min.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-rest.js"></script>
<!-- Security module -->
<script src="bower_components/appverse-web-html5-security/src/modules/api-security.js"></script>
<!-- Server Push module -->
<script src="bower_components/appverse-web-html5-core/src/modules/api-serverpush.js"></script>
<!-- Translate module -->
<script src="bower_components/appverse-web-html5-core/src/modules/api-translate.js"></script>
<script src="bower_components/angular-translate/angular-translate.min.js"></script>
<script src="bower_components/angular-translate-loader-static-files/angular-translate-loader-static-files.min.js"></script>
<script src="bower_components/angular-dynamic-locale/src/tmhDynamicLocale.js"></script>
<script src="bower_components/appverse-web-html5-core/src/modules/api-utils.js"></script>
<!-- your scripts here-->
<!-- endbuild -->
- Add the
appverse-web-html5-security
module to your Angular module list (e.g. in a main app.js file:angular.module('yourMainModule',['appverse','appverse.security'])
)
License
Copyright (c) 2012 GFT Appverse, S.L., Sociedad Unipersonal.
This Source Code Form is subject to the terms of the Appverse Public License
Version 2.0 ("APL v2.0"). If a copy of the APL was not distributed with this
file, You can obtain one at <http://appverse.org/legal/appverse-license/>.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the conditions of the AppVerse Public License v2.0
are met.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. EXCEPT IN CASE OF WILLFUL MISCONDUCT OR GROSS NEGLIGENCE, IN NO EVENT
SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.