From 52a343ec7365ecf7effa3e1c156b7838a024fb6c Mon Sep 17 00:00:00 2001 From: dbs Date: Thu, 18 Nov 2010 02:27:03 +0000 Subject: [PATCH] First stab at gathering communication menu entries into one header * Provide a new communicate.php page that links to the other pertinent modes of communication for browsers with JavaScript turned off * Provide a drop-down menu under the new "Communicate" heading that links to mailing lists, IRC, calendar, blog, and planet * Also group a few items under "Contribute" - including "Report bugs" and "Develop code" (links to the list of code repositories). There is a stubbed-out "Join committees" entry because we don't have a single page that lists all of the ongoing activities in the community. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/evergreen-ils.org@1069 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- about.php | 1 + code_museum.php | 5 ++-- communicate.php | 67 +++++++++++++++++++++++++++++++++++++++++++++++++ css/style.css | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++- cvs.php | 1 + documentation.php | 1 + downloads.php | 1 + faq.php | 1 + header.php | 2 +- incl/header.php | 38 +++++++++++++++++----------- incl/javascript.php | 35 ++++++++++++++++++++++++++ index.php | 1 + irc.php | 1 + listserv.php | 1 + mission.php | 1 + roadmap.php | 1 + 16 files changed, 210 insertions(+), 19 deletions(-) create mode 100755 communicate.php create mode 100644 incl/javascript.php diff --git a/about.php b/about.php index caf9a1b..848e6f2 100644 --- a/about.php +++ b/about.php @@ -4,6 +4,7 @@ About Evergreen software and its community +
diff --git a/code_museum.php b/code_museum.php index fe44a6c..3d138f1 100644 --- a/code_museum.php +++ b/code_museum.php @@ -2,8 +2,9 @@ - Open-ILS.org | Code Museum. - + Code Museum for the Evergreen project + +
diff --git a/communicate.php b/communicate.php new file mode 100755 index 0000000..74a6021 --- /dev/null +++ b/communicate.php @@ -0,0 +1,67 @@ + + + + + Communicate: Evergreen open source library system + + + + +
+ + + + + +
+

Communicate with us

+ +

We invite you to join us in the many different forums in which we discuss +the Evergreen project!

+ + +

Mailing lists

+

Most of the day-to-day conversations are held on mailing lists. These mailing lists are open to anyone +with an email account. In addition, archives that provide much of the history +of the project are readily available.

+ + +

Internet Relay Chat

+

Some members of the Evergreen community use the immediate mode of +conversation that Internet Relay Chat (IRC) offers. You +can find us on the #evergreen channel on the Freenode server. Archives of the +IRC channel are also available.

+ + +

Event Calendar

+

+The Event +Calendar provides a single view of all of the meetings of the various +committees and working groups in the Evergreen community. Most of these +meetings are open to any interested members of the community; volunteers are +always welcome! +

+ + +

Official blog

+

+The official blog offers news and +insight on the Evergreen project. +

+ + +

Community blogs

+

+The Planet Evergreen blog +aggregator pulls together all of the recent posts from each of the known blogs +about Evergreen into one convenient package. +

+ +
+ + +
+ + diff --git a/css/style.css b/css/style.css index aad5ae8..2df2e55 100644 --- a/css/style.css +++ b/css/style.css @@ -207,13 +207,14 @@ padding: 20px 0 10px 17px; } #subhead { +width: 100%; margin: 0; padding: 3px 0 8px 0; background: #F5AE61 url('/img/subheadfade2.gif') bottom repeat-x; } #subhead a:link, #subhead a:visited { -text-align:center; +text-align:left; margin: 0; text-decoration:none; padding: 3px 20px 8px 5px; @@ -322,3 +323,72 @@ html>#wrap { #wrap.wide { background: #fff; } + +/* Adapted from http://www.spiffyjr.me/2010/03/02/creating-fancy-drop-down-menus-with-html-css-and-dojo/ */ +ul#subhead { + display: table; + list-style-type: none; + margin: 0; + padding: 0; + position: relative; +} + +ul#subhead li { + cursor: pointer; + list-style: none; + display: table-cell; + float: left; + position: relative; + text-shadow: 0px 0px 1px #fff; + background: #F5AE61 url('/img/subheadfade2.gif') bottom repeat-x; +} + +ul#subhead li a,#subhead li div { + color: #154f14; + padding: 5px 12px; +} + +ul#subhead img { + margin-right: 3px; + vertical-align: top; +} + +ul#subhead a { + position: relative; + display: block; +} + +ul#subhead ul.dropmenu { + background: #f5faf5; + border: 1px solid #BBCFBB; + margin: 0; + padding: 0; + position: absolute; + z-index: 999; + top: 24px; + left: -999em; + height: 1px; + display: block; +} + +ul#subhead ul.dropmenu li { + margin: 0; + padding: 0; + list-style: none; + width: 145px; +} + +ul#subhead ul.dropmenu li:hover { + opacity: 1; +} + +ul#subhead ul.dropmenu li a { + display: block; + padding: 6px 14px; + text-shadow: 0px 0px 1px #fff; + text-align: left; +} + +ul#subhead ul.dropmenu li a:hover { + text-decoration: none; +} diff --git a/cvs.php b/cvs.php index 3bcbeef..e424ac2 100644 --- a/cvs.php +++ b/cvs.php @@ -4,6 +4,7 @@ Downloads: Evergreen open source library system +
diff --git a/documentation.php b/documentation.php index 3e62aad..c4b820c 100755 --- a/documentation.php +++ b/documentation.php @@ -4,6 +4,7 @@ Documentation: Evergreen open source library system +
diff --git a/downloads.php b/downloads.php index 54ddde0..8a92fab 100644 --- a/downloads.php +++ b/downloads.php @@ -4,6 +4,7 @@ Downloads: Evergreen open source library system +
diff --git a/faq.php b/faq.php index ed3c342..cf642e7 100755 --- a/faq.php +++ b/faq.php @@ -5,6 +5,7 @@ Frequently Asked Questions: Evergreen open source library system +
diff --git a/header.php b/header.php index ed8d71c..07c575a 100755 --- a/header.php +++ b/header.php @@ -15,4 +15,4 @@ Download Bugzilla Mailing Lists -
\ No newline at end of file +
diff --git a/incl/header.php b/incl/header.php index b118acd..a026634 100644 --- a/incl/header.php +++ b/incl/header.php @@ -1,19 +1,27 @@
-Open Source Integrated Library System -
- + - diff --git a/incl/javascript.php b/incl/javascript.php new file mode 100644 index 0000000..9bc99a9 --- /dev/null +++ b/incl/javascript.php @@ -0,0 +1,35 @@ + + + diff --git a/index.php b/index.php index 99aab31..5119972 100755 --- a/index.php +++ b/index.php @@ -4,6 +4,7 @@ Welcome: Evergreen open source library system +
diff --git a/irc.php b/irc.php index 6f7d8da..9cceca8 100755 --- a/irc.php +++ b/irc.php @@ -4,6 +4,7 @@ Chat online: Evergreen open source library system +
diff --git a/listserv.php b/listserv.php index 7e47266..a5d1d11 100755 --- a/listserv.php +++ b/listserv.php @@ -4,6 +4,7 @@ Mailing lists: Evergreen open source library system +
diff --git a/mission.php b/mission.php index 91f9df9..b47df52 100755 --- a/mission.php +++ b/mission.php @@ -4,6 +4,7 @@ Mission statement: Evergreen open source library system +
diff --git a/roadmap.php b/roadmap.php index dc466e0..8bcfc8c 100755 --- a/roadmap.php +++ b/roadmap.php @@ -4,6 +4,7 @@ Development roadmap: Evergreen open source library system +
-- 2.11.0