Skip to content
Snippets Groups Projects
Commit b0a637c6 authored by Martin Haase's avatar Martin Haase
Browse files

minor things

git-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@9445 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent 8f507418
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ if ($authZinstance == null) { ...@@ -20,6 +20,7 @@ if ($authZinstance == null) {
<head> <head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>TextGrid WebAuth</title> <title>TextGrid WebAuth</title>
<link rel="stylesheet" type="text/css" media="screen,print" href="main.css" />
</head> </head>
<body> <body>
......
...@@ -69,6 +69,6 @@ if (!$bound) { ...@@ -69,6 +69,6 @@ if (!$bound) {
$_SERVER["Shib-Identity-Provider"] = $LDAPname; $_SERVER["Shib-Identity-Provider"] = $LDAPname;
include("../secure/TextGrid-WebAuth.php"); //assuming the request context remains include("TextGrid-WebAuth.php"); //assuming the request context remains
?> ?>
.paragraph_style {
color: #002142;
font-family: 'ArialMT', 'Arial', sans-serif;
font-size: 15px;
font-style: normal;
font-variant: normal;
font-weight: normal;
letter-spacing: 0;
line-height: 20px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
opacity: 1.00;
padding-bottom: 0px;
padding-top: 0px;
text-align: left;
text-decoration: none;
text-indent: 0px;
text-transform: none;
}
.paragraph_style_grey {
color: #808080;
font-family: 'ArialMT', 'Arial', sans-serif;
font-size: 15px;
font-style: normal;
font-variant: normal;
font-weight: normal;
letter-spacing: 0;
line-height: 20px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
opacity: 1.00;
padding-bottom: 0px;
padding-top: 0px;
text-align: left;
text-decoration: none;
text-indent: 0px;
text-transform: none;
}
.paragraph_style_small {
color: #808080;
font-family: 'ArialMT', 'Arial', sans-serif;
font-size: 11px;
font-style: normal;
font-variant: normal;
font-weight: normal;
letter-spacing: 0;
line-height: 20px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
opacity: 1.00;
padding-bottom: 0px;
padding-top: 0px;
text-align: center;
text-decoration: none;
text-indent: 0px;
text-transform: none;
}
.style_SkipStroke {
background: transparent;
opacity: 1.00;
}
.style_SkipStroke_1 {
background: transparent;
opacity: 1.00;
}
.graphic_image_style_default_SkipStroke {
background: transparent;
opacity: 1.00;
}
.graphic_textbox_layout_style_default_External_140_30 {
position: relative;
}
.graphic_textbox_layout_style_default_External_140_31 {
position: relative;
}
.graphic_textbox_layout_style_default {
padding: 4px;
}
.graphic_textbox_style_default_SkipStroke {
background: transparent;
opacity: 1.00;
}
.link
{
color: #000063;
text-decoration: underline;
}
.link:visited {
color: #666666;
text-decoration: underline;
}
.link:hover {
color: #000000;
text-decoration: underline;
}
.spacer {
font-size: 1px;
line-height: 1px;
}
body {
-webkit-text-size-adjust: none;
}
div {
overflow: visible;
}
img {
border: none;
}
div.paragraph {
position: relative;
}
li.full-width {
width: 100px;
}
div.apiChangeNotification {
border: 1px solid #ff0000;
background-color: #ffaaaa;
color: #ff0000;
margin: 1em;
padding: 1em;
}
div.confNotification {
border: 1px solid #0000ff;
background-color: #eeeeff;
font-size: 11px;
font-family: 'ArialMT' 'Arial' sans-serif;
color: black;
margin: 1em;
padding: 1em;
}
../WebAuthN/iso3166_en_code_lists.txt
\ No newline at end of file
...@@ -26,6 +26,8 @@ class RBAC { ...@@ -26,6 +26,8 @@ class RBAC {
protected $userAttributes; protected $userAttributes;
protected $SLCdata;
public function __construct( $configfilepath , $authZinstance ) { public function __construct( $configfilepath , $authZinstance ) {
require_once( "soapTypes.inc.php" ); require_once( "soapTypes.inc.php" );
...@@ -61,6 +63,7 @@ class RBAC { ...@@ -61,6 +63,7 @@ class RBAC {
// ----------------------------------------------------- // -----------------------------------------------------
// You'll need these services // You'll need these services
// ----------------------------------------------------- // -----------------------------------------------------
$this->soapExtra = new SoapClient( $this->rbacbase . "wsdl/tgextra.wsdl" ); $this->soapExtra = new SoapClient( $this->rbacbase . "wsdl/tgextra.wsdl" );
$this->soapPolicy = new SoapClient( $this->rbacbase . "wsdl/tgsystem.wsdl" ); $this->soapPolicy = new SoapClient( $this->rbacbase . "wsdl/tgsystem.wsdl" );
$this->soapReview = new SoapClient( $this->rbacbase . "wsdl/tgreview.wsdl" ); $this->soapReview = new SoapClient( $this->rbacbase . "wsdl/tgreview.wsdl" );
...@@ -357,4 +360,4 @@ class RBAC { ...@@ -357,4 +360,4 @@ class RBAC {
} }
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment