sources moved to github

This commit is contained in:
domi 2011-01-16 10:42:46 +00:00
parent d403cf46be
commit 6b489ff264
5 changed files with 0 additions and 65 deletions

View file

@ -1,34 +0,0 @@
<!--
The MIT License
Copyright (c) 2004-2009, Sun Microsystems, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:entry title="${%Login Command}">
<f:textbox field="commandLine" />
</f:entry>
<f:entry title="${%Groups Command}" help="/plugin/script-realm/help-groupsCommandLine.html">
<f:textbox field="groupsCommandLine" />
</f:entry>
<f:entry title="${%Groups Delimiter}" help="/plugin/script-realm/help-groupsDelimiter.html">
<f:textbox field="groupsDelimiter" default="," />
</f:entry>
</j:jelly>

View file

@ -1,13 +0,0 @@
<div>
Delegates the authentication to a custom script. This is useful if you need to plug into
a custom authentication scheme, but don't want to write your own plugin.
<p>
Each time the authentication is attemped (which is once per session),
the specified script will be invoked with the username in the 'U' environment variable
and the password in the 'P' environment variable. If the script returns exit code 0,
the authentication is considered successful, and otherwise failure.
<p>
In case of the failure, the output from the process will be reported in the exception message.
</div>

View file

@ -1,3 +0,0 @@
<div>
This plugin adds authentication via user-defined script, in additon to the orignal script-realm, this one also supports groups.
</div>

View file

@ -1,12 +0,0 @@
<div>
Delegates the groups resolution to a custom script.
<p>
Each time the authentication is attemped (which is once per session),
the specified script will be invoked with the username in the 'U' environment variable.
If the script returns exit code 0, the output will be tokenized by the delimiter (default: ',')
to create a groups with each token.
<p>
In case of the failure, the output from the process will be reported in the exception message.
</div>

View file

@ -1,3 +0,0 @@
<div>
Delimiter to split the groups within the returned output of the groups script.
</div>