NIHVIVO-707 First draft of Manage Web Pages screen. JS not yet functional.

This commit is contained in:
ryounes 2011-07-11 21:13:00 +00:00
parent 619aa66c67
commit b2ce6fb0e6
2 changed files with 7 additions and 4 deletions

View file

@ -33,7 +33,7 @@ public class QueryUtils {
private QueryUtils() { } private QueryUtils() { }
protected static Map<String,Object> querySolutionToObjectValueMap( QuerySolution soln){ public static Map<String,Object> querySolutionToObjectValueMap( QuerySolution soln){
Map<String,Object> map = new HashMap<String,Object>(); Map<String,Object> map = new HashMap<String,Object>();
Iterator<String> varNames = soln.varNames(); Iterator<String> varNames = soln.varNames();
while(varNames.hasNext()){ while(varNames.hasNext()){
@ -45,7 +45,7 @@ public class QueryUtils {
return map; return map;
} }
protected static Map<String,String> querySolutionToStringValueMap( QuerySolution soln ){ public static Map<String,String> querySolutionToStringValueMap( QuerySolution soln ){
Map<String,String> map = new HashMap<String,String>(); Map<String,String> map = new HashMap<String,String>();
Iterator<String> varNames = soln.varNames(); Iterator<String> varNames = soln.varNames();
while(varNames.hasNext()){ while(varNames.hasNext()){
@ -57,7 +57,7 @@ public class QueryUtils {
return map; return map;
} }
protected static Object nodeToObject( RDFNode node ){ public static Object nodeToObject( RDFNode node ){
if( node == null ){ if( node == null ){
return ""; return "";
}else if( node.isLiteral() ){ }else if( node.isLiteral() ){
@ -74,7 +74,7 @@ public class QueryUtils {
} }
} }
protected static String nodeToString( RDFNode node ){ public static String nodeToString( RDFNode node ){
if( node == null ){ if( node == null ){
return ""; return "";
}else if( node.isLiteral() ){ }else if( node.isLiteral() ){

View file

@ -197,6 +197,7 @@ form textarea {
width: 100%; width: 100%;
} }
#authorships a.remove:link, #authorships a.remove:link,
#manageWebpages a.remove:link,
#showAddForm a.cancel:link, #showAddForm a.cancel:link,
form a:link.cancel, form a:link.cancel,
form a:visited.cancel { form a:visited.cancel {
@ -207,6 +208,8 @@ form a:visited.cancel {
} }
#authorships a.remove:hover, #authorships a.remove:hover,
#authorships a.remove:active, #authorships a.remove:active,
#manageWebpages a.remove:hover,
#manageWebpages a.remove:active,
#showAddForm a.cancel:hover, #showAddForm a.cancel:hover,
#showAddForm a.cancel:active, #showAddForm a.cancel:active,
form a:hover.cancel, form a:hover.cancel,