| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/ |
| H A D | CompareRequest.php | 40 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\CompareRequest 48 * @param string|Dn $dn 51 public function __construct($dn, EqualityFilter $filter) argument 53 $this->setDn($dn); 62 return $this->dn; 66 * @param string|Dn $dn 69 public function setDn($dn) argument 71 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 106 $dn = $type->getChild(0); 109 if (!$dn instanceof OctetStringType || $ava === null) { [all …]
|
| H A D | DeleteRequest.php | 34 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\DeleteRequest 37 * @param string|Dn $dn 39 public function __construct($dn) argument 41 $this->setDn($dn); 45 * @param string|Dn $dn 48 public function setDn($dn) argument 50 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 60 return $this->dn; 68 return Asn1::application(self::APP_TAG, Asn1::octetString($this->dn->toString()));
|
| H A D | ModifyRequest.php | 54 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest 57 * @param string|Dn $dn 60 public function __construct($dn, Change ...$changes) argument 62 $this->setDn($dn); 86 * @param string|Dn $dn 89 public function setDn($dn) argument 91 $this->dn = $dn instanceof $dn ? $dn : new Dn($dn); 101 return $this->dn; 114 $dn = $type->getChild(0); 116 if (!($dn instanceof OctetStringType && $changes instanceof SequenceType)) { [all …]
|
| H A D | ModifyDnRequest.php | 44 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest 62 * @param string|Dn $dn 67 public function __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null) argument 69 $this->setDn($dn); 80 return $this->dn; 84 * @param string|Dn $dn 87 public function setDn($dn) argument 89 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 189 Asn1::octetString($this->dn->toString()),
|
| H A D | AddRequest.php | 95 $dn = $type->getChild(0); 97 if (!($dn instanceof OctetStringType && $attrList instanceof SequenceType)) { 100 $dn = new Dn($dn->getValue()); 128 return new self(new Entry($dn, ...$attributes));
|
| H A D | DnRequestInterface.php | 24 * @param string|Dn $dn 27 public function setDn($dn); argument
|
| H A D | SearchRequest.php | 152 * @param string|Dn|null $dn 155 public function base($dn) argument 157 return $this->setBaseDn($dn);
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
| H A D | Dn.php | 36 protected $dn; variable in FreeDSx\\Ldap\\Entry\\Dn 44 * @param string $dn 46 public function __construct(string $dn) argument 48 $this->dn = $dn; 98 return $this->dn; 120 return $this->dn; 138 * @param string $dn 141 public static function isValid(string $dn): bool argument 144 (new self($dn))->toArray(); 159 if ($this->dn === '') { [all …]
|
| H A D | Entry.php | 36 protected $dn; variable in FreeDSx\\Ldap\\Entry\\Entry 44 * @param string|Dn $dn 47 public function __construct($dn, Attribute ...$attributes) argument 49 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 192 return $this->dn; 241 return $this->dn->toString(); 270 * @param string $dn 274 public static function create(string $dn, array $attributes = []): Entry argument 276 return self::fromArray($dn, $attributes); 282 * @param string $dn [all …]
|
| H A D | Entries.php | 94 * @param string $dn 97 public function get(string $dn): ?Entry argument 100 if ($entry->getDn()->toString() === $dn) {
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
| H A D | LdapResult.php | 101 protected $dn; variable in FreeDSx\\Ldap\\Operation\\LdapResult 113 …public function __construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', Ldap… argument 116 $this->dn = new Dn($dn); 134 return $this->dn; 161 Asn1::octetString($this->dn), 183 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 185 return new static($resultCode, $dn, $diagnosticMessage, ...$referrals); 225 $dn = $type->getChild(1); 227 if ($result === null || $dn === null || $diagnostic === null) { 233 $dn->getValue(),
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/ |
| H A D | Operations.php | 117 public static function compare(string $dn, string $attributeName, string $value): CompareRequest argument 119 return new CompareRequest($dn, Filters::equal($attributeName, $value)); 125 public static function delete(string $dn): DeleteRequest argument 127 return new DeleteRequest($dn); 143 public static function modify(string $dn, Change ...$changes): ModifyRequest argument 145 return new ModifyRequest($dn, ...$changes); 153 public static function move(string $dn, string $newParentDn): ModifyDnRequest argument 155 $dnObj = new Dn($dn); 157 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn); 181 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest argument [all …]
|
| H A D | LdapUrl.php | 66 protected $dn; variable in FreeDSx\\Ldap\\LdapUrl 94 * @param null|string|Dn $dn 97 public function setDn($dn) argument 99 $this->dn = $dn === null ? $dn : new Dn($dn); 106 return $this->dn; 267 return $url . '/' . self::encode($this->dn) . $this->getQueryString();
|
| H A D | LdapClient.php | 115 * @param string|Dn $dn 122 public function compare($dn, string $attributeName, string $value, Control ...$controls): bool argument 125 …$response = $this->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)-… 221 * @param string|Entry $dn 226 public function move($dn, $newParentDn): LdapMessageResponse argument 228 return $this->sendAndReceive(Operations::move($dn, $newParentDn)); 234 * @param string|Entry $dn 240 public function rename($dn, $newRdn, bool $deleteOldRdn = true): LdapMessageResponse argument 242 return $this->sendAndReceive(Operations::rename($dn, $newRdn, $deleteOldRdn));
|
| /plugin/webdavclient/ |
| D | admin.php | 87 $dn = $_REQUEST['moddn'][$connid]; 92 $this->hlp->modifyConnection($connid, $permission, $dn, $syncinterval, $write, $active); 97 $dn = $_REQUEST['mandn']; 101 … $this->hlp->addConnection($uri, $username, $password, $dn, $dn, $type, '3600', false, false); 188 foreach($this->result['calendars'] as $href => $dn) 192 '<input type="hidden" name="calendardn['.$idx.']" value="'.$dn.'">'. 193 hsc($dn).'</td><td>'.hsc($href).'</td></tr>'); 202 foreach($this->result['addressbooks'] as $href => $dn) 206 '<input type="hidden" name="addressbookdn['.$idx.']" value="'.$dn.'">'. 207 hsc($dn).'</td><td>'.hsc($href).'</td></tr>');
|
| /plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/ |
| D | X509.php | 163 private $dn; variable in phpseclib3\\File\\X509 479 $this->dn = $cert['tbsCertificate']['subject']; 480 if (!isset($this->dn)) { 532 $this->dn = $x509['tbsCertificate']['subject']; 1003 $olddn = $this->dn; 1010 $this->dn = $olddn; 1044 $this->dn = $olddn; 1682 if (empty($this->dn)) { 1683 $this->dn = ['rdnSequence' => []]; 1694 $this->dn['rdnSequence'][] = [ [all …]
|
| /plugin/pureldap/classes/ |
| H A D | ADClient.php | 175 foreach ($groupDNs as $dn) { 176 $groupDNs = array_merge($groupDNs, $gch->getChildren($dn)); 182 foreach ($groupDNs as $dn) { 184 if ($this->dn2group($dn) === $this->config['primarygroup']) { 189 $or->add(Filters::equal('memberOf', $dn)); 335 foreach ($groupDNs as $dn) { 336 $groupDNs = array_merge($groupDNs, $gch->getParents($dn)); 423 * @param string $dn 426 protected function dn2group($dn) argument 428 [$cn] = explode(',', $dn, 2);
|
| H A D | GroupHierarchyCache.php | 87 $dn = (string)$entry->getDn(); 88 $groups[$dn] = []; 91 $groups[$dn]['parents'] = $parents; 93 $groups[$parent]['children'][] = $dn;
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/ |
| H A D | SearchResultEntry.php | 67 $dn = $type->getChild(0); 68 if ($dn === null) { 90 new Dn($dn->getValue()),
|
| H A D | BindResponse.php | 83 [$resultCode, $dn, $diag, $ref] = self::parseResultData($type); 93 return new self(new LdapResult($resultCode, $dn, $diag, ...$ref), $saslCreds);
|
| H A D | ExtendedResponse.php | 155 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 157 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
|
| /plugin/loglog/lang/cs/ |
| D | intro.txt | 3 …uje všechna přihlášení a odhlášení uživatelů z posledních 7 dnů. Pro zobrazení starších týdnů lze …
|
| /plugin/pdfjs/pdfjs/web/locale/csb/ |
| D | viewer.properties | 6 previous.title=Pòprzédnô strona 7 previous_label=Pòprzédnô 8 next.title=Nôslédnô strona 9 next_label=Nôslédnô 35 find_previous.title=Biéj do pòprzédnégò wënikù szëkbë 37 find_next.title=Biéj do nôslédnégò wënikù szëkbë
|
| /plugin/authldaplocal/ |
| D | auth.php | 103 $dn = $this->_makeFilter( 110 $dn = $this->_makeFilter( 125 if(!empty($dn)) { 127 if(!@ldap_bind($this->con, $dn, $pass)) { 128 $this->_debug("LDAP: bind with $dn failed", -1, __LINE__, __FILE__); 140 $dn = $info['dn']; 144 if(!@ldap_bind($this->con, $dn, $pass)) { 145 $this->_debug("LDAP: bind with $dn failed", -1, __LINE__, __FILE__);
|
| /plugin/codemirror/dist/modes/ |
| D | wast.min.js.map | 1 …dn]d|c[lt]z|(div|rem)_[su]|eqz?|[gl][te]_[su]|mul|ne|popcnt|rot[lr]|sh(l|r_[su])|sub|x?or)|i64\\.e…
|