diff --git a/app/coffee/app.coffee b/app/coffee/app.coffee index 0271385e..0d61fa61 100644 --- a/app/coffee/app.coffee +++ b/app/coffee/app.coffee @@ -1,3 +1,4 @@ +### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino @@ -14,6 +15,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +# +# File: app.coffee +### @taiga = taiga = {} diff --git a/app/coffee/classes.coffee b/app/coffee/classes.coffee index be724271..14ffc5ec 100644 --- a/app/coffee/classes.coffee +++ b/app/coffee/classes.coffee @@ -1,3 +1,4 @@ +### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino @@ -14,6 +15,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +# +# File: classes.coffee +### class TaigaBase class TaigaService extends TaigaBase diff --git a/app/coffee/config.coffee b/app/coffee/config.coffee index d3660e2c..a907d50f 100644 --- a/app/coffee/config.coffee +++ b/app/coffee/config.coffee @@ -1,3 +1,4 @@ +### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino @@ -14,6 +15,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +# +# File: config.coffee +### class ConfigService defaults: { diff --git a/app/coffee/modules/auth.coffee b/app/coffee/modules/auth.coffee index 0483af77..64b3be9e 100644 --- a/app/coffee/modules/auth.coffee +++ b/app/coffee/modules/auth.coffee @@ -1,3 +1,4 @@ +### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino @@ -14,6 +15,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +# +# File: modules/auth.coffee +### taiga = @.taiga diff --git a/app/coffee/modules/base/model.coffee b/app/coffee/modules/base/model.coffee index 6bf52738..f17022c9 100644 --- a/app/coffee/modules/base/model.coffee +++ b/app/coffee/modules/base/model.coffee @@ -1,3 +1,4 @@ +### # Copyright (C) 2014 Andrey Antukh # Copyright (C) 2014 Jesús Espino Garcia # Copyright (C) 2014 David Barragán Merino @@ -14,6 +15,9 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +# +# File: modules/base/model.coffee +### class Model constructor: (name, data, dataTypes) ->