Author: simonetripodi
Date: Sat Dec 31 17:25:54 2011
New Revision: 1226142
URL: http://svn.apache.org/viewvc?rev=1226142&view=rev
Log:
[MSKINS-10] Suppress line wrapping in navigation caused by spaces or hyphens -
Solution provided by Robert Scholte
Added:
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml (with props)
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
(with props)
Modified:
maven/skins/trunk/maven-fluido-skin/src/main/resources/css/maven-base.css
Added: maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml
URL:
http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml?rev=1226142&view=auto
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml (added)
+++ maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml Sat Dec 31
17:25:54 2011
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.apache.maven.skins.its</groupId>
+ <artifactId>mskins-10</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <properties>
+ <skinName>@project.name@</skinName>
+ <skinDescription>@project.description@</skinDescription>
+ <skinGroupId>@project.groupId@</skinGroupId>
+ <skinArtifactId>@project.artifactId@</skinArtifactId>
+ <skinVersion>@project.version@</skinVersion>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.0</version>
+ </plugin>
+ </plugins>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
+ <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project>
\ No newline at end of file
Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
URL:
http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml?rev=1226142&view=auto
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
(added)
+++ maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml Sat
Dec 31 17:25:54 2011
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+ -->
+
+<project xmlns="http://maven.apache.org/DECORATION/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0
http://maven.apache.org/xsd/decoration-1.1.0.xsd"
+ name="${skinName}">
+
+ <skin>
+ <groupId>${skinGroupId}</groupId>
+ <artifactId>${skinArtifactId}</artifactId>
+ <version>${skinVersion}</version>
+ </skin>
+
+ <body>
+ <menu>
+ <item name="Suppress line wrapping in navigation caused by spaces or
hyphens" href="./"/>
+ </menu>
+
+ <menu ref="reports"/>
+ </body>
+</project>
\ No newline at end of file
Propchange:
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange:
maven/skins/trunk/maven-fluido-skin/src/it/mskins-10/src/site/site.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified:
maven/skins/trunk/maven-fluido-skin/src/main/resources/css/maven-base.css
URL:
http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/main/resources/css/maven-base.css?rev=1226142&r1=1226141&r2=1226142&view=diff
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/main/resources/css/maven-base.css
(original)
+++ maven/skins/trunk/maven-fluido-skin/src/main/resources/css/maven-base.css
Sat Dec 31 17:25:54 2011
@@ -22,3 +22,4 @@
.clear{clear:both;visibility: hidden;}
.clear hr{display: none;}
.section p,.section p,.section dt,.section dt{margin-right: 7px;margin-left:
7px;}
+#leftColumn li.none {text-indent: -1em;margin-left: 1em;}