Changeset 5146


Ignore:
Timestamp:
05/07/14 13:28:34 (10 years ago)
Author:
Twan Goosen
Message:

Migrated from css to less (contents not actually changed). css/less imports are now carried out compile time
Also removed mockup html pages

Location:
vlo/trunk/vlo-web-app
Files:
1 added
33 deleted
2 edited
4 copied
10 moved

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo-web-app/nb-configuration.xml

    r4498 r5146  
    1313        <config-file-groups/>
    1414    </spring-data>
     15    <properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
     16        <!--
     17Properties that influence various parts of the IDE, especially code formatting and the like.
     18You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
     19That way multiple projects can share the same settings (useful for formatting rules for example).
     20Any value defined here will override the pom.xml file value but is only applicable to the current project.
     21-->
     22        <org-netbeans-modules-css-prep.less_2e_configured>true</org-netbeans-modules-css-prep.less_2e_configured>
     23    </properties>
    1524</project-shared-configuration>
  • vlo/trunk/vlo-web-app/pom.xml

    r5116 r5146  
    161161        <!-- JavaMelody for application monitoring -->
    162162        <dependency>
    163                 <groupId>net.bull.javamelody</groupId>
    164                 <artifactId>javamelody-core</artifactId>
    165                 <version>1.50.0</version>
    166                 <exclusions>
    167                     <exclusion>
    168                         <groupId>org.springframework</groupId>
    169                         <artifactId>spring-aop</artifactId>
    170                     </exclusion>
    171                     <exclusion>
    172                         <groupId>org.springframework</groupId>
    173                         <artifactId>spring-context</artifactId>
    174                     </exclusion>
    175                 </exclusions>
     163            <groupId>net.bull.javamelody</groupId>
     164            <artifactId>javamelody-core</artifactId>
     165            <version>1.50.0</version>
     166            <exclusions>
     167                <exclusion>
     168                    <groupId>org.springframework</groupId>
     169                    <artifactId>spring-aop</artifactId>
     170                </exclusion>
     171                <exclusion>
     172                    <groupId>org.springframework</groupId>
     173                    <artifactId>spring-context</artifactId>
     174                </exclusion>
     175            </exclusions>
    176176        </dependency>
    177177    </dependencies>
     
    225225            </plugin>
    226226            <plugin>
     227                <!-- Compiles .less files into .css -->
     228                <groupId>org.lesscss</groupId>
     229                <artifactId>lesscss-maven-plugin</artifactId>
     230                <version>1.3.3</version>
     231                <configuration>
     232                    <sourceDirectory>${project.basedir}/src/main/less</sourceDirectory>
     233                    <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
     234                    <compress>true</compress>
     235                    <force>true</force>
     236                    <includes>
     237                        <include>**/*</include>
     238                    </includes>
     239                </configuration>
     240                <executions>
     241                    <execution>
     242                        <goals>
     243                            <goal>compile</goal>
     244                        </goals>
     245                    </execution>
     246                </executions>
     247            </plugin>
     248            <plugin>
    227249                <groupId>org.mortbay.jetty</groupId>
    228250                <artifactId>jetty-maven-plugin</artifactId>
     
    268290                </configuration>
    269291            </plugin>
    270              <plugin>
     292            <plugin>
    271293                <groupId>org.codehaus.mojo</groupId>
    272294                <artifactId>cobertura-maven-plugin</artifactId>
     
    277299                    </formats>
    278300                </configuration>
    279         <executions>
    280           <execution>
    281             <phase>site</phase>
    282             <goals>
    283               <goal>cobertura</goal>
    284             </goals>
    285           </execution>
    286         </executions>
     301                <executions>
     302                    <execution>
     303                        <phase>site</phase>
     304                        <goals>
     305                            <goal>cobertura</goal>
     306                        </goals>
     307                    </execution>
     308                </executions>
    287309            </plugin>
    288310        </plugins>
     
    302324    <reporting>
    303325        <plugins>
    304              <plugin>
     326            <plugin>
    305327                <groupId>org.codehaus.mojo</groupId>
    306328                <artifactId>cobertura-maven-plugin</artifactId>
  • vlo/trunk/vlo-web-app/src/main/less/eu/clarin/cmdi/vlo/wicket/pages/vlo-header_clarin-d.less

    r5144 r5146  
    2929
    3030#header #logo {
    31     background: url('vloheader.png') no-repeat;
     31    background: url('vloheader_clarin-d.png') no-repeat;
    3232    width: 100%;
    3333    height: 100%;
  • vlo/trunk/vlo-web-app/src/main/less/eu/clarin/cmdi/vlo/wicket/pages/vlo.less

    r5144 r5146  
    2121*/
    2222
    23 @import "style.css";
    24 @import "colour.css";
     23@import "style";
     24@import "colour";
    2525
    2626/* styles for header image */
    27 @import "vlo-header.css";
     27@import "vlo-header";
    2828
    2929/* styles for static topic section */
    30 @import "vlo-top.css";
     30@import "vlo-top";
    3131
    3232/* styles for collection selection */
    33 @import "vlo-collections.css";
     33@import "vlo-collections";
    3434
    3535/* styles for facet panels */
    36 @import "vlo-facets.css";
     36@import "vlo-facets";
    3737
    3838/* styles for search bar */
    39 @import "vlo-search.css";
     39@import "vlo-search";
    4040
    4141/* styles for record details */
    42 @import "vlo-record.css";
     42@import "vlo-record";
  • vlo/trunk/vlo-web-app/src/main/less/eu/clarin/cmdi/vlo/wicket/pages/vlo_clarin-d.less

    r5144 r5146  
    2323/** STYLE FOR CLARIN-D THEME **/
    2424
    25 @import "style.css";
    26 @import "clarin-d/colour.css";
     25@import "style";
     26@import "colour_clarin-d";
    2727
    2828/* styles for header and static topic section */
    29 @import "clarin-d/vlo-header.css";
     29@import "vlo-header_clarin-d";
    3030
    3131/* styles for static topic section */
    32 @import "vlo-top.css";
     32@import "vlo-top";
    3333
    3434/* styles for collection selection */
    35 @import "vlo-collections.css";
     35@import "vlo-collections";
    3636
    3737/* styles for facet panels */
    38 @import "vlo-facets.css";
     38@import "vlo-facets";
    3939
    4040/* styles for search bar */
    41 @import "vlo-search.css";
     41@import "vlo-search";
    4242
    4343/* styles for record details */
    44 @import "vlo-record.css";
     44@import "vlo-record";
Note: See TracChangeset for help on using the changeset viewer.