-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged feature/ICPCO-67 and ICPCO-66 into develop
- Loading branch information
Showing
26 changed files
with
1,541 additions
and
442 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0" ?> | ||
<!-- | ||
COmanage Registry Notification Widget Plugin Database Schema | ||
Portions licensed to the University Corporation for Advanced Internet | ||
Development, Inc. ("UCAID") under one or more contributor license agreements. | ||
See the NOTICE file distributed with this work for additional information | ||
regarding copyright ownership. | ||
UCAID licenses this file to you under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with the | ||
License. You may obtain a copy of the License at: | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<!-- | ||
While this schema mostly works with database prefixes, foreign key constraints | ||
must be specified in raw SQL, which needs the prefixed table name. | ||
--> | ||
<schema version="0.3"> | ||
<table name="co_grouper_lites"> | ||
<field name="id" type="I"> | ||
<key /> | ||
<autoincrement /> | ||
</field> | ||
<field name="co_dashboard_widget_id" type="I"> | ||
<constraint>REFERENCES cm_co_dashboard_widgets(id)</constraint> | ||
</field> | ||
<field name="connUrl" type="C" size="256" /> | ||
<field name="connVer" type="C" size="256" /> | ||
<field name="connUser" type="C" size="64" /> | ||
<field name="connPass" type="C" size="64" /> | ||
<field name="created" type="T" /> | ||
<field name="modified" type="T" /> | ||
|
||
<index name="co_grouper_lites_i1"> | ||
<col>co_dashboard_widget_id</col> | ||
<unique /> | ||
</index> | ||
</table> | ||
</schema> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?php | ||
|
||
$cm_grouper_lite_texts['en_US'] = array( | ||
'pl.grouperlite.config.display.title' => 'Grouper Configuration Settings', | ||
'pl.grouperlite.config.edit.title' => 'Edit Grouper Configuration Settings', | ||
'pl.grouperlite.config.grouper-url' => 'Grouper URL', | ||
'pl.grouperlite.config.grouper-version' => 'Grouper Version', | ||
'pl.grouperlite.config.grouper-un' => 'Username', | ||
'pl.grouperlite.config.grouper-pw' => 'Password', | ||
|
||
'pl.grouperlite.crumb.root' => 'Grouper groups', | ||
'pl.grouperlite.nav.groups' => 'Groups', | ||
'pl.grouperlite.nav.groups-presided' => 'Groups I preside over', | ||
'pl.grouperlite.nav.email-lists' => 'Email lists', | ||
'pl.grouperlite.nav.email-lists-managed' => 'Email lists I manage', | ||
'pl.grouperlite.nav.create-group' => 'Create group', | ||
|
||
'pl.grouperlite.title.root' => 'Grouper Groups:', | ||
'pl.grouperlite.title.groupinfo' => 'Group configuration and attributes', | ||
'pl.grouperlite.title.groupowner' => 'Grouper Groups I Manage', | ||
'pl.grouperlite.title.groupoptin' => 'Grouper Groups I Can Join', | ||
'pl.grouperlite.title.emaillists' => 'Email lists', | ||
'pl.grouperlite.title.emaillistsmanaged' => 'Email lists I manage', | ||
'pl.grouperlite.title.emaillistsinfo' => 'Email list configuration and attributes', | ||
'pl.grouperlite.title.groupcreate' => 'Create Grouper Group', | ||
|
||
'pl.grouperlite.message.flash.join-group-success' => 'You have been added to the group!', | ||
'pl.grouperlite.message.flash.join-group-failed' => 'You are unable to join the group!', | ||
'pl.grouperlite.message.flash.join-group-error' => 'An error occurred in joining the group, please try again later.', | ||
|
||
'pl.grouperlite.message.flash.leave-group-success' => 'You have been deleted from the group!', | ||
'pl.grouperlite.message.flash.leave-group-failed' => 'You are unable to delete the group!', | ||
'pl.grouperlite.message.flash.leave-group-error' => 'An error occurred in leaving the group, please try again later.', | ||
|
||
'pl.grouperlite.table.name' => 'Name', | ||
'pl.grouperlite.table.description' => 'Description', | ||
'pl.grouperlite.table.status' => 'Status', | ||
'pl.grouperlite.table.action' => 'Action', | ||
|
||
'pl.grouperlite.value.descr.zerostate' => 'No Description', | ||
'pl.grouperlite.value.enabled' => 'Enabled', | ||
'pl.grouperlite.value.disabled' => 'Disabled', | ||
|
||
'pl.grouperlite.action.join-group' => 'Join group', | ||
'pl.grouperlite.action.leave-group' => 'Leave group', | ||
'pl.grouperlite.action.edit-group' => 'Edit', | ||
'pl.grouperlite.action.disable-group' => 'Disable', | ||
'pl.grouperlite.action.subscribe' => 'Subscribe', | ||
'pl.grouperlite.action.unsubscribe' => 'Unsubscribe', | ||
'pl.grouperlite.action.search' => 'Search', | ||
'pl.grouperlite.action.remove' => 'Remove', | ||
|
||
'pl.grouperlite.form.group.template.label' => 'Select a template', | ||
'pl.grouperlite.form.group.template.empty' => '(choose one)', | ||
'pl.grouperlite.form.group.name.label' => 'Display name', | ||
'pl.grouperlite.form.group.name.help' => 'Name is the label that identifies this group, and might change.', | ||
'pl.grouperlite.form.group.stem.label' => 'Create in this folder:', | ||
'pl.grouperlite.form.group.stem.help' => 'Enter a folder name.', | ||
'pl.grouperlite.form.group.description.label' => 'Description:', | ||
'pl.grouperlite.form.group.description.help' => 'Description contains notes about the group, which could include: what the group represents, why it was created, etc.', | ||
'pl.grouperlite.form.group.privs.label' => 'Privileges', | ||
'pl.grouperlite.form.group.privs.label.READ' => 'READ', | ||
'pl.grouperlite.form.group.privs.label.VIEW' => 'VIEW', | ||
'pl.grouperlite.form.group.privs.label.OPTIN' => 'OPTIN', | ||
'pl.grouperlite.form.group.privs.label.OPTOUT' => 'OPTOUT', | ||
'pl.grouperlite.form.group.privs.label.ATTRIBUTE_READ' => 'ATTRIBUTE READ', | ||
'pl.grouperlite.form.group.subs.label' => 'Subscribers:', | ||
'pl.grouperlite.form.group.subs.help' => 'Select subscribers to add to the group.', | ||
'pl.grouperlite.form.group.subs.placeholder' => 'Search subscribers', | ||
'pl.grouperlite.form.group.action.save' => 'Save Group', | ||
|
||
'pl.grouperlite.search.tags.text' => 'Search', | ||
); |
Oops, something went wrong.