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 19:44:12 UTC

[1/3] incubator-ponymail git commit: add footer, add header to calendar

Repository: incubator-ponymail
Updated Branches:
  refs/heads/coffee-and-cake 5cc211735 -> df2217199


add footer, add header to calendar


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

Branch: refs/heads/coffee-and-cake
Commit: b67180f075b4a40c5b4e713c65aa2e269b4fbc18
Parents: 5cc2117
Author: Daniel Gruno <hu...@apache.org>
Authored: Fri Sep 2 21:43:10 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Fri Sep 2 21:43:10 2016 +0200

----------------------------------------------------------------------
 site/js/coffee/scaffolding.coffee | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/b67180f0/site/js/coffee/scaffolding.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/scaffolding.coffee b/site/js/coffee/scaffolding.coffee
index 07af4e7..91783d0 100644
--- a/site/js/coffee/scaffolding.coffee
+++ b/site/js/coffee/scaffolding.coffee
@@ -60,8 +60,19 @@ listviewScaffolding = () ->
     
     ### TEST: Insert fake calendar ###
     cal = new Calendar(2010)
+    calHolder.inject(new HTML('h3', {}, "Archive:"))
     calHolder.inject(cal)
     
     ### Finally, make the list view placeholder ###
     listDiv = new HTML('div', { id: "listview", class: "sbox"})
-    mainDiv.inject(listDiv)
\ No newline at end of file
+    mainDiv.inject(listDiv)
+    
+    ### And of course, afooter ###
+    footer = new HTML('div', { id: "footer"})
+    document.body.inject(footer)
+    footer.inject([
+        "Powered by ",
+        new HTML('a', { href: 'https://ponymail.incubator.apache.org/'}, "Apache Pony Mail (Incubating) v/#{ponymail_version}"),
+        ". Copyright 2016, the Apache Software Foundation."
+    ])
+    
\ No newline at end of file


[3/3] incubator-ponymail git commit: update CSS

Posted by hu...@apache.org.
update CSS


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

Branch: refs/heads/coffee-and-cake
Commit: df2217199a045605f122a5cf70a8313699cba673
Parents: 4171031
Author: Daniel Gruno <hu...@apache.org>
Authored: Fri Sep 2 21:43:42 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Fri Sep 2 21:43:42 2016 +0200

----------------------------------------------------------------------
 site/css/ponymail2.css | 40 +++++++++++++++++++++++++++++++---------
 1 file changed, 31 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/df221719/site/css/ponymail2.css
----------------------------------------------------------------------
diff --git a/site/css/ponymail2.css b/site/css/ponymail2.css
index eec12d4..dfb9a3e 100644
--- a/site/css/ponymail2.css
+++ b/site/css/ponymail2.css
@@ -61,7 +61,7 @@
 }
 
 body, html {
-    background: #D2D2D2;
+    background: #BBB;
     margin: 0;
 }
 
@@ -82,12 +82,13 @@ body, html {
 /* Calendars */
 
 .calendar_year {
-    background: #77D32C;
+    background: #78BF3B;
     border-radius: 4px;
-    color: #000;
+    color: #FFF;
     width: 110px;
     text-align: center;
-    border: 1px solid #666;
+    margin-bottom: 3px;
+    padding: 1px;
 }
 
 .calendar_year:hover {
@@ -97,13 +98,14 @@ body, html {
 
 
 .calendar_month {
-    background: #8CB9CE;
+    background: #648BAD;
     border-radius: 4px;
-    color: #000;
+    color: #FFF;
     margin-left: 5px;
     width: 100px;
     text-align: center;
-    border: 1px solid #666;
+    margin-bottom: 2px;
+    padding: 1px;
 }
 
 
@@ -118,15 +120,35 @@ body, html {
 #header {
     text-align: center;
     font-family: sans-serif;
-    font-size: 15pt;
+    font-size: 14pt;
 }
 
 #calendar {
-    width: 140px;
+    border-radius: 4px;
+    border: 1px solid #666;
+    padding: 10px;
+    background: #DDD;
+    width: 120px;
     float: left;
+    font-family: sans-serif;
+    font-size: 9pt;
+    font-weight: 500;
+    margin-left: 20px;
 }
 
 #listview {
     width: calc(95% - 160px);
     float: left;
+}
+
+
+#footer {
+    font-family: sans-serif;
+    font-size: 8pt;
+    text-align: center;
+}
+
+h3, h2, h1 {
+    margin-top: 5px;
+    text-align: center;
 }
\ No newline at end of file


[2/3] incubator-ponymail git commit: add file for keeping default vals

Posted by hu...@apache.org.
add file for keeping default vals

things like version number etc


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

Branch: refs/heads/coffee-and-cake
Commit: 417103167a542ff5d9610f280aeaad11dd87b0ad
Parents: b67180f
Author: Daniel Gruno <hu...@apache.org>
Authored: Fri Sep 2 21:43:25 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Fri Sep 2 21:43:25 2016 +0200

----------------------------------------------------------------------
 site/js/coffee/defaults.coffee | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/41710316/site/js/coffee/defaults.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/defaults.coffee b/site/js/coffee/defaults.coffee
new file mode 100644
index 0000000..7f594e1
--- /dev/null
+++ b/site/js/coffee/defaults.coffee
@@ -0,0 +1,19 @@
+###
+ 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.
+###
+
+### Pony Mail defaults ###
+ponymail_version = "0.10-coffee-and-cake"