rename website/client to website/client-old

This commit is contained in:
Matteo Pagliazzi
2016-09-14 15:06:32 +02:00
parent 555ddbbe4c
commit 4b48b7a5f6
353 changed files with 57 additions and 57 deletions

View File

@@ -1,3 +1,3 @@
{ {
"directory": "website/client/bower_components" "directory": "website/client-old/bower_components"
} }

View File

@@ -8,8 +8,8 @@ website/transpiled-babel/
migrations/* migrations/*
# The files in website/client/js should be moved out and browserified # The files in website/client-old/js should be moved out and browserified
website/client/ website/client-old/
# Temporarilly disabled. These should be removed when the linting errors are fixed # Temporarilly disabled. These should be removed when the linting errors are fixed
common/script/content/index.js common/script/content/index.js

12
.gitignore vendored
View File

@@ -1,7 +1,7 @@
.DS_Store .DS_Store
website/client/gen website/client-old/gen
website/client/common website/client-old/common
website/client/apidoc website/client-old/apidoc
website/transpiled-babel/ website/transpiled-babel/
common/transpiled-babel/ common/transpiled-babel/
node_modules node_modules
@@ -10,8 +10,8 @@ node_modules
config.json config.json
npm-debug.log* npm-debug.log*
lib lib
website/client/bower_components website/client-old/bower_components
website/client/new-stuff.html website/client-old/new-stuff.html
website/build website/build
newrelic_agent.log newrelic_agent.log
.bower-tmp .bower-tmp
@@ -25,7 +25,7 @@ src/*/*.map
src/*/*/*.map src/*/*/*.map
test/*.js test/*.js
test/*.map test/*.map
website/client/docs website/client-old/docs
*.sublime-workspace *.sublime-workspace
coverage coverage
coverage.html coverage.html

View File

@@ -2,7 +2,7 @@ node_modules/**
.bower-cache/** .bower-cache/**
.bower-tmp/** .bower-tmp/**
.bower-registry/** .bower-registry/**
website/client/** website/client-old/**
website/views/** website/views/**
website/build/** website/build/**
test/** test/**

View File

@@ -43,11 +43,11 @@ module.exports = function(grunt) {
options: { options: {
compress: false, // AFTER compress: false, // AFTER
'include css': true, 'include css': true,
paths: ['website/client'] paths: ['website/client-old']
}, },
files: { files: {
'website/build/app.css': ['website/client/css/index.styl'], 'website/build/app.css': ['website/client-old/css/index.styl'],
'website/build/static.css': ['website/client/css/static.styl'] 'website/build/static.css': ['website/client-old/css/static.styl']
} }
} }
}, },
@@ -55,13 +55,13 @@ module.exports = function(grunt) {
copy: { copy: {
build: { build: {
files: [ files: [
{expand: true, cwd: 'website/client/', src: 'favicon.ico', dest: 'website/build/'}, {expand: true, cwd: 'website/client-old/', src: 'favicon.ico', dest: 'website/build/'},
{expand: true, cwd: 'website/client/', src: 'favicon_192x192.png', dest: 'website/build/'}, {expand: true, cwd: 'website/client-old/', src: 'favicon_192x192.png', dest: 'website/build/'},
{expand: true, cwd: '', src: 'common/dist/sprites/spritesmith*.png', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/dist/sprites/spritesmith*.png', dest: 'website/build/'},
{expand: true, cwd: '', src: 'common/img/sprites/backer-only/*.gif', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/backer-only/*.gif', dest: 'website/build/'},
{expand: true, cwd: '', src: 'common/img/sprites/npc_ian.gif', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/npc_ian.gif', dest: 'website/build/'},
{expand: true, cwd: '', src: 'common/img/sprites/quest_*.gif', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/quest_*.gif', dest: 'website/build/'},
{expand: true, cwd: 'website/client/', src: 'bower_components/bootstrap/dist/fonts/*', dest: 'website/build/'} {expand: true, cwd: 'website/client-old/', src: 'bower_components/bootstrap/dist/fonts/*', dest: 'website/build/'}
] ]
} }
}, },
@@ -88,9 +88,9 @@ module.exports = function(grunt) {
} }
}); });
//Load build files from client/manifest.json //Load build files from client-old/manifest.json
grunt.registerTask('loadManifestFiles', 'Load all build files from client/manifest.json', function(){ grunt.registerTask('loadManifestFiles', 'Load all build files from client-old/manifest.json', function(){
var files = grunt.file.readJSON('./website/client/manifest.json'); var files = grunt.file.readJSON('./website/client-old/manifest.json');
var uglify = {}; var uglify = {};
var cssmin = {}; var cssmin = {};
@@ -101,7 +101,7 @@ module.exports = function(grunt) {
_.each(files[key].js, function(val){ _.each(files[key].js, function(val){
var path = "./"; var path = "./";
if( val.indexOf('common/') == -1) if( val.indexOf('common/') == -1)
path = './website/client/'; path = './website/client-old/';
js.push(path + val); js.push(path + val);
}); });
@@ -110,7 +110,7 @@ module.exports = function(grunt) {
_.each(files[key].css, function(val){ _.each(files[key].css, function(val){
var path = "./"; var path = "./";
if( val.indexOf('common/') == -1) { if( val.indexOf('common/') == -1) {
path = (val == 'app.css' || val == 'static.css') ? './website/build/' : './website/client/'; path = (val == 'app.css' || val == 'static.css') ? './website/build/' : './website/client-old/';
} }
css.push(path + val) css.push(path + val)
}); });
@@ -122,7 +122,7 @@ module.exports = function(grunt) {
grunt.config.set('cssmin.build.files', cssmin); grunt.config.set('cssmin.build.files', cssmin);
// Rewrite urls to relative path // Rewrite urls to relative path
grunt.config.set('cssmin.build.options', {'target': 'website/client/css/whatever-css.css'}); grunt.config.set('cssmin.build.options', {'target': 'website/client-old/css/whatever-css.css'});
}); });
// Register tasks. // Register tasks.

View File

@@ -9,7 +9,7 @@
"ignore": [ "ignore": [
"**/.*", "**/.*",
"node_modules", "node_modules",
"website/client/bower_components", "website/client-old/bower_components",
"test", "test",
"tests" "tests"
], ],

View File

@@ -11,40 +11,40 @@ module.exports = function karmaConfig (config) {
// list of files / patterns to load in the browser // list of files / patterns to load in the browser
files: [ files: [
'website/client/bower_components/jquery/dist/jquery.js', 'website/client-old/bower_components/jquery/dist/jquery.js',
'website/client/bower_components/pnotify/jquery.pnotify.js', 'website/client-old/bower_components/pnotify/jquery.pnotify.js',
'website/client/bower_components/angular/angular.js', 'website/client-old/bower_components/angular/angular.js',
'website/client/bower_components/angular-loading-bar/build/loading-bar.min.js', 'website/client-old/bower_components/angular-loading-bar/build/loading-bar.min.js',
'website/client/bower_components/angular-resource/angular-resource.min.js', 'website/client-old/bower_components/angular-resource/angular-resource.min.js',
'website/client/bower_components/hello/dist/hello.all.min.js', 'website/client-old/bower_components/hello/dist/hello.all.min.js',
'website/client/bower_components/angular-sanitize/angular-sanitize.js', 'website/client-old/bower_components/angular-sanitize/angular-sanitize.js',
'website/client/bower_components/bootstrap/dist/js/bootstrap.js', 'website/client-old/bower_components/bootstrap/dist/js/bootstrap.js',
'website/client/bower_components/angular-bootstrap/ui-bootstrap.js', 'website/client-old/bower_components/angular-bootstrap/ui-bootstrap.js',
'website/client/bower_components/angular-bootstrap/ui-bootstrap-tpls.js', 'website/client-old/bower_components/angular-bootstrap/ui-bootstrap-tpls.js',
'website/client/bower_components/angular-ui-router/release/angular-ui-router.js', 'website/client-old/bower_components/angular-ui-router/release/angular-ui-router.js',
'website/client/bower_components/angular-filter/dist/angular-filter.js', 'website/client-old/bower_components/angular-filter/dist/angular-filter.js',
'website/client/bower_components/angular-ui/build/angular-ui.js', 'website/client-old/bower_components/angular-ui/build/angular-ui.js',
'website/client/bower_components/angular-ui-utils/ui-utils.min.js', 'website/client-old/bower_components/angular-ui-utils/ui-utils.min.js',
'website/client/bower_components/Angular-At-Directive/src/at.js', 'website/client-old/bower_components/Angular-At-Directive/src/at.js',
'website/client/bower_components/Angular-At-Directive/src/caret.js', 'website/client-old/bower_components/Angular-At-Directive/src/caret.js',
'website/client/bower_components/angular-mocks/angular-mocks.js', 'website/client-old/bower_components/angular-mocks/angular-mocks.js',
'website/client/bower_components/ngInfiniteScroll/build/ng-infinite-scroll.js', 'website/client-old/bower_components/ngInfiniteScroll/build/ng-infinite-scroll.js',
'website/client/bower_components/select2/select2.js', 'website/client-old/bower_components/select2/select2.js',
'website/client/bower_components/angular-ui-select2/src/select2.js', 'website/client-old/bower_components/angular-ui-select2/src/select2.js',
'website/client/bower_components/habitica-markdown/dist/habitica-markdown.min.js', 'website/client-old/bower_components/habitica-markdown/dist/habitica-markdown.min.js',
'common/dist/scripts/habitrpg-shared.js', 'common/dist/scripts/habitrpg-shared.js',
'test/spec/mocks/**/*.js', 'test/spec/mocks/**/*.js',
'website/client/js/env.js', 'website/client-old/js/env.js',
'website/client/js/app.js', 'website/client-old/js/app.js',
'common/script/public/config.js', 'common/script/public/config.js',
'common/script/public/directives.js', 'common/script/public/directives.js',
'website/client/js/services/**/*.js', 'website/client-old/js/services/**/*.js',
'website/client/js/filters/**/*.js', 'website/client-old/js/filters/**/*.js',
'website/client/js/directives/**/*.js', 'website/client-old/js/directives/**/*.js',
'website/client/js/controllers/**/*.js', 'website/client-old/js/controllers/**/*.js',
'test/spec/specHelper.js', 'test/spec/specHelper.js',
'test/spec/**/*.js', 'test/spec/**/*.js',
@@ -76,7 +76,7 @@ module.exports = function karmaConfig (config) {
browsers: ['PhantomJS'], browsers: ['PhantomJS'],
preprocessors: { preprocessors: {
'website/client/js/**/*.js': ['coverage'], 'website/client-old/js/**/*.js': ['coverage'],
'test/**/*.js': ['babel'], 'test/**/*.js': ['babel'],
}, },

View File

@@ -30,7 +30,7 @@ gulp.task('build:dev', ['browserify', 'prepare:staticNewStuff'], (done) => {
}); });
gulp.task('build:dev:watch', ['build:dev'], () => { gulp.task('build:dev:watch', ['build:dev'], () => {
gulp.watch(['website/client/**/*.styl', 'common/script/*']); gulp.watch(['website/client-old/**/*.styl', 'common/script/*']);
}); });
gulp.task('build:prod', ['browserify', 'build:server', 'prepare:staticNewStuff'], (done) => { gulp.task('build:prod', ['browserify', 'build:server', 'prepare:staticNewStuff'], (done) => {

View File

@@ -4,7 +4,7 @@ import {writeFileSync} from 'fs';
gulp.task('prepare:staticNewStuff', () => { gulp.task('prepare:staticNewStuff', () => {
writeFileSync( writeFileSync(
'./website/client/new-stuff.html', './website/client-old/new-stuff.html',
jade.compileFile('./website/views/shared/new-stuff.jade')() jade.compileFile('./website/views/shared/new-stuff.jade')()
); );
}); });

View File

@@ -9,7 +9,7 @@ gulp.task('nodemon', () => {
nodemon({ nodemon({
script: pkg.main, script: pkg.main,
ignore: [ ignore: [
'website/client/*', 'website/client-old/*',
'website/views/*', 'website/views/*',
'common/dist/script/content/*', 'common/dist/script/content/*',
] ]

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

Before

Width:  |  Height:  |  Size: 5.7 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

View File

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

View File

Before

Width:  |  Height:  |  Size: 169 KiB

After

Width:  |  Height:  |  Size: 169 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 171 KiB

After

Width:  |  Height:  |  Size: 171 KiB

View File

Before

Width:  |  Height:  |  Size: 495 KiB

After

Width:  |  Height:  |  Size: 495 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 7.0 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Some files were not shown because too many files have changed in this diff Show More