You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2016/09/02 07:44:06 UTC

[04/17] incubator-ponymail git commit: fix headers

fix headers


Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/f36d5560
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/f36d5560
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/f36d5560

Branch: refs/heads/coffee-and-cake
Commit: f36d5560b2887f62f246bebbf8180d270930d88c
Parents: 3e672bc
Author: Daniel Gruno <hu...@apache.org>
Authored: Thu Sep 1 17:03:01 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Thu Sep 1 17:03:01 2016 +0200

----------------------------------------------------------------------
 site/js/coffee/dom_utils.coffee  |  4 ++++
 site/js/coffee/http_utils.coffee |  4 ++++
 site/js/coffee/misc.coffee       | 22 +++++++++++++++++++++-
 3 files changed, 29 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/f36d5560/site/js/coffee/dom_utils.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/dom_utils.coffee b/site/js/coffee/dom_utils.coffee
index 1a9286c..847dc1e 100644
--- a/site/js/coffee/dom_utils.coffee
+++ b/site/js/coffee/dom_utils.coffee
@@ -15,6 +15,10 @@
  limitations under the License.
 ###
 
+####################################################
+# This is dom_utils.coffee: DOM handling utilities #
+####################################################
+
 # mk: DOM creator
 # args:
 # - type: HTML element type (div, table, p etc) to produce

http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/f36d5560/site/js/coffee/http_utils.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/http_utils.coffee b/site/js/coffee/http_utils.coffee
index 5101a00..52bd8a8 100644
--- a/site/js/coffee/http_utils.coffee
+++ b/site/js/coffee/http_utils.coffee
@@ -15,6 +15,10 @@
  limitations under the License.
 ###
 
+####################################################
+# This is http_utils.coffee: HTTP Request library  #
+####################################################
+
 # fetch: Fetches a URL.
 # Params:
 # - url: URL to fetch

http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/f36d5560/site/js/coffee/misc.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/misc.coffee b/site/js/coffee/misc.coffee
index 92db090..e4a9e69 100644
--- a/site/js/coffee/misc.coffee
+++ b/site/js/coffee/misc.coffee
@@ -1,4 +1,24 @@
-# Miscellaneous functions
+###
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+###
+
+
+########################################################
+# This is misc.coffee: Miscellaneous utility functions #
+########################################################
 
 # Number prettification prototype:
 # Converts 1234567 into 1,234,567 etc