https://help.netweaver.ondemand.com/cloud_portal/frameset.htm
http://scn.sap.com/community/netweaver-portal/cloud
http://scn.sap.com/community/developer-center/cloud-platform
| 'use strict'; | |
| var detective = require('detective'); | |
| function simpleRequire(n) { | |
| // var proxy = require('proxyquireify') | |
| return n.parent | |
| && n.parent.id | |
| && n.parent.id.name; | |
| } |
| /** .... **/ | |
| var $ = require("gulp-load-plugins")(); | |
| var gulp = require("gulp"); | |
| function handleError(task) { | |
| return function(err) { | |
| $.util.log($.util.colors.red(err)); | |
| $.notify.onError(task + " failed, check the logs..")(err); | |
| }; |
| Manifest-Version: 1.0 | |
| Bundle-ManifestVersion: 2 | |
| Bundle-Name: Matrix | |
| Bundle-SymbolicName: Matrix | |
| Bundle-Version: 1.0.0.qualifier | |
| Bundle-Classpath: .,WEB-INF/classes,WEB-INF/lib/thymeleaf-2.0.15.jar,WEB-INF/lib/thymeleaf-spring3-2.0.15.jar | |
| Web-ContextPath: /web123 | |
| Import-Package: javax.servlet,javax.servlet.http,javax.servlet.resources,javax.swing.tree, | |
| javax.naming,org.w3c.dom,org.apache.commons.logging,javax.xml.parsers;resolution:=optional, | |
| org.xml.sax;resolution:=optional,org.xml.sax.helpers;resolution:=optional |
| define(['underscore', 'backbone', 'config', 'backbone-pageable'], function(_, Backbone, Config, PageableCollection) { | |
| var extendedPageableCollection = PageableCollection.extend({ | |
| state: { | |
| pageSize: Config.itemsPerPage | |
| }, | |
| mode: 'client', | |
| full: true, | |
| /** | |
| * Set sort configuration and execute the sort for the full collection | |
| **/ |