-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from mlibrary/projection
Projection scenarios
- Loading branch information
Showing
29 changed files
with
408 additions
and
156 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
INSERT INTO aa_coll VALUES( | ||
'projection-public', -- uniqueIdentifier | ||
'projection-public', -- commonName | ||
'auth system testing: projection', | ||
'unused', -- dlpsClass | ||
'none', -- dlpsSource (unused) | ||
'pw', -- dlpsAuthenMethod | ||
'n', -- dlpsAuthzType | ||
't', -- dlpsPartlyPublic | ||
0, -- manager | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_coll_obj VALUES( | ||
'www.lauth.local', -- server hostname, not vhost | ||
'/lauth/test-site/web/projection/public%', -- dlpsPath | ||
'projection-public', -- coll.uniqueIdentifier | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_coll VALUES( | ||
'projection-private', -- uniqueIdentifier | ||
'projection-private', -- commonName | ||
'auth system testing: projection', | ||
'unused', -- dlpsClass | ||
'none', -- dlpsSource (unused) | ||
'pw', -- dlpsAuthenMethod | ||
'n', -- dlpsAuthzType | ||
'f', -- dlpsPartlyPublic | ||
0, -- manager | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_coll_obj VALUES( | ||
'www.lauth.local', -- server hostname, not vhost | ||
'/lauth/test-site/web/projection/private%', -- dlpsPath | ||
'projection-private', -- coll.uniqueIdentifier | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_may_access VALUES( | ||
NULL, -- uniqueIdentifier | ||
'lauth-allowed', -- userid | ||
NULL, -- user_grp | ||
NULL, -- inst | ||
'projection-private', -- coll | ||
CURRENT_TIMESTAMP, | ||
'root', | ||
NULL, | ||
'f' | ||
); | ||
|
||
INSERT INTO aa_coll VALUES( | ||
'projection-private-also', -- uniqueIdentifier | ||
'projection-private-also', -- commonName | ||
'auth system testing: projection', | ||
'unused', -- dlpsClass | ||
'none', -- dlpsSource (unused) | ||
'pw', -- dlpsAuthenMethod | ||
'n', -- dlpsAuthzType | ||
'f', -- dlpsPartlyPublic | ||
0, -- manager | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_coll_obj VALUES( | ||
'www.lauth.local', -- server hostname, not vhost | ||
'/lauth/test-site/web/projection/private-also%', -- dlpsPath | ||
'projection-private-also', -- coll.uniqueIdentifier | ||
CURRENT_TIMESTAMP, 'root', -- modified info | ||
'f' -- deleted | ||
); | ||
|
||
INSERT INTO aa_user VALUES( | ||
'lauth-allowed-also',NULL,'Lauth',NULL,'Tester-Allowed','[email protected]', | ||
NULL, -- org unit | ||
'Library auth system test user - this user is granted access', | ||
'Ann Arbor','MI','48109-119',NULL,NULL,'Staff',NULL, | ||
'!none', -- umich id, !none | ||
'@umich.edu', -- password, @umich.edu MAY signify SSO | ||
0,NULL, | ||
CURRENT_TIMESTAMP,'root', -- modified | ||
NULL, -- expiry | ||
'f' | ||
); | ||
|
||
INSERT INTO aa_may_access VALUES( | ||
NULL, -- uniqueIdentifier | ||
'lauth-allowed-also', -- userid | ||
NULL, -- user_grp | ||
NULL, -- inst | ||
'projection-private-also', -- coll | ||
CURRENT_TIMESTAMP, | ||
'root', | ||
NULL, | ||
'f' | ||
) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.