Home
last modified time | relevance | path

Searched refs:username (Results 176 – 200 of 248) sorted by path

12345678910

/plugin/picasawebalbum/orig/
H A Djquery.pwi.js28 if (settings.username === '') {
83 …+ $img_base + "?imgmax=" + settings.photoSize + "' rel='lb-" + settings.username + "' title='" + $…
204 settings.popupExt($s.find("a[rel='lb-" + settings.username + "']"));
206 $s.find("a[rel='lb-" + settings.username + "']").bind('click.pwi', clickThumb);
208 $s.find("a[rel='lb-" + settings.username + "']").slimbox(settings.slimbox_config);
225 settings.popupExt($s.find("a[rel='lb-" + settings.username + "']"));
227 $s.find("a[rel='lb-" + settings.username + "']").bind('click', clickThumb);
229 $s.find("a[rel='lb-" + settings.username + "']").slimbox(settings.slimbox_config);
247 …var $url = 'http://picasaweb.google.com/data/feed/api/user/' + settings.username + '?kind=album&ac…
260 …var $url = 'http://picasaweb.google.com/data/feed/api/user/' + settings.username + '/album/' + set…
[all …]
H A Djquery.pwi.js.patch6 if (settings.username === '') {
7 - alert('Make sure you specify at least your username.' + '\n' + 'See http://pwi.googlecode.com …
8 + alert('Make sure you specify at least your username.' + '\n' + 'See pwi.googlecode.com for mor…
/plugin/picasawebalbum/
H A Dscript.js4 function on_document_ready(div_id, username, mode, album) { argument
7 username: username,
/plugin/pureldap/classes/
H A DADClient.php27 public function getUser($username, $fetchgroups = true)
29 $entry = $this->getUserEntry($username);
37 * @param string $username
40 protected function getUserEntry($username)
43 $samaccountname = $this->simpleUser($username);
44 $userprincipal = $this->qualifiedUser($username);
68 public function setPassword($username, $newpass, $oldpass = null)
72 $entry = $this->getUserEntry($username);
74 $this->error("User '$username' not found", __FILE__, __LINE__);
81 if ($this->isAuthenticated !== $this->prepareBindUser($username)) {
26 getUser($username, $fetchgroups = true) global() argument
[all...]
H A DClient.php28 /** @var bool|string is this client authenticated already? Contains username if yes */
190 * @param string $username
194 public function getCachedUser($username, $fetchgroups = true)
199 if (isset($this->userCache[$username])) {
200 if (!$fetchgroups || is_array($this->userCache[$username]['grps'])) {
201 return $this->userCache[$username];
207 $cachename = getCacheName($username, '.pureldap-user');
210 $this->userCache[$username] = json_decode(
216 if (!$fetchgroups || is_array($this->userCache[$username]['grps'])) {
217 return $this->userCache[$username];
186 getCachedUser($username, $fetchgroups = true) global() argument
228 getUser($username, $fetchgroups = true) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php85 * A Simple Bind to LDAP with a username and password.
87 * @param string $username
92 public function bind(string $username, string $password): LdapMessageResponse
94 return $this->sendAndReceive(Operations::bind($username, $password)->setVersion($this->options['version']));
100 * @param array $options The SASL options (ie. ['username' => '...', 'password' => '...'])
89 bind(string $username, string $password) global() argument
H A DOperations.php69 * A simple bind request with a username and password.
71 * @param string $username
75 public static function bind(string $username, string $password)
77 return new SimpleBindRequest($username, $password);
96 * @param string $username
99 public static function bindAnonymously(string $username = '')
101 return new AnonBindRequest($username);
163 public static function passwordModify(string $username, string $oldPassword, string $newPassword): PasswordModifyRequest
165 return new PasswordModifyRequest($username, $oldPassword, $newPassword);
73 bind(string $username, string $password) global() argument
97 bindAnonymously(string $username = '') global() argument
159 passwordModify(string $username, string $oldPassword, string $newPassword) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DAnonBindRequest.php25 * @param string $username
28 public function __construct(string $username = '', int $version = 3)
30 $this->username = $username;
27 __construct(string $username = '', int $version = 3) global() argument
H A DBindRequest.php43 protected $username;
65 * @param string $username
68 public function setUsername(string $username)
70 $this->username = $username;
80 return $this->username;
92 Asn1::octetString($this->username),
42 protected $username; global() variable in FreeDSx\\Ldap\\Operation\\Request\\BindRequest
67 setUsername(string $username) global() argument
H A DPasswordModifyRequest.php70 * @param null|string $username argument
73 public function setUsername(?string $username)
75 $this->userIdentity = $username;
H A DSaslBindRequest.php52 $this->username = '';
H A DSimpleBindRequest.php19 * Represents a simple bind request consisting of a username (dn, etc) and a password.
37 * @param string $username
41 public function __construct(string $username, string $password, int $version = 3)
43 $this->username = $username;
80 if ($this->username === '' || $this->password === '') {
81 throw new BindException('A simple bind must have a non-empty username and password.');
40 __construct(string $username, string $password, int $version = 3) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DGenericRequestHandler.php44 public function bind(string $username, string $password): bool
43 bind(string $username, string $password) global() argument
H A DProxyRequestHandler.php50 public function bind(string $username, string $password): bool
53 return (bool) $this->ldap()->bind($username, $password);
49 bind(string $username, string $password) global() argument
H A DRequestHandlerInterface.php82 * A simple username/password bind. It should simply return true or false for whether the username and password is
88 public function bind(string $username, string $password): bool;
87 bind(string $username, string $password) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Token/
H A DAnonToken.php24 protected $username;
32 * @param null|string $username
35 public function __construct(?string $username = null, int $version = 3)
37 $this->username = $username;
46 return $this->username;
23 protected $username; global() variable in FreeDSx\\Ldap\\Server\\Token\\AnonToken
34 __construct(string $username = null, int $version = 3) global() argument
H A DBindToken.php15 * Represents a username/password token that is bound and authorized.
24 protected $username;
37 * @param string $username
41 public function __construct(string $username, string $password, int $version = 3)
43 $this->username = $username;
53 return $this->username;
23 protected $username; global() variable in FreeDSx\\Ldap\\Server\\Token\\BindToken
40 __construct(string $username, string $password, int $version = 3) global() argument
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DCramMD5Challenge.php84 if (!(isset($options['username']) && isset($options['password']))) {
85 throw new SaslException('A username and password is required for a client response.');
88 'username' => $options['username'],
97 if (!$received->has('username')) {
98 throw new SaslException('The client response must have a username.');
106 $username = $received->get('username');
111 throw new SaslException('The password option must be callable. It will be passed the username and challenge');
113 $expectedDigest = $password($username,
[all...]
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Encoder/
H A DCramMD5Encoder.php68 if (!$message->has('username')) {
69 throw new SaslEncodingException('The client response must contain a username.');
74 $username = $message->get('username');
81 return $username . ' ' . $digest;
106 'username' => $matches[1],
/plugin/redissue/redmine/
H A Dredmine.php37 function getIdByUsername($username){ argument
41 $pos = strpos($cur_name, $username);
/plugin/remotescript/lib/JsHttpRequest/
H A DJsHttpRequest.js50 _openArgs={method:(_2||"").toUpperCase(),url:_3,asyncFlag:_4,username:_5!=null?_5:"",password:_6!=n… property in t.open._openArgs
69 _a=this._openArgs.username+":"+this._openArgs.password+"@"+this._openArgs.url+"|"+_8+"#"+this._open…
387 xr.open(this.method,this.url,true,this.username,this.password);
/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest-form.js65 t.open = function(method, url, asyncFlag, username, password) { with (this){ argument
80 username: username != null? username : '', property in t.open._openArgs
107 …hash = this._openArgs.username + ':' + this._openArgs.password + '@' + this._openArgs.url + '|' + …
H A DJsHttpRequest-script-xml.js65 t.open = function(method, url, asyncFlag, username, password) { with (this){ argument
80 username: username != null? username : '', property in t.open._openArgs
107 …hash = this._openArgs.username + ':' + this._openArgs.password + '@' + this._openArgs.url + '|' + …
575 xr.open(this.method, this.url, true, this.username, this.password);
H A DJsHttpRequest-script.js65 t.open = function(method, url, asyncFlag, username, password) { with (this){ argument
80 username: username != null? username : '', property in t.open._openArgs
107 …hash = this._openArgs.username + ':' + this._openArgs.password + '@' + this._openArgs.url + '|' + …
H A DJsHttpRequest-xml.js65 t.open = function(method, url, asyncFlag, username, password) { with (this){ argument
80 username: username != null? username : '', property in t.open._openArgs
107 …hash = this._openArgs.username + ':' + this._openArgs.password + '@' + this._openArgs.url + '|' + …
517 xr.open(this.method, this.url, true, this.username, this.password);

12345678910