[ARVADOS] updated: 004c230cb750a3ad4a3d1e3928b266537e6d366e
Git user
git at public.curoverse.com
Wed Jun 28 18:55:02 EDT 2017
Summary of changes:
apps/workbench/app/assets/javascripts/bootstrap.js.coffee | 8 ++++----
apps/workbench/app/assets/javascripts/keep_disks.js.coffee | 6 +++---
build/check-copyright-notices | 8 +++++++-
3 files changed, 14 insertions(+), 8 deletions(-)
via 004c230cb750a3ad4a3d1e3928b266537e6d366e (commit)
from cc4e8f68604233d4dd00679fbc8e14aeb6fa7479 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 004c230cb750a3ad4a3d1e3928b266537e6d366e
Author: Lucas Di Pentima <lucas at curoverse.com>
Date: Wed Jun 28 19:53:36 2017 -0300
2411: Updated check-copyright-notices script to correctly add the comment
block to coffeescript files.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at curoverse.com>
diff --git a/apps/workbench/app/assets/javascripts/bootstrap.js.coffee b/apps/workbench/app/assets/javascripts/bootstrap.js.coffee
index 8d22e89..441d77f 100644
--- a/apps/workbench/app/assets/javascripts/bootstrap.js.coffee
+++ b/apps/workbench/app/assets/javascripts/bootstrap.js.coffee
@@ -1,8 +1,8 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
+### Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 ###
jQuery ->
$("a[rel=popover]").popover()
$(".tooltip").tooltip()
- $("a[rel=tooltip]").tooltip()
\ No newline at end of file
+ $("a[rel=tooltip]").tooltip()
diff --git a/apps/workbench/app/assets/javascripts/keep_disks.js.coffee b/apps/workbench/app/assets/javascripts/keep_disks.js.coffee
index fe8c7a9..d33312d 100644
--- a/apps/workbench/app/assets/javascripts/keep_disks.js.coffee
+++ b/apps/workbench/app/assets/javascripts/keep_disks.js.coffee
@@ -1,6 +1,6 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
+### Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 ###
cache_age_in_days = (milliseconds_age) ->
ONE_DAY = 1000 * 60 * 60 * 24
diff --git a/build/check-copyright-notices b/build/check-copyright-notices
index 239a0c6..cf4e9bf 100755
--- a/build/check-copyright-notices
+++ b/build/check-copyright-notices
@@ -133,7 +133,13 @@ git ls-files -z ${@} | \
cc=""
ce=" */"
;;
- *.go | *.scss | *.java | *.js | *.coffee)
+ *.coffee)
+ fixer=fixer
+ cs="### "
+ cc=""
+ ce=" ###"
+ ;;
+ *.go | *.scss | *.java | *.js)
fixer=fixer
cc="//"
;;
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list