NIHVIVO-707 First draft of Manage Web Pages screen. JS not yet functional.
This commit is contained in:
parent
619aa66c67
commit
b2ce6fb0e6
2 changed files with 7 additions and 4 deletions
|
@ -33,7 +33,7 @@ public class 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>();
|
||||
Iterator<String> varNames = soln.varNames();
|
||||
while(varNames.hasNext()){
|
||||
|
@ -45,7 +45,7 @@ public class QueryUtils {
|
|||
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>();
|
||||
Iterator<String> varNames = soln.varNames();
|
||||
while(varNames.hasNext()){
|
||||
|
@ -57,7 +57,7 @@ public class QueryUtils {
|
|||
return map;
|
||||
}
|
||||
|
||||
protected static Object nodeToObject( RDFNode node ){
|
||||
public static Object nodeToObject( RDFNode node ){
|
||||
if( node == null ){
|
||||
return "";
|
||||
}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 ){
|
||||
return "";
|
||||
}else if( node.isLiteral() ){
|
||||
|
|
|
@ -197,6 +197,7 @@ form textarea {
|
|||
width: 100%;
|
||||
}
|
||||
#authorships a.remove:link,
|
||||
#manageWebpages a.remove:link,
|
||||
#showAddForm a.cancel:link,
|
||||
form a:link.cancel,
|
||||
form a:visited.cancel {
|
||||
|
@ -207,6 +208,8 @@ form a:visited.cancel {
|
|||
}
|
||||
#authorships a.remove:hover,
|
||||
#authorships a.remove:active,
|
||||
#manageWebpages a.remove:hover,
|
||||
#manageWebpages a.remove:active,
|
||||
#showAddForm a.cancel:hover,
|
||||
#showAddForm a.cancel:active,
|
||||
form a:hover.cancel,
|
||||
|
|
Loading…
Add table
Reference in a new issue