From 5659f0bdb42be25591c46936766eaf8ac0da2679 Mon Sep 17 00:00:00 2001 From: jensp Date: Wed, 5 Feb 2014 09:12:13 +0000 Subject: [PATCH] Synced Mandalay-Theme in ccm-sci-bundle with Mandalay Trunk. Further development of Mandalay will be done directly here. git-svn-id: https://svn.libreccm.org/ccm/trunk@2506 8810af33-2d31-482b-a856-94f89814c4df --- ccm-sci-bundle/bundles/devel/cfg/project.xml | 2 +- .../mandalay/css/screen/global/admin.css | 11 +- .../mandalay/css/screen/global/basic.css | 8 +- .../mandalay/fallback/admin-category-step.xsl | 41 ++ .../mandalay/fallback/admin-navigation.xsl | 32 ++ .../themes/mandalay/fallback/admin-search.xsl | 446 ++++++++++++++++++ .../mandalay/fallback/admin-subsite.xsl | 90 ++++ .../themes/mandalay/fallback/admin-terms.xsl | 54 +++ .../themes/mandalay/fallback/admin-themes.xsl | 151 ++++++ .../web/themes/mandalay/fallback/admin.xsl | 200 ++++++++ .../mandalay/fallback/fallbackEntryPoints.xsl | 177 +++++++ .../mandalay/includes/mandalay/cssLoader.xsl | 120 +++-- .../mandalay/includes/mandalay/globalVars.xsl | 2 +- .../mandalay/includes/mandalay/moreButton.xsl | 8 + .../includes/search/filterControls.xsl | 72 ++- .../mandalay/includes/types/GenericPerson.xsl | 142 +++--- .../themes/mandalay/lang/en/GenericPerson.xml | 36 ++ .../mandalay/settings/SciPublications.xml | 8 + .../user/includes/types/SciPublications.xsl | 2 +- .../ArticleInCollectedVolume.xsl | 10 +- .../SciPublications/ArticleInJournal.xsl | 10 +- .../types/SciPublications/CollectedVolume.xsl | 10 +- .../types/SciPublications/Expertise.xsl | 10 +- .../types/SciPublications/GreyLiterature.xsl | 10 +- .../types/SciPublications/InProceedings.xsl | 10 +- .../types/SciPublications/InternetArticle.xsl | 10 +- .../types/SciPublications/Journal.xsl | 10 +- .../types/SciPublications/Monograph.xsl | 10 +- .../types/SciPublications/Proceedings.xsl | 10 +- .../types/SciPublications/Publisher.xsl | 10 +- .../types/SciPublications/ResearchReport.xsl | 10 +- .../includes/types/SciPublications/Review.xsl | 10 +- .../types/SciPublications/SciAuthor.xsl | 30 +- .../includes/types/SciPublications/Series.xsl | 20 +- .../types/SciPublications/WorkingPaper.xsl | 2 +- .../includes/types/SciPublications/common.xsl | 65 ++- .../types/SciPublications/formatParser.xsl | 15 + 37 files changed, 1609 insertions(+), 255 deletions(-) create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-category-step.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-navigation.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-search.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-subsite.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-terms.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin-themes.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/admin.xsl create mode 100755 ccm-sci-bundle/web/themes/mandalay/fallback/fallbackEntryPoints.xsl create mode 100644 ccm-sci-bundle/web/themes/mandalay/lang/en/GenericPerson.xml diff --git a/ccm-sci-bundle/bundles/devel/cfg/project.xml b/ccm-sci-bundle/bundles/devel/cfg/project.xml index 4b7a00a37..3b6f2ee5b 100644 --- a/ccm-sci-bundle/bundles/devel/cfg/project.xml +++ b/ccm-sci-bundle/bundles/devel/cfg/project.xml @@ -9,7 +9,7 @@ name="scientificcms" prettyName="Scientific CMS" version="2.2.0" - release="SNAPSHOT-r24" + release="SNAPSHOT-r2482" webxml="web-sci.xml" webapp="ROOT" xsi:schemaLocation="http://ccm.redhat.com/ccm-project file:tools-ng/common/xsd/project.xsd"> diff --git a/ccm-sci-bundle/web/themes/mandalay/css/screen/global/admin.css b/ccm-sci-bundle/web/themes/mandalay/css/screen/global/admin.css index 49e3901e9..7b5bb3cc5 100644 --- a/ccm-sci-bundle/web/themes/mandalay/css/screen/global/admin.css +++ b/ccm-sci-bundle/web/themes/mandalay/css/screen/global/admin.css @@ -179,7 +179,7 @@ div#bebopTabbedPane { } div#bebopTabbedPane a { - color: #ffffff; + color: #ffffff !important; } span.bebopTab { @@ -386,6 +386,10 @@ div#right div.columnHead { font-size: 0.75em; } +div#left div.columnContent { + height: auto; +} + div#left div.columnContent, div#right div.columnContent { position: absolute; @@ -1304,13 +1308,13 @@ input#draft_search:active { /* Links */ a, a:link, a:visited, #content a, #content a:link, #content a:visited { - color: #75051d; + color: #75051d !important; text-decoration: none; } a:focus, a:hover, a:active, #content a:hover, #content a:focus, #content a:active { - color: #cc0033; + color: #cc0033 !important; text-decoration: inherit; } @@ -1322,6 +1326,7 @@ a:focus, a:hover, a:active, overflow: hidden; margin: 0.3em; padding: 0; + color: inherit !important; background-color: #ffffff; } diff --git a/ccm-sci-bundle/web/themes/mandalay/css/screen/global/basic.css b/ccm-sci-bundle/web/themes/mandalay/css/screen/global/basic.css index e78e735d2..c4b4c3b35 100755 --- a/ccm-sci-bundle/web/themes/mandalay/css/screen/global/basic.css +++ b/ccm-sci-bundle/web/themes/mandalay/css/screen/global/basic.css @@ -144,7 +144,8 @@ body, #header a { /* helles Hellgrau 1 */ - color: #e7e6ee; + /*color: #e7e6ee;*/ + color: #77767e; } #itemList ul, @@ -1651,6 +1652,11 @@ ul.sitemap li.menulevel_2 { min-width: 11.4em; } + +form select optgroup option { + margin-left: 0.75em; +} + #content form input:hover, #content form select:hover { border-color: #0976a0; diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-category-step.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-category-step.xsl new file mode 100755 index 000000000..50cdf0d97 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-category-step.xsl @@ -0,0 +1,41 @@ + + '>]> + + + + + + + + + + + + + + + + diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-navigation.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-navigation.xsl new file mode 100755 index 000000000..96cf43940 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-navigation.xsl @@ -0,0 +1,32 @@ + + '>]> + + + + + + + + + + + + diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-search.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-search.xsl new file mode 100755 index 000000000..7c3426615 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-search.xsl @@ -0,0 +1,446 @@ + + '>]> + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+ + + result even + + + result odd + + + % + + + + + + + + + + + + +
+
+ + +
+ + + result even + + + result odd + + + % + + + + + + + + + + + + +
+
+ + + +
+ + + + + + + + + +
+
+ + + + + +
+ + + + + + + + + +
+
+ + +
+ + + + + + + + + +
+
+ + +
+ + + + + + + + + +
+
+ + +
+ + + + + + + + +
+ + + + + + checked + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+ +
+
+
+ +
diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-subsite.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-subsite.xsl new file mode 100755 index 000000000..5e0eadf01 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-subsite.xsl @@ -0,0 +1,90 @@ + + '>]> + + + + + + + + + + +
+ + + + + + + post + + + + + + + + + + + +
:
+ + + + +
+ + +

Subsite listing

+ + + +

Edit subsite details

+
+ +

Create new subsite

+
+
+ +
+ + + + + + + + + + + + + +
[edit]
+
+ +
+ diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-terms.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-terms.xsl new file mode 100755 index 000000000..717c83978 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-terms.xsl @@ -0,0 +1,54 @@ + + '>]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin-themes.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-themes.xsl new file mode 100755 index 000000000..9ed30f248 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin-themes.xsl @@ -0,0 +1,151 @@ + + '>]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (scheduled for removal) + + + (ignored) + + + + + + + + + + + + + + + return confirm('Are you sure?') + Remove + + + + + + + + + + + + + + + + + +

+ +
+ + + + + + + + + +
File NameSizeLast Modified
+ + + +

+ Warning Messages:
+ +

+ + + +

+ Error Messages:
+ +

+ + + +

+ Fatal Messages:
+ +

+ + + + . + + + + +

+ Location:
+ + Line:
+ Column:
+
+ + + Message From Original Exception: + + +
+
+
+ +
+ diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/admin.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/admin.xsl new file mode 100755 index 000000000..5651343c8 --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/admin.xsl @@ -0,0 +1,200 @@ + + '>]> + + + + + + + + + + + + + + + + +
    +
  • Name:
  • +
  • Email: + + +
    +
  • +
  • Screen Name:
  • +
  • URL:
  • +
  • User ID:
  • +
  • Member State: +
  • +
+ +
+ + + + +

Adminstrative Actions

+ + + +
+ + + + For +
+
+ + + +

Note

+

If this user does not currently have an authentication record, + one will be created when you submit this form and the account + will be enabled for login to the system.

+
+ + + + + + + + + (primary) + + + + + + + + + + + + + + + + + + +
+

You don't have permission to perform the requested action.

+
+
+ + + +

Your search returned no results.

+
+ + + +

Results matching your query:

+
    + +
  • +
    +
+
+ + + + +
    +
  • Group Name:
  • +
  • Primary Email:
  • +
+ +
+ + +

None

+
+ + +   + ( + + ) + + + + + +
+
+ + + + + + + + + + + + + +
+
+ + + + + + + + #e1d5b0 + #ffffff + + + + + + + + + + + + + + + + + +
+ diff --git a/ccm-sci-bundle/web/themes/mandalay/fallback/fallbackEntryPoints.xsl b/ccm-sci-bundle/web/themes/mandalay/fallback/fallbackEntryPoints.xsl new file mode 100755 index 000000000..97fb0b4ef --- /dev/null +++ b/ccm-sci-bundle/web/themes/mandalay/fallback/fallbackEntryPoints.xsl @@ -0,0 +1,177 @@ + +&nbsp;'>]> + + + + + + + + + + + + + + + + + + + /cms/admin/page + + + + + + + + + + + + + + + + + + + + + <xsl:value-of select="bebop:title"/> + + + + + + + + + + + + + + +
+ + + +
+
+ +
+
+
+
+
+ + +
+
+ +
+
+
+ + +
+ + + + + <xsl:value-of select="/bebop:page/bebop:title"/> + + + + + + + + + + + +
+ +
+
+ APLAWS> +
+

+
+ +
+
+ +
+
+ + +
+ + +
+ + + + + + () + + + + + + + + + + + + + + + +
diff --git a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/cssLoader.xsl b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/cssLoader.xsl index 4946fd829..6cc6b80ab 100755 --- a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/cssLoader.xsl +++ b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/cssLoader.xsl @@ -38,9 +38,49 @@ Setting up CSSLoader with browser switch exclude-result-prefixes="xsl bebop cms nav mandalay" version="1.0"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -89,53 +129,53 @@ Setting up CSSLoader with browser switch ca_notes and com.arsdigita.cms.ReusableImageAsset are not treated as contenttypes. Styling will be made vie css-files of contenttypes. --> - - + + - - - + + + - - - + + + - - - - global - - - + + + + global + + + - - - + + + - - + + - - - - true - - - false - - - + + + + true + + + false + + + - + - + diff --git a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/globalVars.xsl b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/globalVars.xsl index cff5f1892..63ba734ac 100755 --- a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/globalVars.xsl +++ b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/globalVars.xsl @@ -123,7 +123,7 @@ zum anderen Variablen und Einstellungen speziell für das Mandalay-Theme. - + diff --git a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/moreButton.xsl b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/moreButton.xsl index b173322a5..547785fe6 100644 --- a/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/moreButton.xsl +++ b/ccm-sci-bundle/web/themes/mandalay/includes/mandalay/moreButton.xsl @@ -29,6 +29,7 @@ --> + + + + + + /redirect/?oid= + + diff --git a/ccm-sci-bundle/web/themes/mandalay/includes/search/filterControls.xsl b/ccm-sci-bundle/web/themes/mandalay/includes/search/filterControls.xsl index 3a66ee948..097bcdee3 100644 --- a/ccm-sci-bundle/web/themes/mandalay/includes/search/filterControls.xsl +++ b/ccm-sci-bundle/web/themes/mandalay/includes/search/filterControls.xsl @@ -210,22 +210,22 @@ @@ -308,22 +309,45 @@ - - + + + + + + + + + + + + + + + +