| /dokuwiki/_test/tests/Subscriptions/ |
| H A D | SubscriberManagerTest.php | 37 // add page subscription 38 $sub->add('wiki:dokuwiki', 'testuser', 'every'); 55 // add namespace subscription 56 $sub->add('wiki:', 'testuser', 'every'); 74 $sub->add('wiki:', 'testuser', 'digest', '1234567'); 89 $sub->add('wiki:', 'testuser', 'digest', '7654321'); 112 $sub->add(':', 'admin', 'digest', '123456789'); 113 $sub->add(':wiki:', 'admin', 'digest', '123456789'); 114 $sub->add(':', 'admin', 'digest', '1234'); 115 $sub->add(':wiki:', 'admin', 'digest', '1234');
|
| H A D | BulkSubscriptionsSenderTest.php | 41 $manager->add('sub1:', 'testuser', 'digest', '978328800'); // last mod 2001-01-01 63 $manager->add('sub1:', 'testuser', 'digest', '978328800'); // last mod 2001-01-01 83 $manager->add('sub1:', 'testuser', 'list', '978328800'); // last mod 2001-01-01 105 $manager->add('sub1:', 'testuser', 'list', '978328800'); // last mod 2001-01-01
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
| H A D | Binary.php | 190 $e = $x1->add($b); 191 $f = $y1->add($d); 193 $h = $f->multiply($x2)->add($z3->multiply($y2)); 194 $i = $f->add($z3); 199 $x3 = $p1->add($p2)->add($p3); 200 $y3 = $i->multiply($x3)->add($g->multiply($h)); 209 $e = $a->add($b); 210 $f = $c->add($d); 212 $h = $f->multiply($x2)->add($g->multiply($y2)); 214 $i = $f->add($z3); [all …]
|
| H A D | KoblitzPrime.php | 60 * Multiply and Add Points 82 $inv->add($s), 99 $inv->add($s), 128 $c1 = $c1->add($one); 134 $c2 = $c2->add($one); 143 $k2 = $q1->add($q2)->negate(); 210 $d = $x1->add($b); 235 $s = $x1->add($yy); 256 $rhs = $temp->add($this->b); 316 $rhs = $a0->multiply($a0)->add($b0->multiply($b0)); [all …]
|
| /dokuwiki/inc/Form/ |
| H A D | TagCloseElement.php | 33 throw new \BadMethodCallException('You can\t add classes to closing tag'); 48 throw new \BadMethodCallException('You can\t add ID to closing tag'); 65 throw new \BadMethodCallException('You can\t add attributes to closing tag'); 81 throw new \BadMethodCallException('You can\t add attributes to closing tag');
|
| /dokuwiki/inc/TreeBuilder/ |
| H A D | PageTreeBuilder.php | 68 // add directly to top or add the namespace under the top element? 74 // do not add the namespace's own startpage in this mode 87 // if FLAG_SELF_TOP, we need to add the parent to the top 115 * Process namespaces (subdirectories) and add them to the hierarchy 117 * @param AbstractNode $parent Parent node to add children to 139 // Add to hierarchy 165 * Process pages (files) and add them to the hierarchy 167 * @param AbstractNode $parent Parent node to add children to 188 // Add to hierarchy 194 * Run custom node processor and add it to the hierarchy [all …]
|
| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.sql | 652 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (1, 'Can add project', 1, … 655 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (4, 'Can add work log', 2,… 658 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (7, 'Can add billing perio… 661 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (10, 'Can add log entry', … 664 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (13, 'Can add permission',… 667 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (16, 'Can add group', 6, '… 670 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (19, 'Can add user', 7, 'a… 673 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (22, 'Can add content type… 676 INSERT INTO auth_permission (id, name, content_type_id, codename) VALUES (25, 'Can add session', 9,… 889 ADD CONSTRAINT auth_group_name_key UNIQUE (name); [all …]
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 30 // add 31 $options->registerCommand('add', 'Add an user to auth backend'); 32 $options->registerArgument('login', 'Username', true, 'add'); 33 $options->registerArgument('mail', 'Email address', true, 'add'); 34 $options->registerArgument('name', 'Full name', false, 'add'); 35 $options->registerArgument('groups', 'Groups to be added, comma-seperated', false, 'add'); 36 $options->registerArgument('password', 'Password to set', false, 'add'); 37 $options->registerOption('notify', 'Notify user', 'n', false, 'add'); 43 // add to group 44 $options->registerCommand('addtogroup', 'Add user to group(s)'); [all …]
|
| H A D | script.js | 2 * Add JavaScript confirmation to the User Delete button
|
| /dokuwiki/_test/tests/Remote/Mock/ |
| H A D | TestPlugin1.php | 12 $methods = parent::getMethods(); // auto add all methods, then adjust 14 … $methods['method2ext'] = new ApiCall([$this, 'method2']); // add a method with a different name
|
| /dokuwiki/lib/plugins/authad/adLDAP/classes/ |
| H A D | adLDAPGroups.php | 58 * Add a group to a group 80 $add = array(); 81 $add["member"] = $childDn; 83 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $parentDn, $add); 91 * Add a user to a group 93 * @param string $group The group to add the user to 94 * @param string $user The user to add to the group 101 // and add it using the full DN of the group 116 $add = array(); 117 $add["member"] = $userDn; [all …]
|
| H A D | adLDAPExchange.php | 57 * @param string $username The username of the user to add the Exchange account to 60 * @param string $emailAddress The primary email address to add to this user 99 * Add an X400 address to Exchange 103 * @param string $username The username of the user to add the X400 to to 124 …// We do not have to demote an email address from the default so we can just add the new proxy add… 128 $add = $this->adldap->adldap_schema($attributes); 130 if (!$add) { return false; } 135 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $userDn, $add); 144 * Add an address to Exchange 146 * @param string $username The username of the user to add the Exchange account to [all …]
|
| H A D | adLDAPContacts.php | 74 $add = $this->adldap->adldap_schema($attributes); 77 $add["cn"][0] = $attributes["display_name"]; 78 $add["objectclass"][0] = "top"; 79 $add["objectclass"][1] = "person"; 80 $add["objectclass"][2] = "organizationalPerson"; 81 $add["objectclass"][3] = "contact"; 83 $add["msExchHideFromAddressLists"][0] = "TRUE"; 90 // Add the entry 91 …adldap->utilities()->escapeCharacters($add["cn"][0]) . ", " . $container . "," . $this->adldap->ge…
|
| /dokuwiki/lib/scripts/ |
| H A D | delay.js | 12 * delay.add(func, timeout). 22 add: function (func, timeout) { method 57 this.timer = timer.add(function () { _this.exec.call(_this); },
|
| H A D | toolbar.js | 73 * @param DOMElement btn Button element to add the action to 95 * @param DOMElement btn Button element to add the action to 133 * @param DOMElement btn Button element to add the action to 148 * @param DOMElement btn Button element to add the action to 166 * @param DOMElement btn Button element to add the action to 188 * Add button action for picker buttons and create picker element 190 * @param jQuery btn Button element to add the action to 213 * Add button action for the link wizard button 215 * @param DOMElement btn Button element to add the action to
|
| /dokuwiki/.github/workflows/ |
| H A D | testWindows.yml | 36 echo "::add-matcher::${{ runner.tool_cache }}/php.json" 37 echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
| H A D | testLinux.yml | 54 echo ::add-matcher::${{ runner.tool_cache }}/php.json 55 echo ::add-matcher::${{ runner.tool_cache }}/phpunit.json
|
| /dokuwiki/lib/plugins/usermanager/lang/en/ |
| H A D | add.txt | 1 ===== Add user =====
|
| /dokuwiki/conf/ |
| H A D | scheme.conf | 1 #Add URL schemes you want to be recognized as links here
|
| /dokuwiki/inc/lang/hu/ |
| H A D | resetpwd.txt | 3 Add meg a használni kívánt új jelszót.
|
| H A D | resendpwd.txt | 3 Add meg a felhasználói azonosítódat az új jelszó elküldéséhez. A jelszó cseréjéhez szükséges megerő…
|
| H A D | login.txt | 3 Nem vagy bejelentkezve. Add meg alább a bejelentkezési adataidat. A belépéshez a böngésződben enged…
|
| /dokuwiki/inc/lang/hu-formal/ |
| H A D | resendpwd.txt | 3 Add meg a felhasználói azonosítódat az új jelszó elküldéséhez. A jelszó cseréjéhez szükséges megerő…
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
| H A D | Ed25519.php | 85 $r = $r->add($ri); 113 $v = $this->d->multiply($y2)->add($this->one); 130 $exp = $this->getModulo()->add(new BigInteger(3)); 269 $h = $a->add($b); 270 $temp = $x1->add($y1); 273 $f = $c->add($g); 318 $b = $y1->add($x1)->multiply($y2->add($x2)); 323 $g = $d->add($c); 324 $h = $b->add($a);
|
| /dokuwiki/inc/Extension/ |
| H A D | RemotePlugin.php | 13 * Add functionality to the remote API in a plugin 55 // add to result
|