- Timestamp:
- 05/07/14 13:28:34 (10 years ago)
- 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 13 13 <config-file-groups/> 14 14 </spring-data> 15 <properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1"> 16 <!-- 17 Properties that influence various parts of the IDE, especially code formatting and the like. 18 You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up. 19 That way multiple projects can share the same settings (useful for formatting rules for example). 20 Any 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> 15 24 </project-shared-configuration> -
vlo/trunk/vlo-web-app/pom.xml
r5116 r5146 161 161 <!-- JavaMelody for application monitoring --> 162 162 <dependency> 163 164 165 166 167 168 169 170 171 172 173 174 175 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> 176 176 </dependency> 177 177 </dependencies> … … 225 225 </plugin> 226 226 <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> 227 249 <groupId>org.mortbay.jetty</groupId> 228 250 <artifactId>jetty-maven-plugin</artifactId> … … 268 290 </configuration> 269 291 </plugin> 270 292 <plugin> 271 293 <groupId>org.codehaus.mojo</groupId> 272 294 <artifactId>cobertura-maven-plugin</artifactId> … … 277 299 </formats> 278 300 </configuration> 279 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> 287 309 </plugin> 288 310 </plugins> … … 302 324 <reporting> 303 325 <plugins> 304 326 <plugin> 305 327 <groupId>org.codehaus.mojo</groupId> 306 328 <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 29 29 30 30 #header #logo { 31 background: url('vloheader .png') no-repeat;31 background: url('vloheader_clarin-d.png') no-repeat; 32 32 width: 100%; 33 33 height: 100%; -
vlo/trunk/vlo-web-app/src/main/less/eu/clarin/cmdi/vlo/wicket/pages/vlo.less
r5144 r5146 21 21 */ 22 22 23 @import "style .css";24 @import "colour .css";23 @import "style"; 24 @import "colour"; 25 25 26 26 /* styles for header image */ 27 @import "vlo-header .css";27 @import "vlo-header"; 28 28 29 29 /* styles for static topic section */ 30 @import "vlo-top .css";30 @import "vlo-top"; 31 31 32 32 /* styles for collection selection */ 33 @import "vlo-collections .css";33 @import "vlo-collections"; 34 34 35 35 /* styles for facet panels */ 36 @import "vlo-facets .css";36 @import "vlo-facets"; 37 37 38 38 /* styles for search bar */ 39 @import "vlo-search .css";39 @import "vlo-search"; 40 40 41 41 /* 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 23 23 /** STYLE FOR CLARIN-D THEME **/ 24 24 25 @import "style .css";26 @import "c larin-d/colour.css";25 @import "style"; 26 @import "colour_clarin-d"; 27 27 28 28 /* styles for header and static topic section */ 29 @import " clarin-d/vlo-header.css";29 @import "vlo-header_clarin-d"; 30 30 31 31 /* styles for static topic section */ 32 @import "vlo-top .css";32 @import "vlo-top"; 33 33 34 34 /* styles for collection selection */ 35 @import "vlo-collections .css";35 @import "vlo-collections"; 36 36 37 37 /* styles for facet panels */ 38 @import "vlo-facets .css";38 @import "vlo-facets"; 39 39 40 40 /* styles for search bar */ 41 @import "vlo-search .css";41 @import "vlo-search"; 42 42 43 43 /* styles for record details */ 44 @import "vlo-record .css";44 @import "vlo-record";
Note: See TracChangeset
for help on using the changeset viewer.