US #1368: Add humans.txt and base robots.txt

stable
David Barragán Merino 2014-10-16 10:48:53 +02:00
parent 7ebe46203f
commit df9116d2a6
3 changed files with 102 additions and 4 deletions

86
extras/humans.txt Normal file
View File

@ -0,0 +1,86 @@
/* the humans responsible & colophon */
/* humanstxt.org */
/* TEAM */
Taiga Engineer: Lord Juan Francisco Alcántara
Site: http://www.kaleidos.net/40826D/
Twitter: nil
Location: Madrid, Spain
Taiga Engineer & Spartan: Lord Alejandro Alonso
Site: http://kaleidos.net/FC8EAC/
Twitter: @_superalex_
Location: Madrid, Spain
Taiga Engineer & Vodka distiller: Lord Andrey Antukh
Site: http://kaleidos.net/A5694F/
Twitter: @niwibe
Location: Madrid, Russia
Taiga Engineer: Lord David Barragán Merino
Site: http://kaleidos.net/FFF8E7/
Twitter: @bameda
Location: Madrid, Spain
Taiga Engineer & Troll Master: Lord Jesús Espino García
Site: http://kaleidos.net/007000/
Twitter: @jespinog
Location: Madrid, Spain
Taiga UX Consultant & Mistress of the Dark: Pilar Esteban
Site: https://www.linkedin.com/in/pilaresteban
Twitter: @devilme
Location: Madrid, Spain
Taiga Engineer & African Dancer: Anler Hernández
Site: http://www.kaleidos.net/2099DB/
Twitter: @anler
Location: Madrid, Cuba
Taiga UI Designer, Frontend Engineer & Paella Masterchef: Lord Xavier Julián
Site: http://kaleidos.net/CC0000/
Twitter: @Xaviju
Location: Madrid, Spain
Taiga UI Designer: Juan de la Cruz
Site: http://kaleidos.net
Twitter: @elhombretecla
Location: Madrid, Spain
Taiga CEO & Community Manager: Ricky Posner
Twitter: @eposner
Location: Madrid, Spain
Taiga CEO: Lord Pablo Ruiz Múzquiz
Site: http://kaleidos.net/761CEC/
Twitter: @diacritica
Location: Madrid, Spain
/* SITE */
Standards: HTML5, CSS3
Components: Django, AngularJS, jQuery
Software: PostgreSQL, RabbitMQ, Redis
Languajes: Python, CoffeeScript, Jade, Sass
.,,.
,;;*;;;;, for ponies with
.-'``;-');;. magical powers!
/' .-. /*;;
.' \d \;; .;;;,
/ o ` \; ,__. ,;*;;;*;,
\__, _.__,' \_.-') __)--.;;;;;*;;;;,
`""`;;;\ /-')_) __) `\' ';;;;;;
;*;;; -') `)_) |\ | ;;;;*;
;;;;| `---` O | | ;;*;;;
*;*;\| O / ;;;;;*
;;;;;/| .-------\ / ;*;;;;;
;;;*;/ \ | '. (`. ;;;*;;;
;;;;;'. ; | ) \ | ;;;;;;
,;*;;;;\/ |. / /` | ';;;*;
;;;;;;/ |/ / /__/ ';;;
'*jgs/ | / | ;*;
`""""` `""""` ;'

6
extras/robots.txt Normal file
View File

@ -0,0 +1,6 @@
User-agent: *
Disallow:
# You rush a miracle man, you get rotten miracles.
#
# -- Miracle Max --

View File

@ -24,6 +24,7 @@ paths = {}
paths.app = "app/" paths.app = "app/"
paths.dist = "dist/" paths.dist = "dist/"
paths.tmp = "tmp/" paths.tmp = "tmp/"
paths.extras = "extras/"
paths.jade = [ paths.jade = [
paths.app + "index.jade", paths.app + "index.jade",
@ -175,7 +176,7 @@ gulp.task "conf", ->
gulp.src("conf/main.json") gulp.src("conf/main.json")
.pipe(wrap("angular.module('taigaBase').value('localconf', <%= contents %>);")) .pipe(wrap("angular.module('taigaBase').value('localconf', <%= contents %>);"))
.pipe(concat("conf.js")) .pipe(concat("conf.js"))
.pipe(gulp.dest(paths.tmp)); .pipe(gulp.dest(paths.tmp))
gulp.task "locales", -> gulp.task "locales", ->
gulp.src("app/locales/en/app.json") gulp.src("app/locales/en/app.json")
@ -212,7 +213,7 @@ gulp.task "app-watch", ["coffee", "conf", "locales"], ->
gulp.src(_paths) gulp.src(_paths)
.pipe(concat("app.js")) .pipe(concat("app.js"))
.pipe(gulp.dest(paths.dist + "js/")); .pipe(gulp.dest(paths.dist + "js/"))
gulp.task "app-deploy", ["coffee", "conf", "locales"], -> gulp.task "app-deploy", ["coffee", "conf", "locales"], ->
_paths = [ _paths = [
@ -224,7 +225,7 @@ gulp.task "app-deploy", ["coffee", "conf", "locales"], ->
gulp.src(_paths) gulp.src(_paths)
.pipe(concat("app.js")) .pipe(concat("app.js"))
.pipe(uglify({mangle:false, preserveComments: false})) .pipe(uglify({mangle:false, preserveComments: false}))
.pipe(gulp.dest(paths.dist + "js/")); .pipe(gulp.dest(paths.dist + "js/"))
############################################################################## ##############################################################################
# Common tasks # Common tasks
@ -251,7 +252,12 @@ gulp.task "copy-plugin-templates", ->
gulp.src("#{paths.app}/plugins/**/templates/*") gulp.src("#{paths.app}/plugins/**/templates/*")
.pipe(gulp.dest("#{paths.dist}/plugins/")) .pipe(gulp.dest("#{paths.dist}/plugins/"))
gulp.task "copy", ["copy-fonts", "copy-images", "copy-plugin-templates", "copy-svg"] gulp.task "copy-extras", ->
gulp.src("#{paths.extras}/*")
.pipe(gulp.dest("#{paths.dist}/"))
gulp.task "copy", ["copy-fonts", "copy-images", "copy-plugin-templates", "copy-svg", "copy-extras"]
gulp.task "express", -> gulp.task "express", ->
express = require("express") express = require("express")