Compare commits
2 Commits
6856ac0eba
...
ea221aa95f
Author | SHA1 | Date | |
---|---|---|---|
ea221aa95f | |||
5e7da4b5c7 |
58
Makefile
58
Makefile
@ -115,41 +115,41 @@ dist:
|
||||
source:
|
||||
rm -rf $(source_build_directory)
|
||||
mkdir -p $(source_build_directory)
|
||||
tar cvzf $(source_package_name).tar.gz ../$(app_name) \
|
||||
--exclude-vcs \
|
||||
--exclude="../$(app_name)/build" \
|
||||
--exclude="../$(app_name)/js/node_modules" \
|
||||
--exclude="../$(app_name)/node_modules" \
|
||||
--exclude="../$(app_name)/*.log" \
|
||||
--exclude="../$(app_name)/js/*.log" \
|
||||
tar cvzf $(source_package_name).tar.gz ../$(app_name)
|
||||
# --exclude-vcs \
|
||||
# --exclude="../$(app_name)/build" \
|
||||
# --exclude="../$(app_name)/js/node_modules" \
|
||||
# --exclude="../$(app_name)/node_modules" \
|
||||
# --exclude="../$(app_name)/*.log" \
|
||||
# --exclude="../$(app_name)/js/*.log" \
|
||||
|
||||
# Builds the source package for the app store, ignores php and js tests
|
||||
.PHONY: appstore
|
||||
appstore:
|
||||
rm -rf $(appstore_build_directory)
|
||||
mkdir -p $(appstore_build_directory)
|
||||
tar cvzf $(appstore_package_name).tar.gz ../$(app_name) \
|
||||
--exclude-vcs \
|
||||
--exclude="../$(app_name)/build" \
|
||||
--exclude="../$(app_name)/tests" \
|
||||
--exclude="../$(app_name)/Makefile" \
|
||||
--exclude="../$(app_name)/*.log" \
|
||||
--exclude="../$(app_name)/phpunit*xml" \
|
||||
--exclude="../$(app_name)/composer.*" \
|
||||
--exclude="../$(app_name)/js/node_modules" \
|
||||
--exclude="../$(app_name)/js/tests" \
|
||||
--exclude="../$(app_name)/js/test" \
|
||||
--exclude="../$(app_name)/js/*.log" \
|
||||
--exclude="../$(app_name)/js/package.json" \
|
||||
--exclude="../$(app_name)/js/bower.json" \
|
||||
--exclude="../$(app_name)/js/karma.*" \
|
||||
--exclude="../$(app_name)/js/protractor.*" \
|
||||
--exclude="../$(app_name)/package.json" \
|
||||
--exclude="../$(app_name)/bower.json" \
|
||||
--exclude="../$(app_name)/karma.*" \
|
||||
--exclude="../$(app_name)/protractor\.*" \
|
||||
--exclude="../$(app_name)/.*" \
|
||||
--exclude="../$(app_name)/js/.*" \
|
||||
tar cvzf $(appstore_package_name).tar.gz ../$(app_name)
|
||||
# --exclude-vcs \
|
||||
# --exclude="../$(app_name)/build" \
|
||||
# --exclude="../$(app_name)/tests" \
|
||||
# --exclude="../$(app_name)/Makefile" \
|
||||
# --exclude="../$(app_name)/*.log" \
|
||||
# --exclude="../$(app_name)/phpunit*xml" \
|
||||
# --exclude="../$(app_name)/composer.*" \
|
||||
# --exclude="../$(app_name)/js/node_modules" \
|
||||
# --exclude="../$(app_name)/js/tests" \
|
||||
# --exclude="../$(app_name)/js/test" \
|
||||
# --exclude="../$(app_name)/js/*.log" \
|
||||
# --exclude="../$(app_name)/js/package.json" \
|
||||
# --exclude="../$(app_name)/js/bower.json" \
|
||||
# --exclude="../$(app_name)/js/karma.*" \
|
||||
# --exclude="../$(app_name)/js/protractor.*" \
|
||||
# --exclude="../$(app_name)/package.json" \
|
||||
# --exclude="../$(app_name)/bower.json" \
|
||||
# --exclude="../$(app_name)/karma.*" \
|
||||
# --exclude="../$(app_name)/protractor\.*" \
|
||||
# --exclude="../$(app_name)/.*" \
|
||||
# --exclude="../$(app_name)/js/.*" \
|
||||
|
||||
.PHONY: test
|
||||
test: composer
|
||||
|
BIN
build/artifacts/appstore/occweb.tar.gz
Normal file
BIN
build/artifacts/appstore/occweb.tar.gz
Normal file
Binary file not shown.
BIN
build/artifacts/source/occweb.tar.gz
Normal file
BIN
build/artifacts/source/occweb.tar.gz
Normal file
Binary file not shown.
11
js/index.js
11
js/index.js
@ -8,6 +8,14 @@
|
||||
var baseUrl = OC.generateUrl('/apps/occweb');
|
||||
$.get(baseUrl + '/cmd', function(response){
|
||||
$('#app-content').terminal(function(command, term) {
|
||||
switch (command) {
|
||||
case "c":
|
||||
this.clear();
|
||||
break;
|
||||
case "exit":
|
||||
this.reset();
|
||||
break;
|
||||
default:
|
||||
var occCommand = {
|
||||
command: command
|
||||
};
|
||||
@ -18,10 +26,11 @@
|
||||
contentType: 'application/json',
|
||||
data: JSON.stringify(occCommand)
|
||||
}).done(function (response) {
|
||||
term.echo('\n'+ response).resume();
|
||||
term.echo('\n' + response).resume();
|
||||
}).fail(function (response, code) {
|
||||
term.echo('\n' + response).resume();
|
||||
});
|
||||
}
|
||||
}, {
|
||||
greetings: '[[;green;]' + new Date().toString().slice(0, 24) + "]\n\nPress [[;#ff5e99;]Enter] for more information on [[;#009ae3;]occ] commands.\n",
|
||||
name: 'occ',
|
||||
|
Loading…
Reference in New Issue
Block a user