Merge branch 'develop' of git://github.com/vivo-project/Vitro into develop
This commit is contained in:
commit
1b3b31ef59
5 changed files with 45 additions and 3 deletions
2
dependencies/pom.xml
vendored
2
dependencies/pom.xml
vendored
|
@ -134,7 +134,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>mysql</groupId>
|
<groupId>mysql</groupId>
|
||||||
<artifactId>mysql-connector-java</artifactId>
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
<version>5.1.36</version>
|
<version>5.1.42</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.sf.jga</groupId>
|
<groupId>net.sf.jga</groupId>
|
||||||
|
|
32
pom.xml
32
pom.xml
|
@ -100,6 +100,33 @@
|
||||||
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>dependency-check</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>dependency-check</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.owasp</groupId>
|
||||||
|
<artifactId>dependency-check-maven</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<skipProvidedScope>true</skipProvidedScope>
|
||||||
|
<skipRuntimeScope>true</skipRuntimeScope>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>release</id>
|
<id>release</id>
|
||||||
<build>
|
<build>
|
||||||
|
@ -192,6 +219,11 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.owasp</groupId>
|
||||||
|
<artifactId>dependency-check-maven</artifactId>
|
||||||
|
<version>2.0.1</version>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>2.5.5</version>
|
<version>2.5.5</version>
|
||||||
|
|
|
@ -424,6 +424,15 @@
|
||||||
<url-pattern>/jenaAdmin</url-pattern>
|
<url-pattern>/jenaAdmin</url-pattern>
|
||||||
</servlet-mapping>
|
</servlet-mapping>
|
||||||
|
|
||||||
|
<servlet>
|
||||||
|
<servlet-name>DumpRestoreController</servlet-name>
|
||||||
|
<servlet-class>edu.cornell.mannlib.vitro.webapp.controller.datatools.dumprestore.DumpRestoreController</servlet-class>
|
||||||
|
</servlet>
|
||||||
|
<servlet-mapping>
|
||||||
|
<servlet-name>DumpRestoreController</servlet-name>
|
||||||
|
<url-pattern>/dumpRestore/*</url-pattern>
|
||||||
|
</servlet-mapping>
|
||||||
|
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>EditFrontController</servlet-name>
|
<servlet-name>EditFrontController</servlet-name>
|
||||||
<servlet-class>edu.cornell.mannlib.vedit.controller.EditFrontController</servlet-class>
|
<servlet-class>edu.cornell.mannlib.vedit.controller.EditFrontController</servlet-class>
|
||||||
|
|
|
@ -7,7 +7,7 @@ $(document).ready(function(){
|
||||||
// fade out welcome-message when user logs in
|
// fade out welcome-message when user logs in
|
||||||
jQuery.extend(this, i18nStrings);
|
jQuery.extend(this, i18nStrings);
|
||||||
|
|
||||||
jQuery('section#welcome-message').css('display', 'block').delay(2000).fadeOut(1500);
|
jQuery('section#welcome-message').css('display', 'block').delay(2000).fadeOut(1500, function() { jQuery('section#welcome-msg-container').remove(); });
|
||||||
|
|
||||||
// fade in flash-message when user logs out
|
// fade in flash-message when user logs out
|
||||||
jQuery('section#flash-message').css('display', 'none').fadeIn(1500);
|
jQuery('section#flash-message').css('display', 'none').fadeIn(1500);
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
|
|
||||||
<#-- Default individual profile page template -->
|
<#-- Default individual profile page template -->
|
||||||
<#--@dumpAll /-->
|
<#--@dumpAll /-->
|
||||||
|
<#include "individual-adminPanel.ftl">
|
||||||
<section id="individual-intro" class="vcard" role="region" <@mf.sectionSchema individual/>>
|
<section id="individual-intro" class="vcard" role="region" <@mf.sectionSchema individual/>>
|
||||||
|
|
||||||
<section id="share-contact" role="region">
|
<section id="share-contact" role="region">
|
||||||
<#-- Image -->
|
<#-- Image -->
|
||||||
<#assign individualImage>
|
<#assign individualImage>
|
||||||
|
@ -34,7 +36,6 @@
|
||||||
</section>
|
</section>
|
||||||
<!-- start section individual-info -->
|
<!-- start section individual-info -->
|
||||||
<section id="individual-info" ${infoClass!} role="region">
|
<section id="individual-info" ${infoClass!} role="region">
|
||||||
<#include "individual-adminPanel.ftl">
|
|
||||||
|
|
||||||
<#if individualProductExtensionPreHeader??>
|
<#if individualProductExtensionPreHeader??>
|
||||||
${individualProductExtensionPreHeader}
|
${individualProductExtensionPreHeader}
|
||||||
|
|
Loading…
Add table
Reference in a new issue