diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern.py b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern.py
new file mode 100755
index 0000000..1753a21
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern.py
@@ -0,0 +1,291 @@
+# -*- coding: iso-8859-1 -*-
+"""
+ MoinMoin - Modern Theme
+
+ Created for the CentOS Project Wiki. This is a
+ modification of the MoinMoin's modern default
+ wiki theme, and a continuation of previous
+ modern-CentOS theme.
+
+ @copyright: 2008 by The CentOS ArtWork SIG.
+ @license: GNU GPL, see COPYING for details.
+"""
+
+from MoinMoin.theme import ThemeBase
+from MoinMoin import wikiutil
+
+class Theme(ThemeBase):
+
+ name = "Modern"
+
+ def header(self, d):
+ """
+ Assemble page header
+
+ @param d: parameter dictionary
+ @rtype: string
+ @return: page header html
+ """
+
+ html = [
+
+ # Header
+ u'
',
+ u'',
+
+ # Page
+ self.msg(d),
+ self.startPage(),
+ ]
+ return u'\n'.join(html)
+
+ def editorheader(self, d):
+ """
+ Assemble page header for editor
+
+ @param d: parameter dictionary
+ @rtype: string
+ @return: page header html
+ """
+
+ html = [
+ # Custom html above header
+ #self.emit_custom_html(self.cfg.page_header1),
+
+ # Header
+ u'',
+
+ # Custom html below header (not recomended!)
+ # self.emit_custom_html(self.cfg.page_header2),
+
+ # Page
+ self.msg(d),
+ u'
',
+ self.title(d),
+ u'
',
+ self.startPage(),
+ ]
+ return u'\n'.join(html)
+
+ def footer(self, d, **keywords):
+ """ Assemble wiki footer
+
+ @param d: parameter dictionary
+ @keyword ...:...
+ @rtype: unicode
+ @return: page footer html
+ """
+ page = d['page']
+ html = [
+ # End of page
+ self.pageinfo(page),
+ self.endPage(),
+
+ # Pre footer custom html (not recommended!)
+ # self.emit_custom_html(self.cfg.page_footer1),
+
+ # Footer
+ u'',
+ u'
',
+
+ # Post footer custom html
+ # self.emit_custom_html(self.cfg.page_footer2),
+ ]
+ return u'\n'.join(html)
+
+ def errormsg(self, d):
+ """Assemble HTML code for CentOS Identification
+
+ @rtype: unicode
+ @return: CentOS Global Identification
+ """
+ html = [
+ u'',
+ u'
',
+ u'
',
+ self.username(d),
+ self.searchform(d),
+ u'
',
+ u'
Wiki
',
+ self.navibar(d),
+ self.editbar(d),
+ self.interwiki(d),
+ self.trail(d),
+ self.title(d),
+ u'
',
+ ]
+ return u'\n'.join(html)
+
+ def credits(self, d):
+ """Assemble HTML code for the credits.
+
+ @rtype: unicode
+ @return: Creative Common Reference
+ """
+
+ html = u'''
+
+''' % d
+ return html
+
+ def searchform(self, d):
+ """
+ assemble HTML code for the search forms
+
+ @param d: parameter dictionary
+ @rtype: unicode
+ @return: search form html
+ """
+ _ = self.request.getText
+ form = self.request.form
+ updates = {
+ 'search_label' : _('Search:'),
+ 'search_value': wikiutil.escape(form.get('value', [''])[0], 1),
+ 'search_full_label' : _('Text', formatted=False),
+ 'search_title_label' : _('Titles', formatted=False),
+ }
+ d.update(updates)
+
+ html = u'''
+
+
+
+
+
+''' % d
+ return html
+
+# The following code make the navibar visible to users with
+# write access right ONLY!.
+
+ def shouldShowEditbar(self, page):
+ """ Hide the edit bar if you can't edit """
+ if self.request.user.may.write(page.page_name):
+ return ThemeBase.shouldShowEditbar(self, page)
+ return False
+
+# The follwing code is just to use class instead of id in
+# the navibar element. It is not recommended by CCS v2.1
+# standard the use of two equals id elements on the same
+# page.
+
+ def navibar(self, d):
+ """ Assemble the navibar
+
+ @param d: parameter dictionary
+ @rtype: unicode
+ @return: navibar html
+ """
+ request = self.request
+ found = {} # pages we found. prevent duplicates
+ items = [] # navibar items
+ item = u'%s'
+ current = d['page_name']
+
+ # Process config navi_bar
+ if request.cfg.navi_bar:
+ for text in request.cfg.navi_bar:
+ pagename, link = self.splitNavilink(text)
+ if pagename == current:
+ cls = 'wikilink current'
+ else:
+ cls = 'wikilink'
+ items.append(item % (cls, link))
+ found[pagename] = 1
+
+ # Add user links to wiki links, eliminating duplicates.
+ userlinks = request.user.getQuickLinks()
+ for text in userlinks:
+ # Split text without localization, user knows what he wants
+ pagename, link = self.splitNavilink(text, localize=0)
+ if not pagename in found:
+ if pagename == current:
+ cls = 'userlink current'
+ else:
+ cls = 'userlink'
+ items.append(item % (cls, link))
+ found[pagename] = 1
+
+ # Add current page at end
+ if not current in found:
+ title = d['page'].split_title(request)
+ title = self.shortenPagename(title)
+ link = d['page'].link_to(request, title)
+ cls = 'current'
+ items.append(item % (cls, link))
+
+ # Assemble html
+ items = u''.join(items)
+ html = u'''
+
+''' % items
+ return html
+
+def execute(request):
+ """ Generate and return a theme object
+
+ @param request: the request object
+ @rtype: MoinTheme
+ @return: Theme object
+ """
+ return Theme(request)
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/common.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/common.css
new file mode 100755
index 0000000..6416aab
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/common.css
@@ -0,0 +1,781 @@
+/* CentOS Cascading Style Sheet
+ * -----------------------------------------------
+ * File : common.css
+ * Category : root / common
+ * Theme : Modern
+ * Description : CSS definitions used to build the CentOS common
+ * visual style.
+ * -----------------------------------------------
+ * Author : CentOS Artwork SIG
+ * License : GPL (http://www.fsf.org/licensing/licenses/gpl.txt)
+ * -----------------------------------------------
+ */
+
+
+/* Reset browsers default margins and paddings
+-----------------------------------------------*/
+* {
+ margin: 0;
+ padding: 0;
+ }
+
+/* Define html
+-----------------------------------------------*/
+
+html {
+ background-color: #FFF;
+ background-image: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/html-bg.png);
+ }
+
+/* Define body
+-----------------------------------------------*/
+
+body {
+ font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
+ font-size: 0.85em;
+ line-height: 1.25em;
+ /* margin: 0; /* <- full screen */
+ /* margin: 0 1% 0 1%; /* <- with 1% of left and right margin */
+ /* margin: 0 2% 0 2%; /* <- with 2% of left and right margin */
+ margin: 0 3% 0 3%; /* <- with 3% of left and right margin */
+ /* margin: 0 10% 0 10%; /* <- with 10% of left and right margin */
+ }
+
+/* Main Blocks
+-----------------------------------------------*/
+
+div#page-header {
+ background: #204C8D url("/home/centos/artwork/trunk/Identity/Themes/Motifs/TreeFlower/Backgrounds/Img/1024x250.jpg") 0 0;
+ min-height: 85px;
+ }
+
+div#page-footer {
+ background: #204C8D url("/home/centos/artwork/trunk/Identity/Themes/Motifs/TreeFlower/Backgrounds/Img/1024x250.jpg") 0 0;
+ min-height: 85px;
+ }
+
+div#wrap {
+ padding: 0 10px 0 10px;
+ border-top: 2px solid #FFF;
+ border-bottom: 2px solid #FFF;
+ background: #FFF;
+ }
+
+div#page-body {
+ padding: 20px;
+ padding-top: 0;
+ clear: both;
+ }
+
+div#page-info {
+ /* Holds information about the page. */
+ text-align: right;
+ font-size: x-small;
+ color: #AAA;
+ margin-top: 1.5em;
+ margin-bottom: 1.5em;
+ margin-right: 20px;
+ }
+
+div#page-header div.links,
+div#page-footer div.links {
+ /* Holds web environment navigation tabs, and user
+ * related links */
+ float: right;
+ }
+
+div#page-header div.links div.user,
+div#page-header div.links div.trail {
+ display: block;
+ margin: 0px;
+ font-size: x-small;
+ text-align: right;
+ color: #fff;
+ padding-right: 10px;
+ }
+
+div#page-header div.admin,
+div#page-footer div.admin {
+ background-color: #EFF5FE;
+ padding: 3px;
+ padding-left: 20px;
+ font-size: small;
+ }
+
+div#page-header div.admin {
+ border-bottom: 2px dotted #628ECA;
+ border-top: 1px solid #D6D6D6;
+ }
+
+div#page-footer div.admin {
+ border-bottom: 1px solid #D6D6D6;
+ border-top: 2px dotted #628ECA;
+ }
+
+div#page-footer div.lisence {
+ color: #FFF;
+ font-size: x-small;
+ padding: 10px;
+ padding-bottom: 0;
+ padding-top: 1.5em;
+ }
+
+div#page-footer div.credits {
+ /* Holds page credits */
+ color: #FFF;
+ font-size: x-small;
+ padding: 10px;
+ }
+
+/* Logo
+-----------------------------------------------*/
+
+div#page-header div#logo img {
+ border: none;
+ float: left;
+ margin: 10px;
+ }
+
+/* Links
+-----------------------------------------------*/
+
+/* Base */
+
+a:link { text-decoration: none; color: #0044B3; }
+a:hover { text-decoration: underline; color: green; }
+a:active { text-decoration: underline; color: green; }
+a:visited { text-decoration: none; color: #0044B3; }
+a:visited:hover { text-decoration: underline; color: green; }
+
+/* Broken or nonexistent links */
+
+div#page-body a.nonexistent,
+div#page-body a.nonexistent:hover { color: gray; }
+
+/* Special decoration for some links' classes */
+
+div#page-body a.www:before {
+ white-space:nowrap;
+ content: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/www.png);
+ margin: 0 0.2em;
+ }
+
+div#page-body a.http:before {
+ white-space:nowrap;
+ content: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/www.png);
+ margin: 0 0.2em;
+ }
+
+div#page-body a.https:before {
+ white-space:nowrap;
+ content: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/www.png);
+ margin: 0 0.2em;
+ }
+
+div#page-body a.mailto:before {
+ white-space:nowrap;
+ content: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/email.png);
+ margin: 0 0.2em;
+ }
+
+div#page-body a.attachment:before {
+ white-space:nowrap;
+ content: url(/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/attach.png);
+ margin: 0 0.2em;
+ }
+
+/* Headings */
+
+div#page-body h1 a:link { text-decoration: none; color: #FFF }
+div#page-body h1 a:hover { text-decoration: none; color: #FFF; }
+div#page-body h1 a:active { text-decoration: underline; color: #FFF; }
+div#page-body h1 a:visited { text-decoration: none; color: #FFF; }
+div#page-body h1 a:visited:hover { text-decoration: none; color: #FFF; }
+
+div#page-body h2 a:link, div#page-body h2 a:visited, div#page-body h2 a:hover,
+div#page-body h2 a:active, div#page-body h2 a:visited:hover,
+div#page-body h3 a:link, div#page-body h3 a:visited, div#page-body h3 a:hover,
+div#page-body h3 a:active, div#page-body h3 a:visited:hover,
+div#page-body h4 a:link, div#page-body h4 a:visited, div#page-body h4 a:hover,
+div#page-body h4 a:active, div#page-body h4 a:visited:hover,
+div#page-body h5 a:link, div#page-body h5 a:visited, div#page-body h5 a:hover,
+div#page-body h5 a:active, div#page-body h5 a:visited:hover,
+div#page-body h6 a:link, div#page-body h6 a:visited, div#page-body h6 a:hover,
+div#page-body h6 a:active, div#page-body h6 a:visited:hover {
+ color: #072B61;
+ text-decoration: none;
+ }
+
+/* */
+
+div#page-header div.links div.user a,
+div#page-header div.links div.trail a {
+ color: #FFF;
+ }
+
+div#page-header div.links div.user a,
+div#page-header div.admin a,
+div#page-footer div.admin a {
+ margin-right: 10px;
+ margin-left: 6px;
+ }
+
+div#page-footer div.lisence a,
+div#page-footer div.credits a {
+ color: #FFF;
+ font-style: italic;
+ }
+
+/* Headings
+-----------------------------------------------*/
+
+div#page-body h1 {
+ font-size: 1.7em;
+ font-weight: bold;
+ line-height: 1.9em;
+ margin-top: 0.9em;
+ margin-bottom: 0.9em;
+ padding-left: 0.7em;
+ color: #FFF;
+ border: none;
+ background: #204C8D url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/h1-bg.png");
+ }
+
+div#page-body h2 {
+ font-size: 1.4em;
+ line-height: 1.8em;
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ padding-left: 0.7em;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/h2-bg.png");
+ border: none;
+ color: #072B61;
+ }
+
+div#page-body h3 {
+ font-size: 1.25em;
+ line-height: 1.6em;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ padding-left: 0.7em;
+ color: #072B61;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: #DADADA;
+ }
+
+div#page-body h4 {
+ font-size: 1.2em;
+ line-height: 1.4em;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ padding-left: 0.7em;
+ color: #072B61;
+ border-bottom: none;
+ }
+
+div#page-body h5 {
+ font-size: 1.1em;
+ line-height: 1.1em;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ padding-left: 0.7em;
+ color: #072B61;
+ font-weight: bold;
+ border-bottom: none;
+ }
+
+div#page-body h6 {
+ font-size: 1em;
+ line-height: 1.1em;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ padding-left: 0.7em;
+ color: #072B61;
+ font-weight: bold;
+ border-bottom: none;
+ }
+
+/* Paragraphs
+-----------------------------------------------*/
+
+div#page-body p {
+ margin: 1em;
+ margin-left: 1.5em;
+ line-height: 1.5em;
+ }
+
+/* Quotations
+-----------------------------------------------*/
+
+div#page-body blockquote {
+ background-color: #ECECEC;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-gray.png");
+ border-width: 1px;
+ border-style: solid;
+ border-color: #CFCFCF;
+ border-left-width: 4px;
+ margin: 1em;
+ }
+
+div#page-body blockquote p {
+ margin: 1em;
+ }
+
+div#page-body blockquote.message {
+ border: none;
+ border-top: 4px solid;
+ border-bottom: 4px solid;
+ margin-left: 15%;
+ margin-right: 15%;
+ border-color: #CFCFCF;
+ padding: 0 2em;
+ }
+
+div#page-body blockquote.message p.content {
+ font-weight: bold;
+ margin-left: 0;
+ }
+
+div#page-body blockquote.message p.links {
+ font-size: x-small;
+ margin-left: 0;
+ }
+
+div#page-body blockquote.blue {
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-blue.png");
+ border-color: #D2E0F6;
+ background-color: #ECF4FF;
+ }
+
+div#page-body blockquote.orange {
+ border-color: #F6E7D2;
+ background-color: #FFF8EC;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-orange.png");
+ }
+
+div#page-body blockquote.violet {
+ border-color: #F6D2F6;
+ background-color: #FFECFF;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-violet.png");
+ }
+
+div#page-body blockquote.red {
+ border-color: #E0B7B7;
+ background-color: #FFECEC;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-red.png");
+ }
+
+div#page-body blockquote.green {
+ border-color: #D6F6D2;
+ background-color: #EEFFEC;
+ background-image: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/msg-bg-green.png");
+ }
+
+div#page-body blockquote img {
+ vertical-align: middle;
+ margin-right: 20px;
+ }
+
+div#page-body q:before {
+ content: " “";
+ }
+
+div#page-body q:after {
+ content: "” ";
+ }
+
+div#page-body q q:before {
+ content: " ‘";
+ }
+
+div#page-body q q:after {
+ content: "’ ";
+ }
+
+div#page-body address {
+ margin-left: 1.5em;
+ }
+
+/* Preformatted Texts
+-----------------------------------------------*/
+
+div#page-body pre {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ padding: 0.5em 1em;
+ margin: 0.5em 0 0.5em 1.5em;
+ white-space: pre;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #E5E5E5;
+ border-left-width: 4px;
+ white-space: pre;
+ background: #FFFAE9;
+ overflow: auto;
+ }
+
+/* Phrase Elements
+-----------------------------------------------*/
+
+div#page-body tt,
+div#page-body samp,
+div#page-body kbd,
+div#page-body code {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ }
+
+/* Page Lines
+-----------------------------------------------*/
+
+div.page-line {
+ clear: both;
+ margin: 0;
+ padding: 0;
+ background-color: transparent;
+ }
+
+div.page-line.blue {
+ height: 5px;
+ background-color: #628ECA;
+ }
+
+/* Lists
+-----------------------------------------------*/
+
+div#page-body ul,
+div#page-body ol {
+ margin: 1em;
+ padding: 1em;
+ padding-left: 1.9em;
+ margin-left: 3em;
+ margin-bottom: 0.3em;
+ }
+
+div#page-body ul {
+ list-style:
+ url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/ul.png") circle;
+ }
+
+div#page-body ol {
+ list-style-image: none !important;
+ }
+
+div#page-body ul li,
+div#page-body ol li {
+ padding-left: 0;
+ margin-bottom: 0.3em;
+ }
+
+div#page-body ul ul,
+div#page-body ul ol,
+div#page-body ol ul,
+div#page-body ol ol {
+ margin-left: 0.5em;
+ margin-top: 0.3em;
+ }
+
+div#page-body ul li p,
+div#page-body ol li p {
+ margin-bottom: 0.3em;
+ line-height: 1.5em;
+ margin-left: 0 !important;
+ }
+
+/* */
+
+div#page-location {
+ margin: 1em 1em 0 1.5em;
+ }
+
+div#page-location span:after {
+ content: " » ";
+ }
+
+div#page-location span.last:after {
+ content: none;
+ }
+
+/* */
+
+div#page-body dl {
+ margin: 1em 1em 0.3em 3em;
+ padding: 1em 1em 1em 0;
+ }
+
+div#page-body dl dt {
+ font-weight: bold;
+ }
+
+div#page-body dl dt:after {
+ content: ": "
+ }
+
+div#page-body dl dd {
+ margin-left: 2em;
+ margin-bottom: 1em;
+ line-height: 1.5em;
+ }
+
+div#page-body dl dd ul,
+div#page-body dl dd ol {
+ margin: 0;
+ padding-bottom: 0;
+ }
+
+/**/
+
+div#page-header div.links div.user span,
+div#page-header div.links div.trail span {
+ display: inline;
+ }
+
+div#page-header div.links div.user span.last {
+ border-right: none;
+ padding-right: 0;
+ }
+
+div#page-header div.links div.user span.last a {
+ margin-right: 0;
+ }
+
+div#page-header div.links div.trail span:after {
+ content: " » ";
+ }
+
+div#page-header div.links div.trail span.last:after {
+ content: none;
+ }
+
+div#page-header div.links div.user span {
+ border-right: 1px dotted #FFF;
+ }
+
+div#page-header div.admin span,
+div#page-footer div.admin span {
+ border-right: 1px dotted #628ECA;
+ display: inline;
+ }
+
+div#page-header div.admin span.last,
+div#page-footer div.admin span.last {
+ border-right: none;
+ padding-right: 0;
+ }
+
+/* Tables
+-----------------------------------------------*/
+
+div#page-body table {
+ margin: 0;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+ margin-left: 1.5em;
+ border-collapse: collapse;
+ }
+
+div#page-body table caption {
+ font-style: italic;
+ text-align: center;
+ }
+
+div#page-body table tr th {
+ font-weight: bold;
+ }
+
+div#page-body table tr td,
+div#page-body table tr th {
+ border: 1pt;
+ border-style: solid;
+ border-color: #CCC;
+ padding-top: 0.25em;
+ padding-right: 0.5em;
+ padding-bottom: 0.25em;
+ padding-left: 0.5em;
+ }
+
+div#page-body table tr td p {
+ margin: 0;
+ padding: 0;
+ }
+
+/* Forms
+-----------------------------------------------*/
+
+form {
+ display: inline;
+ }
+
+input[type="submit"],
+input[type="button"] {
+ padding: 1px;
+ }
+
+div#page-header div.search p {
+ text-align: right;
+ }
+
+div#page-header div.admin input[type="submit"],
+div#page-header div.admin input[type="button"],
+div#page-header div.search input[type="button"],
+div#page-header div.search input[type="submit"] {
+ font-size: 0.8em;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #628ECA;
+ background-color: #204a87;
+ color: #FFF;
+ cursor: pointer;
+ display: inline;
+ text-decoration: none;
+ }
+
+div#page-header div.search input[type="text"],
+div#page-header div.search textarea {
+ font-size: 0.8em;
+ display: inline;
+ padding: 2px;
+ padding-left: 4px;
+ border: 1px solid #628ECA;
+ background-color: #EFF5FE;
+ color: #204a87;
+ }
+
+div#page-header div.admin select {
+ font-size: 0.8em;
+ display: inline;
+ padding: 1px;
+ border: 1px solid #628ECA;
+ background-color: #FFF;
+ color: #204a87;
+ }
+
+div#page-header div.search select {
+ font-size: 0.8em;
+ display: inline;
+ padding: 1px;
+ border: 1px solid #628ECA;
+ background-color: #EFF5FE;
+ color: #204a87;
+ }
+
+div#page-header div.search {
+ margin: 5px;
+ margin-right: 10px;
+ margin-top: 10px;
+ }
+
+div#page-header div.admin form p {
+ display: inline;
+ margin-left: 5px;
+ margin-right: 5px;
+ }
+
+div#page-body textarea {
+ padding: 2px;
+ }
+
+div#page-body input[type="text"] {
+ padding: 1px;
+ }
+
+/* Select
+---------------------------------------- */
+
+div#page-header div.links select option,
+div#page-body select option {
+ padding-left: 3px;
+ padding-right: 3px;
+ }
+
+div#page-header div.links select optgroup,
+div#page-body select optgroup {
+ font-style: normal;
+ font-weight: bold;
+ padding-left: 3px;
+ }
+
+div#page-header div.links select optgroup option,
+div#page-body select optgroup option {
+ margin-left: 1em;
+ }
+
+div#page-body input[type="radio"],
+div#page-body input[type="checkbox"] {
+ vertical-align: middle;
+ }
+
+div#page-body fieldset {
+ margin: 1em;
+ padding: 1em;
+ padding-bottom: 5px;
+ margin-left: 1.5em;
+ border: 1px solid #AAA;
+ }
+
+div#page-body fieldset legend {
+ font-weight: bold;
+ color: #AAA;
+ }
+
+div#page-body div.row1 {
+ clear: both;
+ background: #F8F8F8;
+ padding: 10px;
+ }
+
+div#page-body div.row2 {
+ clear: both;
+ background: #FFFFFF;
+ padding: 10px;
+ }
+
+div#page-body div.row3 {
+ clear: both;
+ border-top: 1px solid #CCC;
+ padding: 10px;
+ margin-top: 10px;
+ }
+
+div#page-body fieldset div.row1 span.descrip,
+div#page-body fieldset div.row2 span.descrip {
+ float: left;
+ }
+
+div#page-body fieldset div.field {
+ display: block;
+ margin-left: 30%;
+ }
+
+div#page-body fieldset div.field div.column {
+ float: left;
+ margin-right: 1em;
+ padding-right: 1em;
+ border-right: 1px dotted #AAA;
+ }
+
+div#page-body fieldset div.row3 div.descrip {
+ display: block;
+ font-size: small;
+ color: #AAA;
+ font-style: italic;
+ width: 70%
+ }
+
+div#page-body fieldset span.submit {
+ float: right;
+ }
+
+/* */
+
+div#page-body div.actions p {
+ display: inline;
+ margin: 0;
+ padding: 0 10px;
+ border-right: 1px dotted #AAA;
+ font-size: small;
+ color: #AAA;
+ }
+
+div#page-body div.actions p.last {
+ border-right: none;
+ }
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/print.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/print.css
new file mode 100755
index 0000000..880e1d8
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/print.css
@@ -0,0 +1,285 @@
+/* CentOS Cascading Style Sheet
+ * -----------------------------------------------
+ * File : print.css
+ * Category : root / common
+ * Theme : Modern
+ * Description : CSS definitions used to build the CentOS common
+ * visual style in printer medias.
+ * -----------------------------------------------
+ * Author : CentOS Artwork SIG
+ * License : GPL (http://www.fsf.org/licensing/licenses/gpl.txt)
+ * -----------------------------------------------
+ */
+
+
+/* Reset browsers default margins and paddings
+-----------------------------------------------*/
+
+* { margin: 0; padding: 0; }
+
+/* Define html
+-----------------------------------------------*/
+
+html { background-color: #FFF; }
+
+/* Define body
+-----------------------------------------------*/
+
+body { font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
+ font-size: 0.85em; }
+
+/* Main Blocks
+-----------------------------------------------*/
+
+div#page-header,
+div#page-location,
+div#page-body div.actions,
+div#page-body div.tabs3,
+div#page-footer {
+ /* Hide everything that is not content */
+ display: none;
+ }
+
+div#wrap {
+ background: #FFF;
+ }
+
+div#page-body {
+ padding: 20px;
+ clear: both;
+ }
+
+div#page-info {
+ /* Holds information about the page. */
+ text-align: right;
+ font-style: italic;
+ font-size: small;
+ }
+
+/* Links
+-----------------------------------------------*/
+
+a:link, a:visited, a:active, a:hover {
+ text-decoration: underline;
+ color: #666;
+ background: none;
+ }
+
+
+/* Headings
+-----------------------------------------------*/
+
+div#page-body h1 {
+ margin-top: 0.9em;
+ margin-bottom: 0.9em;
+ }
+
+div#page-body h2 {
+ margin-top: 1.6em;
+ margin-bottom: 0.8em;
+ }
+
+div#page-body h3 {
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ }
+
+div#page-body h4 {
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ }
+
+div#page-body h5 {
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ }
+
+div#page-body h6 {
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ }
+
+/* Paragraphs
+-----------------------------------------------*/
+
+div#page-body p {
+ margin: 1em;
+ margin-left: 0;
+ line-height: 1.5em;
+ }
+
+div#page-body blockquote p {
+ margin-left: 1.5em;;
+}
+
+/* Quotations
+-----------------------------------------------*/
+
+div#page-body blockquote {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #CFCFCF;
+ border-left-width: 4px;
+ padding: 0;
+ margin: 1em;
+ margin-left: 2em;
+ }
+
+div#page-body blockquote img {
+ vertical-align: middle;
+ margin-right: 20px;
+ }
+
+div#page-body q:before {
+ content: " “";
+}
+
+div#page-body q:after {
+ content: "” ";
+}
+
+div#page-body q q:before {
+ content: " ‘";
+}
+
+div#page-body q q:after {
+ content: "’ ";
+}
+
+/* Preformatted Texts
+-----------------------------------------------*/
+
+div#page-body pre {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ padding: 0.5em 1em;
+ margin: 0.5em 0 0.5em 0;
+ white-space: pre;
+ border-width: 1px;
+ border-style: dashed;
+ border-color: #CCC;
+ white-space: pre;
+ overflow: auto;
+ }
+
+/* Phrase Elements
+-----------------------------------------------*/
+
+div#page-body tt,
+div#page-body samp,
+div#page-body kbd,
+div#page-body code {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ }
+
+/* Page Lines
+-----------------------------------------------*/
+
+div.page-line {
+ clear: both;
+ margin: 0;
+ padding: 0;
+ background-color: transparent;
+ }
+
+/* Lists
+-----------------------------------------------*/
+
+div#page-body ul,
+div#page-body ol {
+ margin: 1em;
+ padding: 1em;
+ padding-left: 1.9em;
+ margin-left: 3em;
+ margin-bottom: 0.3em;
+ }
+
+div#page-body ul {
+ list-style: disc;
+ }
+
+div#page-body ol {
+ list-style-image: none !important;
+ }
+
+div#page-body ul li,
+div#page-body ol li {
+ padding-left: 0em;
+ margin-bottom: 0.3em;
+ }
+
+div#page-body ul ul,
+div#page-body ul ol,
+div#page-body ol ul,
+div#page-body ol ol {
+ margin-left: 0.5em;
+ margin-top: 0.3em;
+ }
+
+div#page-body ul li p,
+div#page-body ol li p {
+ margin-bottom: 0.3em;
+ line-height: 1.5em;
+ margin-left: 0 !important;
+ }
+
+/* */
+
+div#page-body dl {
+ margin: 1em 1em 0.3em 3em;
+ padding: 1em 1em 1em 0;
+ }
+
+div#page-body dl dt {
+ font-weight: bold;
+ }
+
+div#page-body dl dt:after {
+ content: ": "
+ }
+
+div#page-body dl dd {
+ margin-left: 2em;
+ margin-bottom: 1em;
+ line-height: 1.5em;
+ }
+
+div#page-body dl dd ul,
+div#page-body dl dd ol {
+ margin: 0;
+ padding-bottom: 0;
+}
+
+/* Tables
+-----------------------------------------------*/
+
+div#page-body table {
+ margin: 0;
+ margin-top: 0.5em;
+ margin-left: 1.5em;
+ border-collapse: collapse;
+ }
+
+div#page-body table caption {
+ font-style: italic;
+ text-align: center;
+}
+
+div#page-body table tr th {
+ font-weight: bold;
+}
+
+div#page-body table tr td,
+div#page-body table tr th {
+ border: 1pt;
+ border-style: solid;
+ border-color: #CCC;
+ padding-top: 0.25em;
+ padding-right: 0.5em;
+ padding-bottom: 0.25em;
+ padding-left: 0.5em;
+ }
+
+div#page-body table tr td p {
+ margin: 0;
+ padding: 0;
+ }
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/stylesheet.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/stylesheet.css
new file mode 100644
index 0000000..2cf630c
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/stylesheet.css
@@ -0,0 +1,40 @@
+/* CentOS Cascading Style Sheet
+ * -----------------------------------------------
+ * File : stylesheet.css
+ * Category : root
+ * Theme : Modern
+ * Description : This is the main CentOS Web Visual Style definition.
+ * CSS defined here are common for the whole CentOS Web
+ * Environment.
+ *
+ * Specific CSS definitions, like those used in
+ * specific web applications, are declared using the
+ * HTML link element in the head section of the
+ * specific web application who needs it. Specific CSS
+ * definitions extend CentOS common CSS definition.
+ * Specific CSS definitions do not overlap CentOS
+ * common CSS definitions. For more information visit:
+ * http://wiki.centos.org/WebsiteVer2/WebEnvironment/VisualStyle/Default
+ * -----------------------------------------------
+ * Author : CentOS Artwork SIG
+ * License : GPL (http://www.fsf.org/licensing/licenses/gpl.txt)
+ * -----------------------------------------------
+ */
+
+
+/* Common:
+ *
+ * CSS definitions used to build the base CentOS Web Visual Style. It
+ * should always be loaded in first place.
+ */
+
+@import url("/home/centos/artwork/trunk/Identity/Models/Css/Moin/common.css") screen, projection;
+@import url("/home/centos/artwork/trunk/Identity/Models/Css/Moin/print.css") print;
+
+/* Miscellaneous:
+ *
+ * CSS definitions used to build visual effects. New definitions may
+ * be added as time goes by.
+ */
+
+@import url("/home/centos/artwork/trunk/Identity/Models/Css/Moin/tabs.css") screen, projection;
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/tabs.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/tabs.css
new file mode 100644
index 0000000..cd996a8
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css-test/tabs.css
@@ -0,0 +1,354 @@
+/* CentOS Cascading Style Sheet
+ * -----------------------------------------------
+ * File : tabs.css
+ * Category : root / common / miscellaneous
+ * Theme : Modern
+ * Description : CSS definitions used to build the CentOS common
+ * visual style for tabs.
+ * -----------------------------------------------
+ * Author : CentOS Artwork SIG
+ * License : GPL (http://www.fsf.org/licensing/licenses/gpl.txt)
+ * -----------------------------------------------
+ */
+
+
+/* Tabs (Style 1): Two Rounded Borders
+-----------------------------------------------*/
+
+div#page-header div.tabs1 a:link,
+div#page-footer div.tabs1 a:link {
+ text-decoration: none;
+ color: #FFF;
+ }
+
+div#page-header div.tabs1 a:hover,
+div#page-footer div.tabs1 a:hover {
+ text-decoration: underline;
+ color: #FFF;
+ }
+
+div#page-header div.tabs1 a:active,
+div#page-footer div.tabs1 a:active {
+ text-decoration: none;
+ color: #FFF; }
+
+div#page-header div.tabs1 a:visited,
+div#page-footer div.tabs1 a:visited {
+ text-decoration: none;
+ color: #FFF;
+ }
+
+div#page-header div.tabs1 a:visited:hover,
+div#page-footer div.tabs1 a:visited:hover {
+ text-decoration: underline;
+ color: #FFF;
+ }
+
+div#page-header div.tabs1,
+div#page-footer div.tabs1 {
+ margin: 0;
+ padding: 0;
+ float: right;
+ margin-right: 5px;
+ }
+
+div#page-header div.tabs1 a,
+div#page-footer div.tabs1 a {
+ float: left;
+ font-weight: bold;
+ margin-right: 5px;
+ padding: 0px 8px 0 0px;
+ text-transform: uppercase;
+ }
+
+div#page-header div.tabs1 a span,
+div#page-footer div.tabs1 a span {
+ float: left;
+ font-size: x-small;
+ padding: 5px 0px 3px 8px;
+ }
+
+div#page-header div.tabs1 span:hover a,
+div#page-header div.tabs1 span:hover a,
+div#page-footer div.tabs1 span:hover a,
+div#page-footer div.tabs1 span:hover a,
+div#page-header div.tabs1 span:hover a span,
+div#page-footer div.tabs1 span:hover a span {
+ color: #FFF;
+ }
+
+div#page-header div.tabs1 span.current a,
+div#page-header div.tabs1 span.current a:hover,
+div#page-footer div.tabs1 span.current a,
+div#page-footer div.tabs1 span.current a:hover,
+div#page-header div.tabs1 span.current a span,
+div#page-header div.tabs1 span.current a span,
+div#page-footer div.tabs1 span.current a:hover span,
+div#page-footer div.tabs1 span.current a:hover span {
+ color: #000;
+ }
+
+div#page-header div.tabs1 span.download a,
+div#page-header div.tabs1 span.download a:hover,
+div#page-footer div.tabs1 span.download a,
+div#page-footer div.tabs1 span.download a:hover {
+ color: #FFF;
+ margin-left: 20px;
+ }
+
+div#page-header div.tabs1 span.download a span,
+div#page-header div.tabs1 span.download a:hover span,
+div#page-footer div.tabs1 span.download a span,
+div#page-footer div.tabs1 span.download a:hover span {
+ color: #FFF;
+ }
+
+/* */
+
+div#page-header div.tabs1 a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% 0px no-repeat;
+ }
+
+div#page-header div.tabs1 a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 0;
+ }
+
+div#page-header div.tabs1 span.current a,
+div#page-header div.tabs1 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -50px no-repeat;
+ }
+
+div#page-header div.tabs1 span.current a span,
+div#page-header div.tabs1 span.current a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -50px;
+ }
+
+div#page-header div.tabs1 span:hover a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -25px no-repeat;
+ }
+
+div#page-header div.tabs1 span:hover a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -25px;
+ }
+
+div#page-header div.tabs1 span.download a,
+div#page-header div.tabs1 span.download a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -75px no-repeat;
+ }
+
+div#page-header div.tabs1 span.download a span,
+div#page-header div.tabs1 span.download a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -75px;
+ }
+
+/* */
+
+div#page-footer div.tabs1 {
+ margin-top: 29px;
+ }
+
+div#page-footer div.tabs1 a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% 0px no-repeat;
+ }
+
+div#page-footer div.tabs1 a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 0;
+ }
+
+div#page-footer div.tabs1 span.current a,
+div#page-footer div.tabs1 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -50px no-repeat;
+ }
+
+div#page-footer div.tabs1 span.current a span,
+div#page-footer div.tabs1 span.current a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -50px;
+ }
+
+div#page-footer div.tabs2 span.current a,
+div#page-footer div.tabs2 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -125px no-repeat;
+ }
+
+div#page-footer div.tabs1 span:hover a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -25px no-repeat;
+ }
+
+div#page-footer div.tabs1 span:hover a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -25px;
+ }
+
+div#page-footer div.tabs1 span.download a,
+div#page-footer div.tabs1 span.download a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -75px no-repeat;
+ }
+
+div#page-footer div.tabs1 span.download a span,
+div#page-footer div.tabs1 span.download a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -75px;
+ }
+
+/* Tabs (Style 2): Two Rounded Borders
+-----------------------------------------------*/
+
+div#page-header div.tabs2,
+div#page-footer div.tabs2 {
+ margin-left: 20px;
+ padding: 0;
+ }
+
+div#page-header div.tabs2 a,
+div#page-footer div.tabs2 a {
+ color: #628eca;
+ float: left;
+ font-weight: bold;
+ margin-right: 3px;
+ padding: 0px 8px 0 0px;
+ text-decoration: none;
+ }
+
+div#page-header div.tabs2 span.current a,
+div#page-header div.tabs2 span.current a:hover,
+div#page-footer div.tabs2 span.current a,
+div#page-footer div.tabs2 span.current a:hover {
+ color: #FFF;
+ text-decoration: none;
+ }
+
+div#page-header div.tabs2 span.current a span,
+div#page-header div.tabs2 span.current a:hover span,
+div#page-footer div.tabs2 span.current a span,
+div#page-footer div.tabs2 span.current a:hover span {
+ color: #FFF;
+ text-decoration: none;
+ }
+
+div#page-header div.tabs2 a span,
+div#page-footer div.tabs2 a span {
+ float: left;
+ padding: 5px 0px 3px 8px;
+ }
+
+/* */
+
+div#page-header div.tabs2 a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -100px no-repeat;
+ }
+
+div#page-header div.tabs2 a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -100px;
+ }
+
+div#page-header div.tabs2 span.current a,
+div#page-header div.tabs2 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -150px no-repeat;
+ }
+
+div#page-header div.tabs2 span.current a span,
+div#page-header div.tabs2 span.current a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -150px;
+ }
+
+div#page-header div.subtabs2 span.current a,
+div#page-header div.subtabs2 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -150px no-repeat;
+ }
+
+div#page-header div.tabs2 span:hover a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs3-bg.png") 100% -125px no-repeat;
+ }
+
+div#page-header div.tabs2 span:hover a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs4-bg.png") 0 -125px;
+ }
+
+/* */
+
+div#page-footer div.tabs2 a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -100px no-repeat;
+ }
+
+div#page-footer div.tabs2 a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -100px;
+ }
+
+div#page-footer div.tabs2 span.current a,
+div#page-footer div.tabs2 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -150px no-repeat;
+ }
+
+div#page-footer div.tabs2 span.current a span,
+div#page-footer div.tabs2 span.current a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -150px;
+ }
+
+div#page-footer div.subtabs2 span.current a,
+div#page-footer div.subtabs2 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -150px no-repeat;
+ }
+
+div#page-footer div.tabs2 span:hover a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs1-bg.png") 100% -125px no-repeat;
+ }
+
+div#page-footer div.tabs2 span:hover a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/tabs2-bg.png") 0 -125px;
+ }
+
+/* Tabs (Style 3): 4 Rounded Borders
+-----------------------------------------------*/
+
+div#page-body div.tabs3 {
+ float: right;
+ }
+
+div#page-body div.tabs3 ul {
+ margin: 0;
+ padding: 0;
+ }
+
+div#page-body div.tabs3 a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination2-bg.png") 100% 0 no-repeat;
+ color: #628eca;
+ font-weight: bold;
+ float: left;
+ margin-right: 3px;
+ padding: 0px 7px 0 0px;
+ font-size: 10px;
+ }
+
+div#page-body div.tabs3 a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination1-bg.png") 0 0 no-repeat;
+ float: left;
+ padding: 5px 0px 3px 8px;
+ }
+
+div#page-body div.tabs3 span:hover a {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination2-bg.png") 100% -25px no-repeat;
+ text-decoration: none;
+ }
+
+div#page-body div.tabs3 span:hover a span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination1-bg.png") 0 -25px;
+ }
+
+div#page-body div.tabs3 span.current a,
+div#page-body div.tabs3 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination2-bg.png") 100% -50px no-repeat;
+ color: #FFF;
+ text-decoration: none;
+ }
+
+div#page-body div.tabs3 span.current a,
+div#page-body div.tabs3 span.current a:hover {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination2-bg.png") 100% -50px no-repeat;
+ text-decoration: none;
+ }
+
+div#page-body div.tabs3 span.current a span,
+div#page-body div.tabs3 span.current a:hover span {
+ background: url("/home/centos/artwork/trunk/Identity/Models/Img/Promo/Web/png/pagination1-bg.png") 0 -50px;
+ color: #FFF;
+ text-decoration: none;
+ }
+
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/common.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/common.css
new file mode 100644
index 0000000..486808b
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/common.css
@@ -0,0 +1,351 @@
+/*
+ * default.css -- This file resets the browser's default visual style
+ * and sets The CentOS Web Environment visual style as default visual
+ * style. This file sets default values to tags like `html', `body',
+ * as well as those controlling links, tables, paragrphs, headings,
+ * lists, forms and quotation.
+ *
+ * The CentOS Web Environment (Webenv) is specially conceived to
+ * achieve one unique visual style and easy navegation through all
+ * different web applications The CentOS Project uses to show its
+ * existence in the World Wide Web medium.
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * -------------------------------------------------------------------
+ * $Id: reset.css 5276 2012-08-28 22:08:58Z al $
+ * -------------------------------------------------------------------
+ */
+
+
+/* Reset browsers default margins and paddings
+-----------------------------------------------*/
+
+* {
+ margin: 0;
+ padding: 0;
+ }
+
+/* Define html
+-----------------------------------------------*/
+
+html {
+ background-color: #FFF;
+ background-image: url("../img/moin-html-background.png");
+ }
+
+/* Define body
+-----------------------------------------------*/
+
+body {
+ font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
+ font-size: 0.85em;
+ /* margin: 0; /* <- full screen */
+ /* margin: 0 1% 0 1%; /* <- with 1% of left and right margin */
+ /* margin: 0 2% 0 2%; /* <- with 2% of left and right margin */
+ margin: 0 3% 0 3%; /* <- with 3% of left and right margin */
+ /* margin: 0 10% 0 10%; /* <- with 10% of left and right margin */
+ color: #000;
+ background: #FFF;
+ }
+
+/* Links
+-----------------------------------------------*/
+
+a:link { text-decoration: none; color: #0044B3; }
+a:hover { text-decoration: underline; color: green; }
+a:active { text-decoration: underline; color: green; }
+a:visited { text-decoration: none; color: #0044B3; }
+a:visited:hover { text-decoration: underline; color: green; }
+
+.title,
+.title a:link,
+.title a:active,
+.title a:hover,
+.title a:visited,
+.title a:visited:hover {
+ color: #072B61;
+ }
+
+/* Headings
+-----------------------------------------------*/
+
+h1 {
+ font-size: 2em;
+ line-height: 1.5em;
+ }
+
+h2 {
+ font-size: 1.5em;
+ line-height: 1.5em;
+ margin-top: 1.5em;
+ }
+
+h3 {
+ font-size: 1.2em;
+ line-height: 1.2em;
+ margin-top: 1.2em;
+ }
+
+h4 {
+ font-size: 1.2em;
+ line-height: 1.2em;
+ margin-top: 1.2em;
+ }
+
+h5 {
+ font-size: 1.1em;
+ line-height: 1.1em;
+ margin-top: 1.1em;
+ }
+
+h6 {
+ font-size: 1em;
+ line-height: 1em;
+ margin-top: 1em;
+ }
+
+/* Paragraphs
+-----------------------------------------------*/
+
+p {
+ margin: 1em 0 1.5em 0;
+ line-height: 1.5em;
+ }
+
+/* Images
+-----------------------------------------------*/
+
+img {
+ border: none;
+ }
+
+/* Quotations
+-----------------------------------------------*/
+
+blockquote {
+ background: #fafafa;
+ border-color: #eeeeee;
+ border-width: 1px;
+ border-style: solid;
+ border-left-width: 4px;
+ margin-left: 1.5em;
+ padding: 0.5em;
+ margin-top: 1em;
+ margin-bottom: 1.3em;
+ }
+
+q:before {
+ content: " “";
+ }
+
+q:after {
+ content: "” ";
+ }
+
+q q:before {
+ content: " ‘";
+ }
+
+q q:after {
+ content: "’ ";
+ }
+
+address {
+ margin-left: 1.5em;
+ }
+
+/* Preformatted Texts
+-----------------------------------------------*/
+
+pre {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ padding: 0.7em 1em;
+ margin: 1em 0 1.5em 0;
+ white-space: pre;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #E5E5E5;
+ border-left-width: 5px;
+ background: #FFFAE9;
+ overflow: auto;
+ }
+
+/* Phrase Elements
+-----------------------------------------------*/
+
+tt,
+samp,
+kbd,
+code {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ }
+
+/* Page Lines
+-----------------------------------------------*/
+
+hr {
+ clear: both;
+ height: 1px ! important;
+ border: none;
+ background-color: #DADADA;
+ }
+
+/* Lists
+-----------------------------------------------*/
+
+ul,
+ol,
+dl {
+ margin: 1.5em 0 1.5em 2.5em;
+ }
+
+ul {
+ list-style: disc;
+ }
+
+ol {
+ list-style-image: none !important;
+ }
+
+ul li,
+ol li {
+ line-height: 1.5em;
+ }
+
+ul ul,
+ul ol,
+ol ul,
+ol ol {
+ margin-top: 0.3em;
+ margin-bottom: 0.3em;
+ }
+
+ul li p,
+ol li p {
+ margin-bottom: 0.3em;
+ }
+
+dl dd {
+ margin-left: 2.5em;
+ }
+
+dl ol,
+dl ul {
+ margin-left: 3.5em;
+ }
+
+/* Tables
+-----------------------------------------------*/
+
+table {
+ border-collapse: collapse;
+ }
+
+table caption {
+ font-style: italic;
+ text-align: center;
+ }
+
+table tr th {
+ font-weight: bold;
+ }
+
+table tr td,
+table tr th {
+ border: 1pt;
+ border-style: solid;
+ border-color: #CCC;
+ padding-top: 0.25em;
+ padding-right: 0.5em;
+ padding-bottom: 0.25em;
+ padding-left: 0.5em;
+ vertical-align: top;
+ }
+
+table tr td p,
+table tr td pre {
+ margin: 0;
+ padding: 0;
+ }
+
+/* Forms
+-----------------------------------------------*/
+
+form {
+ display: inline;
+ }
+
+input[type="submit"],
+input[type="button"] {
+ padding: 1px;
+ display: inline;
+ text-decoration: none;
+ }
+
+input[type="text"],
+input[type="password"],
+textarea {
+ display: inline;
+ padding: 2px;
+ }
+
+select {
+ display: inline;
+ padding: 1px;
+ }
+
+form p {
+ display: inline;
+ margin-left: 5px;
+ margin-right: 5px;
+ }
+
+/* Select
+---------------------------------------- */
+
+select option {
+ padding-left: 3px;
+ padding-right: 3px;
+ }
+
+select optgroup {
+ font-style: normal;
+ font-weight: bold;
+ padding-left: 3px;
+ }
+
+select optgroup option {
+ margin-left: 1em;
+ }
+
+input[type="radio"],
+input[type="checkbox"] {
+ vertical-align: middle;
+ }
+
+fieldset {
+ margin: 1em 0 1em 0;
+ padding: 1em;
+ padding-bottom: 5px;
+ border: 1px solid #AAA;
+ }
+
+fieldset legend {
+ font-weight: bold;
+ color: #AAA;
+ }
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/print.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/print.css
new file mode 100644
index 0000000..a8e6afc
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/print.css
@@ -0,0 +1,195 @@
+/*
+print.css - MoinMoin Modern CentOS Style.
+
+ Modifications are based on MoinMoin Default modern
+ style and Fedora Cora Style Sheets.
+
+Alain Reguera Delgado
+*/
+
+/* Content Styles */
+
+html {
+ font-family: "DejaVu Sans", "Liberation Sans", serif;
+ font-size: 11pt;
+ text-align: left;
+ background: #fff;
+}
+
+body {
+ /* Give about 3.4cm in Mozilla/Firefox and about 2.2cm in Safari */
+ margin: 1.5cm;
+ background: #fff;
+}
+
+a, a:visited, a.nonexistent, a.badinterwiki {
+ color: black;
+ text-decoration: none;
+}
+
+a:hover, a:active {
+ text-decoration: underline;
+}
+
+.info a {
+ color: gray;
+}
+
+#page pre {
+ white-space: pre-wrap;
+ font-size: 10pt;
+ background: #fff;
+ border:none;
+}
+
+#page tt {
+ font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
+ white-space: pre;
+}
+
+a.interwiki:before, a.badinterwiki:before {
+ content: attr(title) ":";
+}
+
+a.interwiki img, a.badinterwiki img {
+ display: none;
+}
+
+.footnotes div {
+ width: 5em;
+ border-top: 1pt solid gray;
+}
+
+/* User Interface Styles */
+
+#header, #sidebar, #footer, #timings, #credits, #interwiki, #pagelocation {
+ display: none;
+}
+
+/* Messages style on printing view */
+
+.lmimg {
+ width: 1%;
+ border: 1px solid #ccc;
+ border-right: none;
+ color: #000;
+ padding: 1em;
+ padding-right: 0;
+ background: #fff;
+}
+
+.lmtxt {
+ width: 99%;
+ border: 1px solid #ccc;
+ border-left: none;
+ color: #000;
+ padding: 1em;
+ padding-left: 0.5em;
+ background: #fff;
+}
+
+/* Various */
+
+#page td > p {margin: 0.5em !important; }
+
+td { border: 1pt solid #ccc; }
+
+/* List Presentation */
+
+#page ul,
+#page ol {
+ padding-left: 0.5em;
+ margin-left: 3em;
+ margin-bottom: 0.3em;
+}
+
+/*#page ul { list-style: url(../img/moin-ul.png) circle; } */
+
+#page ol {
+ list-style-image: none !important;
+}
+
+#page ul li {
+ padding-left: 0em;
+ margin-bottom: 0.3em;
+}
+
+#page ol li {
+ padding-left: 0em;
+ margin-bottom: 0.3em;
+}
+
+#page ul ul,
+#page ul ol,
+#page ol ul,
+#page ol ol {
+ margin-left: 1.5em;
+ margin-top: 0.3em;
+}
+
+#page ul li p,
+#page ol li p {
+ margin-bottom: 0.3em;
+ line-height: 1.5em;
+ margin-left: 0 !important;
+}
+
+/* Headings */
+
+#page h1 {
+ line-height: 1.9em;
+ margin: 0 0 0.9em 0;
+}
+
+#page h2 {
+ line-height: 1.8em;
+ margin: 1.6em 0 0.8em 0;
+}
+
+/* h2 emulation */
+
+#page .table-of-contents-heading {
+ line-height: 1.8em;
+ margin: 0;
+ margin-bottom: 10px;
+}
+
+#page h3 {
+ line-height: 1.6em;
+ margin-top:0.5em;
+}
+
+#page h4 {
+ line-height: 1.4em;
+ margin-top: 0.5em;
+}
+
+#page h5 {
+ line-height: 1.1em;
+ margin-top:0.5em;
+}
+
+#page h6 {
+ line-height: 1.1em;
+ margin-top:0.5em;
+}
+
+/* Table Of Contents */
+.table-of-contents {
+ border: none;
+ background: none;
+}
+
+/* Recent Changes Table */
+
+.recentchanges td {
+ font-size: 0.88em;
+ vertical-align: top;
+ border: none;
+ border: 1pt solid #ccc;
+ background: #ffffff;
+}
+
+.rcdaybreak td {
+ background: #f8f8f8 url('../img/moin-h2-background.png');
+}
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/projection.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/projection.css
new file mode 100644
index 0000000..90d34e0
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/projection.css
@@ -0,0 +1,32 @@
+/* projection.css - MoinMoin Slide Styles
+
+Copyright (c) 2003 by Juergen Hermann
+*/
+
+@import url(screen.css);
+
+html { line-height: 1.8em; }
+
+body, b, em, a, span, div, p, td { font-size: 18pt; }
+
+h1 { font-size: 26pt; }
+h2 { font-size: 22pt; }
+h3 { font-size: 20pt; }
+h4 { font-size: 18pt; }
+h5 { font-size: 16pt; }
+h6 { font-size: 14pt; }
+
+tt, pre { font-size: 16pt; }
+sup, sub { font-size: 12pt; }
+
+table.navigation {
+ float: right;
+ margin: 2px;
+}
+
+.navigation td, .navigation a {
+ font-size: 10pt;
+ padding: 2px;
+}
+
+#interwiki, #pagelocation, #pageinfo { display: none; }
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/screen.css b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/screen.css
new file mode 100644
index 0000000..dbe9470
--- /dev/null
+++ b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/css/screen.css
@@ -0,0 +1,1193 @@
+/*
+ * Webenv -> Main Blocks
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: base.css 5276 2012-08-28 22:08:58Z al $
+ * ----------------------------------------------------------------------
+ */
+
+div#header,
+div#wrap,
+div#body,
+div#footer {
+ min-width: 728px;
+ }
+
+/* Header.
+--------------------------------------------------------------------*/
+div#header {
+ background: #204C8D url("../img/moin-header-background.png") 0 0 repeat;
+ min-height: 46px;
+ }
+
+/* Content.
+--------------------------------------------------------------------*/
+
+div#wrap {
+ padding: 0px 10px;
+ background-color: #FFF;
+ }
+
+div#body {
+ clear: both;
+ background-color: #F8F8F8;
+ }
+
+div#content {
+ padding: 30px;
+ padding-top: 20px;
+ background-color: #FFF;
+ }
+
+/* Paragraphs
+--------------------------------------------------------------------*/
+
+div#content p {
+ text-align:justify;
+ }
+
+div#content form .userpref table {
+ margin-bottom: 1em;
+ }
+
+div#content form .userpref p {
+ margin-left: 0;
+ }
+
+/* Footer.
+--------------------------------------------------------------------*/
+
+div#footer {
+ background: #204C8D url("../img/h1-bg.png") 0 0 repeat;
+ }
+
+div#footer div.credits {
+ padding: 10px;
+ }
+
+div#footer div.credits .copyright,
+div#footer div.credits .license {
+ font-size: x-small;
+ color: #FFF;
+ line-height: 1.5em;
+ }
+
+div#footer div.credits a {
+ color: #FFF;
+ font-style: italic;
+ }
+
+div#footer div.top {
+ float:right;
+ }
+
+/* Logo
+--------------------------------------------------------------------*/
+div#header div#logo img {
+ border: none;
+ float: left;
+ margin-left: 10px;
+ }
+
+/* Google advertisement (468x60px)
+--------------------------------------------------------------------*/
+
+div#header div.ads-google {
+ float: right;
+ margin: 5px;
+ }
+
+div#header div.ads-google img {
+ border: none;
+ }
+
+/* Last releases and RSS link for them.
+--------------------------------------------------------------------*/
+div#header div#last-releases {
+ clear: both;
+ min-height: 35px;
+ border-top: 3px solid #FFF;
+ border-bottom: 3px solid #FFF;
+ background: #3465A4;
+ }
+
+div#header div#last-releases div.left {
+ display: block;
+ float: left;
+ width: 80%;
+ margin-top: 10px;
+ font-size: small;
+ }
+
+div#header div#last-releases div.right {
+ float: right;
+ margin-top: 9px;
+ margin-right: 5px;
+ }
+
+div#header div#last-releases div.right span.rss span {
+ text-align: center;
+ font-weight: bold;
+ background: #729fcf;
+ padding: 4px 10px;
+ }
+
+div#header div#last-releases div {
+ margin-left: 10px;
+ }
+
+div#header div#last-releases div span.title {
+ font-weight: bold;
+ color: #FFF;
+ }
+
+div#header div#last-releases div span.release {
+ border-right: 1px dotted #FFF;
+ padding-left: 10px;
+ padding-right: 10px;
+ font-weight: bold;
+ }
+
+div#header div#last-releases div span.last {
+ border-right: 0px;
+ }
+
+/* User links on header.
+--------------------------------------------------------------------*/
+
+div#header div.userlinks {
+ padding: 10px;
+ text-align: right;
+ font-size: x-small;
+ clear: both;
+ }
+
+div#header div.userlinks div.lastvisit {
+ width: 50%;
+ float: left;
+ text-align: left;
+ }
+
+div#header div.userlinks div.lastvisit span {
+ border: none;
+ }
+
+div#header div.userlinks div.lastvisit span.title {
+ color: #FFF;
+ }
+
+div#header div.userlinks div.lastvisit span.datetime {
+ font-style: italic;
+ color: #FFF;
+ }
+
+div#header div.userlinks div.session {
+ width: 50%;
+ float: right;
+ }
+
+div#header div.userlinks div.session a {
+ margin-left: 10px;
+ margin-right: 10px;
+ }
+
+div#header div.userlinks div.session span {
+ border-right: 1px dotted #FFF;
+ }
+
+div#header div.userlinks div.session span.last {
+ border-right: none;
+ }
+
+div#header div.userlinks div.session span.last a {
+ margin-right: 0;
+ }
+
+div#header div.userlinks div.session span.last:after {
+ content: none;
+ }
+
+div#header div.userlinks div.trail {
+ text-align: right;
+ clear: both;
+ padding-top: 5px;
+ }
+
+div#header div.userlinks div.trail span {
+ display: inline;
+ }
+
+div#header div.userlinks div.trail span.last {
+ border-right: none;
+ padding-right: 0;
+ }
+
+div#header div.userlinks div.trail span:after {
+ content: "»";
+ color: #FFF;
+ margin-left: 5px;
+ margin-right: 3px;
+ }
+
+div#header div.userlinks div.trail span.last:after {
+ content: none;
+ }
+
+/* User trail on content.
+--------------------------------------------------------------------*/
+div#body div.usertrail {
+ font-size: small;
+ }
+
+div#body div.usertrail a {
+ margin-right: 5px;
+ }
+
+div#body div.usertrail span {
+ display: inline;
+ }
+
+div#body div.usertrail span.last {
+ border-right: none;
+ padding-right: 0;
+ }
+
+div#body div.usertrail span.last a {
+ margin-right: 0;
+ }
+
+div#body div.usertrail span:after {
+ content: "»";
+ }
+
+div#body div.usertrail span.last:after {
+ content: none;
+ }
+
+/* Page lines.
+--------------------------------------------------------------------*/
+
+.line {
+ clear: both;
+ margin: 0;
+ padding: 0;
+ background-color: transparent;
+ }
+
+.line.white {
+ height: 3px;
+ background-color: #FFF;
+ }
+/*
+ * Webenv -> Forms
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: forms.css 5257 2012-08-28 18:02:18Z al $
+ * ----------------------------------------------------------------------
+ */
+
+div#body div.row1 {
+ clear: both;
+ background: #F8F8F8;
+ padding: 10px;
+ }
+
+div#body div.row2 {
+ clear: both;
+ background: #FFFFFF;
+ padding: 10px;
+ }
+
+div#body div.row3 {
+ clear: both;
+ border-top: 1px solid #CCC;
+ padding: 10px;
+ margin-top: 10px;
+ }
+
+div#body fieldset div.row1 span.descrip,
+div#body fieldset div.row2 span.descrip {
+ float: left;
+ }
+
+div#body fieldset div.field {
+ display: block;
+ margin-left: 30%;
+ }
+
+div#body fieldset div.field div.column {
+ float: left;
+ margin-right: 1em;
+ padding-right: 1em;
+ border-right: 1px dotted #AAA;
+ }
+
+div#body fieldset div.row3 div.descrip {
+ display: block;
+ font-size: small;
+ color: #AAA;
+ font-style: italic;
+ width: 70%
+ }
+
+div#body fieldset span.submit {
+ float: right;
+ }
+
+/* */
+
+div#body div.actions {
+ margin-top: 10px;
+ border-bottom: 1px solid #AAA;
+ padding-bottom: 10px;
+
+ }
+
+div#body div.actions span {
+ display: inline;
+ margin: 0;
+ padding-right: 10px;
+ border-right: 1px dotted #AAA;
+ color: #AAA;
+ }
+
+div#body div.actions span.last {
+ border-right: none;
+ padding-left: 10px;
+ }
+
+/* */
+
+div#body div.pagination {
+ font-size: small;
+ padding: 10px;
+ border-top: 1px #AAA solid;
+ margin-bottom: 2em;
+ }
+
+div#body div.pagination span.left {
+ float: left;
+ }
+
+div#body div.pagination span.left a:before {
+ content: "«";
+ padding-right: 3px;
+ }
+
+div#body div.pagination span.right a:after {
+ content: "»";
+ padding-left: 3px;
+ }
+
+div#body div.pagination span.right {
+ float: right;
+ }
+
+/* */
+
+div#body div.records-list {
+ display: block;
+ }
+
+div#body div.records-list ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ }
+
+div#body div.records-list ul li {
+ padding: 0.5em;
+ }
+
+div#body div.records-list ul li.row1 {
+ background: #F8F8F8;
+ }
+
+div#body div.records-list ul li span.col0 {
+ display: block;
+ float:left;
+ text-align: center;
+ padding-right: 0.5em;
+ margin-right: 0.5em;
+ border-right: 1px solid #FFF;
+ }
+
+div#body div.records-list ul li span.col1 {
+ width: 250px;
+ display: block;
+ float:left;
+ }
+
+div#body div.records-list ul li span.col2 {
+ border-left: 1px solid #FFF;
+ padding-left: 0.5em;
+ }
+
+div#body div.records-list ul li.title {
+ font-weight: bold;
+ background: #eee;
+ border-bottom: 1px #AAA solid;
+ }
+/*
+ * Webenv -> Links
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: links.css 5276 2012-08-28 22:08:58Z al $
+ * ----------------------------------------------------------------------
+ */
+
+/* Broken or nonexistent links.
+--------------------------------------------------------------------*/
+
+div#body a.nonexistent,
+div#body a.nonexistent:hover { color: gray; }
+
+/* Special decoration for some links' classes
+--------------------------------------------------------------------*/
+
+div#body a.www:before {
+ white-space:nowrap;
+ content: url(../img/a-www.png);
+ margin: 0 0.2em;
+ }
+
+div#body a.http:before {
+ white-space:nowrap;
+ content: url(../img/a-www.png);
+ margin: 0 0.2em;
+ }
+
+div#body a.https:before {
+ white-space:nowrap;
+ content: url(../img/a-www.png);
+ margin: 0 0.2em;
+ }
+
+div#body a.mailto:before {
+ white-space:nowrap;
+ content: url(../img/a-mail.png);
+ margin: 0 0.2em;
+ }
+
+div#body a.attachment:before {
+ white-space:nowrap;
+ content: url(../img/a-attach.png);
+ margin: 0 0.2em;
+ }
+
+/*
+--------------------------------------------------------------------*/
+
+div#header .user-last-visit a,
+div#header .userlinks a,
+div#header .usertrail a,
+div#header #last-releases a {
+ color: #fff;
+ }
+/*
+ * Webenv -> Lists
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: lists.css 5276 2012-08-28 22:08:58Z al $
+ * ----------------------------------------------------------------------
+ */
+
+div#body ul {
+ list-style: url("../img/ul.png") disc;
+ }
+
+div#body ul,
+div#body ol {
+ margin-left: 2.5em;
+ }
+
+div#body ul ol,
+div#body ol ul,
+div#body dl ul,
+div#body dl ol {
+ margin-left: 1.5em;
+ }
+
+div#body div#rightbar ul {
+ padding: 0.5em 0.5em 1em 1em;
+ margin: 0;
+ list-style: none;
+ border-top: 1px #EEE solid;
+ }
+
+div#body div#rightbar ul.first {
+ border-top: none;
+ }
+
+div#body div#right ul li {
+ padding: 2px;
+ }
+
+/* Table of content (toc)
+--------------------------------------------------------------------*/
+
+div#body div.toc {
+ font-size: small;
+ text-align:left;
+ margin-bottom: 2em;
+ }
+
+div#body div.toc p {
+ font-weight: bold;
+ margin: 0.5em 0 0.5em 0;
+ }
+
+div#body div#content div.toc dl {
+ margin: 0;
+ }
+
+div#body div#content div.toc dl dl {
+ margin-left: 2.5em;
+ }
+/*
+ * Webenv -> Quotation
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: quotation.css 5276 2012-08-28 22:08:58Z al $
+ * ----------------------------------------------------------------------
+ */
+
+div#body blockquote {
+ margin-left: 0;
+ background-image: url("../img/msg-bg-gray.png");
+ padding: 1em 1.5em 0 1em;
+ }
+
+div#body blockquote h3 {
+ line-height: 0;
+ margin: 1em 0 1em 0;
+ }
+
+div#body blockquote pre {
+ border: none;
+ background-color: #333;
+ color: #FFFFFF;
+ }
+
+div#body blockquote.icon img {
+ float: left;
+ }
+
+div#body blockquote.icon pre,
+div#body blockquote.icon h3,
+div#body blockquote.icon p,
+div#body blockquote.icon table {
+ margin-left: 60px;
+ }
+
+div#body blockquote.icon ul,
+div#body blockquote.icon ol,
+div#body blockquote.icon dl {
+ margin-left: 110px;
+ }
+
+div#body blockquote.icon ul dl,
+div#body blockquote.icon ul ol,
+div#body blockquote.icon ul ul,
+div#body blockquote.icon ol dl,
+div#body blockquote.icon ol ol,
+div#body blockquote.icon ol ul,
+div#body blockquote.icon dl dl,
+div#body blockquote.icon dl ol,
+div#body blockquote.icon dl ul {
+ margin-left: 2.5em;
+ }
+
+div#body blockquote.message {
+ border: none;
+ border-top: 4px solid;
+ border-bottom: 4px solid;
+ border-color: #CFCFCF;
+ }
+
+div#body blockquote.blue {
+ background-image: url("../img/msg-bg-blue.png");
+ border-color: #D2E0F6;
+ background-color: #ECF4FF;
+ }
+
+div#body blockquote.orange {
+ border-color: #F6E7D2;
+ background-color: #FFF8EC;
+ background-image: url("../img/msg-bg-orange.png");
+ }
+
+div#body blockquote.violet {
+ border-color: #F6D2F6;
+ background-color: #FFECFF;
+ background-image: url("../img/msg-bg-violet.png");
+ }
+
+div#body blockquote.red {
+ border-color: #E0B7B7;
+ background-color: #FFECEC;
+ background-image: url("../img/msg-bg-red.png");
+ }
+
+div#body blockquote.green {
+ border-color: #D6F6D2;
+ background-color: #EEFFEC;
+ background-image: url("../img/msg-bg-green.png");
+ }
+/*
+ * Webenv -> Tabs (Style 2: Two Rounded Borders)
+ *
+ * Copyright (C) 2009, 2010, 2011 The CentOS Artwork SIG
+ *
+ * This CSS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This CSS is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ * ----------------------------------------------------------------------
+ * $Id: tabs.css 5276 2012-08-28 22:08:58Z al $
+ * ----------------------------------------------------------------------
+ */
+
+div#header div.tabs {
+ margin-left: 10px;
+ margin-right: 10px;
+ }
+
+div#header div.tabs a {
+ color: #FFF;
+ float: left;
+ font-weight: bold;
+ margin-right: 3px;
+ padding: 0px 8px 0 0px;
+ text-decoration: none;
+ }
+
+div#header div.tabs span.current a,
+div#header div.tabs span.current a:hover,
+div#header div.tabs span.current a span,
+div#header div.tabs span.current a:hover span {
+ color: #204A87;
+ text-decoration: none;
+ }
+
+div#header div.tabs a span {
+ float: left;
+ padding: 5px 0px 3px 8px;
+ }
+
+/* */
+
+div#header div.tabs a {
+ background: none;
+ }
+
+div#header div.tabs a span {
+ background: none;
+ }
+
+div#header div.tabs span.current a,
+div#header div.tabs span.current a:hover {
+ background: url("../img/tabs-bg-1.png") 100% -50px no-repeat;
+ }
+
+div#header div.tabs span.current a span,
+div#header div.tabs span.current a:hover span {
+ background: url("../img/tabs-bg-2.png") 0 -50px no-repeat;
+ }
+
+div#header div.tabs span:hover a {
+ background: url("../img/tabs-bg-1.png") 100% 0 no-repeat;
+ }
+
+div#header div.tabs span:hover a span {
+ background: url("../img/tabs-bg-2.png") 0 0;
+ }
+
+/* Application level navigation bar.
+--------------------------------------------------------------------*/
+.editbar {
+ clear: both;
+ display: block;
+ margin: 0;
+ padding-left: 20px;
+ white-space: nowrap;
+ background: #EDF4FF;
+ font-size: 0.9em;
+ }
+
+.editbar form, .editbar form div {
+ display: inline;
+ margin: 0px;
+ }
+
+.editbar li {
+ display: inline;
+ padding: 0;
+ margin-right: 10px;
+ }
+
+*[dir="rtl"] .editbar li {
+ float: right;
+ }
+
+#header .editbar {
+ border-bottom-width: 2px;
+ border-bottom-style: dotted;
+ border-bottom-color: #628ECA;
+ border-top-width: 1px;
+ border-top-style: solid;
+ border-top-color: #C9C9C9;
+ }
+
+.navibar {
+ /* Problem: clear: right; aligns nicely right of
+ * logo, but lets it float high in the header,
+ * disconnected from ground */
+ clear: both;
+ display: block;
+ height: 20px;
+ padding: 0;
+ padding-left: 20px;
+ margin: 0;
+ font-size: 0.9em;
+
+ /* For avoiding a gap between navibar and pageline
+ * on IE */
+ zoom: 1;
+ }
+
+.navibar li {
+ float: left;
+ display: inline;
+ white-space: nowrap;
+ margin-left: 3px;
+ padding-top: 5px;
+ padding-bottom: 5px;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #628ECA;
+ background-color: #FFF;
+ background-image: url("../img/moin-navibartop-bg.png");
+ background-position: left top;
+ background-repeat: repeat-x;
+ }
+
+*[dir="rtl"] .navibar li {
+ float: right;
+ }
+
+.navibar li.wikilink {
+ /*background: #3967a3; /*url(../img/tab-wiki.png) repeat-x;*/
+ }
+
+.navibar li.userlink {
+ /*background: #E6EAF0; /*url(../img/tab-user.png) repeat-x;*/
+ }
+
+.navibar li a {
+ /* To cover the box area as linkable */
+ padding: 8px;
+ padding-top: 7px;
+ padding-bottom: 5px;
+ }
+
+.navibar a, .navibar a:visited {
+ color: #204C8D;
+ text-decoration: none;
+ }
+
+.navibar li.current a {
+ color: #FFFFFF;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+.navibar li:hover {
+ background-color: #628ECA;
+ background-image: url("../img/moin-navibartop-hover-bg.png");
+ background-position: left top;
+ background-repeat: repeat-x;
+ }
+
+.navibar li:hover a {
+ color: #FFFFFF;
+ text-decoration: none;
+ }
+
+.navibar li:hover a:active { color:#FFF; text-decoration:none;}
+.navibar li a:active { color:#204C8D; text-decoration:none;}
+
+.navibar li.current,
+.navibar li.current:hover,
+.navibar li.current:hover a,
+.navibar li.current:active a {
+ color: #FFFFFF;
+ background-color: #628ECA;
+ background-image: url("../img/moin-navibartop-hover-bg.png");
+ background-position: left top;
+ background-repeat: repeat-x;
+ }
+
+#username {
+ padding: 0;
+ margin: 0.4em;
+ margin-top: 0;
+ text-align: right;
+ font-size: 0.82em;
+ white-space: nowrap;
+ }
+
+*[dir="rtl"] #username {
+ text-align: left;
+ }
+
+#username li {
+ display: inline;
+ padding: 0;
+ padding-right: 0.5em;
+ }
+
+#username form {
+ display: inline;
+ }
+
+#username input {
+ display: inline;
+ padding: 0;
+ margin: 0;
+ border: none;
+ background: #E7E7E7; /* inherit doesnt work on IE */
+ color: blue;
+ font-size: 0.82em;
+ cursor: pointer;
+ }
+
+#username input:hover {
+ color: red;
+ }
+
+#searchform {
+ color: #FFFFFF;
+ margin-right: 0;
+ text-align: right;
+ padding: 0;
+ white-space: nowrap;
+ }
+
+*[dir="rtl"] #searchform {
+ float: left;
+ }
+
+#searchform input{
+ font-size: 0.85em;
+ padding: 1px;
+ padding-left: 3px;
+ }
+
+#searchinput {
+ background: #EDF4FF;
+ border-width: 2px;
+ border-style: solid;
+ border-color: #204C8D;
+ color: #204C8D;
+ display: inline;
+ width: 130px;
+ }
+
+#titlesearch, #fullsearch {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #204C8D;
+ background: #3B71B8; /* inherit doesnt work on IE */
+ color: #FFFFFF;
+ cursor: pointer;
+ display: inline;
+ font-weight: bold;
+ text-decoration: none;
+ }
+
+#searchform label {
+ display: block;
+ }
+
+
+#searchform form div {
+ display: inline;
+ }
+
+#pagetrail {
+ font-size: 0.82em;
+ margin:0.4em;
+ padding:0;
+ padding-right: 0.5em;
+ text-align: right;
+ }
+
+*[dir="rtl"] #pagetrail {
+ clear: left;
+ }
+
+#interwiki {
+ margin-right: 0.5em;
+ float:left;
+ font-size: 1em;
+ }
+
+*[dir="rtl"] #interwiki {
+ display: inline;
+ margin-right: 5px;
+ font-size: 1em;
+ }
+
+#interwiki span:after {
+ content: ":";
+ }
+
+#locationline {
+ padding-left: 20px;
+ padding-right: 20px;
+ }
+
+*[dir="rtl"] #locationline {
+ clear: left;
+ }
+
+#pagelocation {
+ margin: 0;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+ padding: 0;
+ }
+
+#pagelocation li {
+ display: inline;
+ color: #3B639B;
+ }
+
+#pagetrail li {
+ display: inline;
+ margin: 0;
+ color: #EEEEEE;
+ }
+
+/* XXX Warning: non-ascii characters! */
+
+#pagetrail li:after {
+ content: " » ";
+ }
+
+*[dir="rtl"] #pagetrail li:after {
+ content: " « ";
+ }
+
+#pagetrail li:last-child:after {
+ content: "";
+ }
+
+#pagelocation li:after {
+ content: " » ";
+ }
+
+*[dir="rtl"] #pagelocation li:after {
+ content: " \\ "; /* TODO: check what looks best with RTL */
+ }
+
+#pagelocation li:last-child:after {
+ content: "";
+ }
+
+#username a:link { text-decoration: none; color: #EEE; }
+#username a:hover { text-decoration: underline; color: #FFF; }
+#username a:active { text-decoration: underline; color: #FFF; }
+#username a:visited { text-decoration: none; color: #EEE; }
+#username a:visited:hover { text-decoration: underline; color: #FFF; }
+
+#pagetrail a:link { text-decoration: none; color: #EEE; }
+#pagetrail a:hover { text-decoration: underline; color: #FFF; }
+#pagetrail a:active { text-decoration: underline; color: #FFF; }
+#pagetrail a:visited { text-decoration: none; color: #EEE; }
+#pagetrail a:visited:hover { text-decoration: underline; color: #FFF; }
+
+#userlinks {
+ padding: 10px;
+ }
+
+.pageline {
+ clear: both;
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ /* sync these values, line-height is needed for IE */
+ height: 5px;
+ line-height: 5px;
+ background: #628ECA;
+ }
+
+/* Footer */
+
+#footer {
+ clear: both;
+ margin-top: 20px;
+ padding-bottom: 1em;
+ background-color: #204C8D;
+ background-image: url("../img/moin-header-background.png");
+ }
+
+#footer .editbar {
+ border-top-width: 2px;
+ border-top-style: dotted;
+ border-top-color: #628EAC;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: #C9C9C9;
+ }
+
+#footer .navibar li {
+ background-color: #FFF;
+ background-image: url("../img/moin-navibarbottom-bg.png");
+ background-position: left bottom;
+ background-repeat: repeat-x;
+ }
+
+#footer .navibar li:hover {
+ background-color: #628ECA;
+ background-image: url("../img/moin-navibarbottom-hover-bg.png");
+ background-position: left bottom;
+ background-repeat: repeat-x;
+ }
+
+#footer .navibar li.current,
+#footer .navibar li.current:hover,
+#footer .navibar li.current:hover a,
+#footer .navibar li.current:active a {
+ color: #FFFFFF;
+ background-color: #628ECA;
+ background-image: url("../img/moin-navibarbottom-hover-bg.png");
+ background-position: left top;
+ background-repeat: repeat-x;
+ }
+
+#credits, #version, #timings {
+ text-align: center;
+ font-size: 0.88em;
+ padding: 0;
+ margin-top: 2.5em;
+ color: #EEE;
+ }
+
+#credits a {
+ color: #EEE;
+ }
+
+#credits a:hover {
+ text-decoration: underline;
+ }
+
+#credits li, #timings li {
+ display: inline;
+ padding-right: 2px;
+ margin-right: 4px;
+ color: #EEE;
+ }
+
+#credits img {
+ vertical-align: middle;
+ }
+
+#content {
+ padding: 0 50px 0 50px;
+ }
+
+ul {
+ list-style: url("../img/moin-ul.png") circle;
+ }
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/PythonPowered.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/PythonPowered.png
new file mode 100755
index 0000000..c2d6ade
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/PythonPowered.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/alert.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/alert.png
new file mode 100755
index 0000000..a8ca827
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/alert.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/angry.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/angry.png
new file mode 100755
index 0000000..011079d
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/angry.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/attention.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/attention.png
new file mode 100755
index 0000000..0498ea1
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/attention.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/biggrin.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/biggrin.png
new file mode 100755
index 0000000..b29719b
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/biggrin.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/checkmark.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/checkmark.png
new file mode 100755
index 0000000..8869caa
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/checkmark.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/devil.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/devil.png
new file mode 100755
index 0000000..8e2cd45
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/devil.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/draft.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/draft.png
new file mode 100755
index 0000000..6b625f4
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/draft.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/frown.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/frown.png
new file mode 100755
index 0000000..2999b55
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/frown.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-error.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-error.png
new file mode 100755
index 0000000..3bbbb4a
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-error.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-info.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-info.png
new file mode 100755
index 0000000..94bc537
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/icon-info.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/idea.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/idea.png
new file mode 100755
index 0000000..38782d9
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/idea.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-attach.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-attach.png
new file mode 100755
index 0000000..ac85517
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-attach.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-bottom.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-bottom.png
new file mode 100755
index 0000000..1616134
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-bottom.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-deleted.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-deleted.png
new file mode 100755
index 0000000..5ab157b
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-deleted.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-diff.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-diff.png
new file mode 100755
index 0000000..0b98d79
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-diff.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-edit.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-edit.png
new file mode 100755
index 0000000..6cccfee
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-edit.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-email.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-email.png
new file mode 100755
index 0000000..89a5e6c
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-email.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ftp.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ftp.png
new file mode 100755
index 0000000..3b36770
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ftp.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h1-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h1-background.png
new file mode 100755
index 0000000..003128c
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h1-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h2-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h2-background.png
new file mode 100755
index 0000000..7966dc0
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-h2-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-header-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-header-background.png
new file mode 100755
index 0000000..db54c7e
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-header-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-help.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-help.png
new file mode 100755
index 0000000..c255499
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-help.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-home.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-home.png
new file mode 100755
index 0000000..e8f287c
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-home.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-html-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-html-background.png
new file mode 100755
index 0000000..ccfa402
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-html-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-hx-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-hx-background.png
new file mode 100755
index 0000000..52329cb
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-hx-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-icon.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-icon.png
new file mode 100755
index 0000000..3960710
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-icon.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-info.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-info.png
new file mode 100755
index 0000000..39418c9
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-info.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-inter.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-inter.png
new file mode 100755
index 0000000..9d2d500
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-inter.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-blue.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-blue.png
new file mode 100755
index 0000000..7a816cf
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-blue.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-gray.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-gray.png
new file mode 100755
index 0000000..43d1a55
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-gray.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-green.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-green.png
new file mode 100755
index 0000000..f4ca7ca
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-green.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-orange.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-orange.png
new file mode 100755
index 0000000..25a57b5
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-orange.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-red.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-red.png
new file mode 100755
index 0000000..2dfcf09
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-red.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-violet.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-violet.png
new file mode 100755
index 0000000..657824d
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-msg-bg-violet.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-bg.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-bg.png
new file mode 100755
index 0000000..0b63cb9
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-bg.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-hover-bg.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-hover-bg.png
new file mode 100755
index 0000000..9bbc244
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibarbottom-hover-bg.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-bg.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-bg.png
new file mode 100755
index 0000000..936da33
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-bg.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-hover-bg.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-hover-bg.png
new file mode 100755
index 0000000..1d5596e
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-navibartop-hover-bg.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-new.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-new.png
new file mode 100755
index 0000000..eff3384
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-new.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-news.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-news.png
new file mode 100755
index 0000000..4c3efdd
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-news.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-parent.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-parent.png
new file mode 100755
index 0000000..47416d4
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-parent.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-print.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-print.png
new file mode 100755
index 0000000..12a4e39
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-print.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-raw.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-raw.png
new file mode 100755
index 0000000..236e1d5
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-raw.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-rss.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-rss.png
new file mode 100755
index 0000000..72d75ae
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-rss.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-search.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-search.png
new file mode 100755
index 0000000..fd7f0b0
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-search.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-show.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-show.png
new file mode 100755
index 0000000..3fd71d6
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-show.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-subscribe.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-subscribe.png
new file mode 100755
index 0000000..238bf62
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-subscribe.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-telnet.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-telnet.png
new file mode 100755
index 0000000..c9cc93e
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-telnet.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-toc-background.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-toc-background.png
new file mode 100755
index 0000000..02f4993
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-toc-background.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-top.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-top.png
new file mode 100755
index 0000000..572543e
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-top.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ul.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ul.png
new file mode 100755
index 0000000..fd89ccd
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-ul.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-unsubscribe.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-unsubscribe.png
new file mode 100755
index 0000000..907eb49
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-unsubscribe.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-up.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-up.png
new file mode 100755
index 0000000..57e240a
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-up.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-updated.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-updated.png
new file mode 100755
index 0000000..40bf05e
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-updated.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-www.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-www.png
new file mode 100755
index 0000000..5430aa2
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-www.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml.png
new file mode 100755
index 0000000..52f1607
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml2.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml2.png
new file mode 100755
index 0000000..af554e4
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/moin-xml2.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/ohwell.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/ohwell.png
new file mode 100755
index 0000000..69e416a
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/ohwell.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio1.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio1.png
new file mode 100755
index 0000000..774d34d
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio1.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio2.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio2.png
new file mode 100755
index 0000000..3c6fac5
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio2.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio3.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio3.png
new file mode 100755
index 0000000..2d03e62
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/prio3.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/redface.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/redface.png
new file mode 100755
index 0000000..1b7e217
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/redface.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/sad.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/sad.png
new file mode 100755
index 0000000..c14e144
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/sad.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile.png
new file mode 100755
index 0000000..44cc239
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile2.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile2.png
new file mode 100755
index 0000000..a875361
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile2.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile3.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile3.png
new file mode 100755
index 0000000..dd9058b
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile3.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile4.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile4.png
new file mode 100755
index 0000000..595c1fe
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/smile4.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_off.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_off.png
new file mode 100755
index 0000000..057b4b7
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_off.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_on.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_on.png
new file mode 100755
index 0000000..60594dc
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/star_on.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/thumbs-up.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/thumbs-up.png
new file mode 100755
index 0000000..1faabac
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/thumbs-up.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tired.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tired.png
new file mode 100755
index 0000000..a3d5c56
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tired.png differ
diff --git a/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tongue.png b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tongue.png
new file mode 100755
index 0000000..5302c89
Binary files /dev/null and b/Identity/Webenv/Themes/Default/Moin/1.5.9/Modern/img/tongue.png differ