Home
last modified time | relevance | path

Searched refs:cookie (Results 1 – 7 of 7) sorted by relevance

/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js3 * https://github.com/carhartl/jquery-cookie
37 // This is a quoted cookie as according to RFC2068, unescape...
43 // If we can't decode the cookie, ignore it, it's unusable.
44 // If we can't parse the cookie, ignore it, it's unusable.
55 var config = $.cookie = function (key, value, options) {
67 return (document.cookie = [
82 // calling $.cookie().
83 var cookies = document.cookie ? document.cookie.split('; ') : [];
88 var cookie
[all...]
/dokuwiki/inc/lang/ro/
H A Dlogin.txt3 Nu ești autentificat! Introdu datele de autentificare. Pentru ca autentificarea să funcționeze trebuie să fie permise cookie-urile în browser.
/dokuwiki/lib/scripts/
H A Dcookie.js2 * Handles the cookie used by several JavaScript functions
4 * Only a single cookie is written and read. You may only save
17 * Save a value to the cookie
39 jQuery.cookie(this.name, text.join('#'), {expires: 365, path: DOKU_COOKIE_PARAM.path, secure: DOKU_COOKIE_PARAM.secure});
54 * Loads the current set cookie
63 text = jQuery.cookie(this.name);
/dokuwiki/inc/lang/it/
H A Dlogin.txt3 Non sei ancora collegato! Inserisci il tuo nome utente e la tua password per autenticarti. E' necessario che il tuo browser abbia i cookie abilitati.
/dokuwiki/inc/lang/vi/
H A Dlogin.txt3 Bạn hiện chưa đăng nhập! Nhập thông tin xác thực của bạn bên dưới để đăng nhập. Bạn cần kích hoạt cookie để đăng nhập.
/dokuwiki/inc/HTTP/
H A DHTTPClient.php336 if (isset($this->resp_headers['set-cookie'])) {
337 foreach ((array)$this->resp_headers['set-cookie'] as $cookie) {
338 [$cookie] = sexplode(';', $cookie, 2, '');
339 [$key, $val] = sexplode('=', $cookie, 2, '');
/dokuwiki/inc/
H A Dauth.php73 // do the login either by cookie or provided credentials XXX
246 * together with the username in a cookie - the same info is stored
250 * If no username was given the cookie is checked: if the username,
251 * crypted password and browserID match between session and cookie
254 * If a cookie was found but no session info was availabe the
255 * blowfish encrypted password from the cookie is decrypted and
300 // read cookie information
303 // we got a cookie - see if we can trust it
316 // he has session, cookie and browser right - let him in
1110 // update cookie an
[all...]