Skip to content

Commit c226139

Browse files
committed
OLD server settings section of application settings now implemented.
1 parent 762a537 commit c226139

31 files changed

+30348
-62
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ test/bower_components/
99
docs
1010
notes
1111
app/styles/font-awesome-4.2.0
12+
UnicodeData.txt
1213

Gruntfile.coffee

+7
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ module.exports = (grunt) ->
361361
packagejson:
362362
src: 'package.json'
363363
dest: '.tmp/'
364+
unicodedatajson:
365+
src: 'UnicodeData.json'
366+
dest: '.tmp/'
364367
dist:
365368
files: [
366369
expand: true
@@ -373,6 +376,7 @@ module.exports = (grunt) ->
373376
'favicon.ico'
374377
'help/html/help.html'
375378
'./../package.json'
379+
'./../UNIDATA.json'
376380
'images/{,*/}*.{webp,gif}'
377381
'styles/fonts/{,*/}*.*'
378382
'bower_components/sass-bootstrap/fonts/*.*'
@@ -532,6 +536,7 @@ module.exports = (grunt) ->
532536
'clean:server'
533537
'copy:coffee'
534538
'copy:packagejson'
539+
'copy:unicodedatajson'
535540
'coffee:serve'
536541
'coffee:test'
537542
#'createDefaultTemplate'
@@ -548,6 +553,7 @@ module.exports = (grunt) ->
548553
'clean:server'
549554
'copy:coffee'
550555
'copy:packagejson'
556+
'copy:unicodedatajson'
551557
'coffee:serve'
552558
#'createDefaultTemplate'
553559
#'jst'
@@ -584,6 +590,7 @@ module.exports = (grunt) ->
584590
'clean:dist' # remove everything in dist/ and .tmp/
585591
'copy:coffee' # copy all .coffee files in app/scripts/ to .tmp/scripts/
586592
'copy:packagejson'
593+
'copy:unicodedatajson'
587594
'coffee:dist' # convert all .coffee files in .tmp/scripts to .js in situ
588595

589596
# eco: convert all .eco files in app/scripts/templates/ to .js files in

0 commit comments

Comments
 (0)