1
0
Fork 0

moved apps to js

Conflicts:
	Makefile.in
This commit is contained in:
Frank Celler 2013-03-28 22:41:42 +01:00
parent 345d32c2cb
commit 3928975435
18 changed files with 5 additions and 2 deletions

View File

@ -229,7 +229,8 @@ nobase_pkgdata_DATA = \
$(shell find @srcdir@/html -name "*.ico" -print) \
$(shell find @srcdir@/html -name "*.js" -print) \
$(shell find @srcdir@/html -name "*.ejs" -print) \
$(shell find @srcdir@/html -name "*.png" -print)
$(shell find @srcdir@/html -name "*.png" -print) \
$(shell find @srcdir@/js/apps -type f -print)
if ENABLE_MRUBY

View File

@ -41,6 +41,7 @@ threads = 3
startup-directory = @PKGDATADIR@/js
action-directory = @PKGDATADIR@/js/actions
modules-path = @PKGDATADIR@/js/server/modules;@PKGDATADIR@/js/common/modules
app-path = @PKGDATADIR@/js/apps
[ruby]
action-directory = @PKGDATADIR@/mr/actions

View File

@ -17,6 +17,7 @@ threads = 3
startup-directory = ./js
action-directory = ./js/actions
modules-path = ./js/server/modules;./js/common/modules
app-path = ./js/apps
[ruby]
action-directory = ./mr/actions/system

View File

@ -315,7 +315,7 @@ function DocumentationAndConstraintsSpec () {
error = e;
}
assertEqual(error, "Nickname may only contain [a-z]");
assertEqual(error.substr(0,31), "Nickname may only contain [a-z]".substr(0,31));
},
testSummaryRestrictedTo60Characters: function () {