This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.Serializable; | |
import java.util.Date; | |
import java.util.UUID; | |
import org.openrdf.model.URI; | |
import org.openrdf.model.impl.URIImpl; | |
import org.openrdf.repository.object.annotations.iri; | |
@iri("http://protege.stanford.edu/ontologies/mappings/mappings.rdfs#Mapping_Metadata") | |
public class MappingMetadata implements Serializable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,5d0 | |
< # Get the local machine's FQDN -- DO NOT MODIFY | |
< require 'socket' | |
< $LOCAL_FQDN = Socket.gethostbyname(Socket.gethostname).first | |
< | |
< | |
14c9 | |
< $UI_URL = "http://#{$LOCAL_FQDN}" | |
--- | |
> $UI_URL = "http://demo.bioontology.org" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.sql.SQLException: Connection com.mysql.jdbc.JDBC4Connection@591227c4 is closed. | |
at org.apache.tomcat.dbcp.dbcp.DelegatingConnection.checkOpen(DelegatingConnection.java:354) | |
at org.apache.tomcat.dbcp.dbcp.DelegatingConnection.setAutoCommit(DelegatingConnection.java:331) | |
at org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setAutoCommit(PoolingDataSource.java:317) | |
at org.hibernate.transaction.JDBCTransaction.toggleAutoCommit(JDBCTransaction.java:194) | |
at org.hibernate.transaction.JDBCTransaction.commitAndResetAutoCommit(JDBCTransaction.java:142) | |
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:115) | |
at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:655) | |
at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:732) | |
at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransacti |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2010-08-11 15:05:08,009 [http-8080-4] ERROR - Could not toggle autocommit | |
java.sql.SQLException: Connection com.mysql.jdbc.JDBC4Connection@4067f6d is closed. | |
at org.apache.tomcat.dbcp.dbcp.DelegatingConnection.checkOpen(DelegatingConnection.java:354) | |
at org.apache.tomcat.dbcp.dbcp.DelegatingConnection.setAutoCommit(DelegatingConnection.java:331) | |
at org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.setAutoCommit(PoolingDataSource.java:317) | |
at org.hibernate.transaction.JDBCTransaction.toggleAutoCommit(JDBCTransaction.java:194) | |
at org.hibernate.transaction.JDBCTransaction.commitAndResetAutoCommit(JDBCTransaction.java:142) | |
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:115) | |
at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:655) | |
at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:732) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Organization info | |
$ORG = "NCBO" | |
$ORG_URL = "http://www.bioontology.org" | |
# Site name (required) | |
$SITE = "BioPortal" | |
# The URL for the BioPortal Rails UI (this application) | |
$UI_URL = "http://bioportal.bioontology.org" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Organization info | |
$ORG = "NCBO" | |
$ORG_URL = "http://www.bioontology.org" | |
# Site name (required) | |
$SITE = "BioPortal" | |
# The URL for the BioPortal Rails UI (this application) | |
$UI_URL = "http://bioportal.bioontology.org" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jun 27, 2010 10:15:56 PM org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor processChildren | |
SEVERE: Exception invoking periodic operation: | |
java.lang.OutOfMemoryError: GC overhead limit exceeded | |
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:114) | |
at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1306) | |
at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1570) | |
at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1559) | |
at java.lang.Thread.run(Thread.java:619) | |
Jun 27, 2010 10:16:42 PM org.apache.tomcat.util.net.AprEndpoint$Acceptor run | |
SEVERE: Socket accept failed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery("#autocomplete").autocomplete(data, { | |
onFindValue: jumpToValue, | |
onItemSelect: jumpToSelect, | |
formatItem: formatItem | |
footer: '<div style="color: grey; font-size: 8pt; font-family: Verdana; padding: .8em .5em .3em;">Results provided by <a style="color: grey;" href="http://bioportal.bioontology.org">NCBO BioPortal</a></div>', | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The redirect controller allows for routes-based redirects | |
# as we move old content to new URL locations. | |
class RedirectController < ApplicationController | |
def index | |
if params[:url] # We were provided with a url to redirect to | |
params_string = "" | |
# Trigger to switch the placeholders | |
first_param = true | |
# Loop through the given params, ignore ones we know about or are provided by default |