Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Impoved debug for cache | 4d6349f7143d61583e6d2d9612c89b55af4eea97 | Catalin(ux) M. BOIE | 2017-03-26 09:36:08 |
I cannot be sure if the data is stored only in Germany. And we do backups in Romania. | 1610c997dbda53c0a21e301b51832d9285ecbcf2 | Catalin(ux) M. BOIE | 2017-03-26 08:24:46 |
Removed a not used variable | 4d2bab105c6f7748ca53d9a8301a2da320153d53 | Catalin(ux) M. BOIE | 2017-03-21 20:15:29 |
tests: ignore some dirs | 7260fc44f8d0197b917bc13a0ac19eb8c58d4534 | Catalin(ux) M. BOIE | 2017-03-21 20:01:03 |
Link to anon push doc | 42dbfdc9ad5fad0157388f239f790f2e8f4de7c2 | Catalin(ux) M. BOIE | 2017-03-21 20:00:45 |
comparison: add red/green for css/js sizes and for pagespeed | cbcda26a9d20c115eb0931ab2af69f3c2315ab7d | Catalin(ux) M. BOIE | 2017-03-21 19:44:47 |
Trim the hints for cloning the tree | 59bc91f5229abf96f453d872a58a2c96cf18198c | Catalin(ux) M. BOIE | 2017-03-21 19:35:58 |
Do the right thing (no error) when an empty tree is present | 7c138f486a81d09df44e811714d7bdeb92d7c01d | Catalin(ux) M. BOIE | 2017-03-21 19:34:03 |
Do not use UA when building anti-CSRF token. Think about plugins which change the UA at every request | 7346fceeff8bea1eaa500dd3ce1677deb84f8b77 | Catalin(ux) M. BOIE | 2017-03-21 16:36:46 |
Do not create a namespace anymore if the user has the rights to push | 13f8037ba76b57ae919758609c523dcbb6588745 | Catalin(ux) M. BOIE | 2017-03-19 19:44:07 |
Docker improvements | c3c0f8ff3f5a2f9acfeea2e9bbf271cfeae4a8bd | Catalin(ux) M. BOIE | 2017-03-19 19:43:25 |
Small changes regarding more debugging in several places | 03407e5f7562ac997612c56fd20fe067162ea8de | Catalin(ux) M. BOIE | 2017-03-19 19:42:58 |
Some improvements for comparison | e3a06443fba2c22009f0bde4ea9c3f201a9803cb | Catalin(ux) M. BOIE | 2017-03-19 19:41:53 |
Functional tests improvements | 6b82e5a1eaf800a15e42840bc9c889e32a7532f0 | Catalin(ux) M. BOIE | 2017-03-19 19:40:21 |
Do not report security violations generated by the functional tests | 6028674aa0153d4bc1c46999516f87a6019df6d2 | Catalin(ux) M. BOIE | 2017-03-19 19:38:23 |
Admin init form: pass next to user to be able to be cached by browsers | c3d9974e92a03a3ec4d093188842330bb7a0cad0 | Catalin(ux) M. BOIE | 2017-03-17 23:41:10 |
SELinux: Allow php-fpm to create log files | 94962a7b15e91acfa609663185ceab365a89ac98 | Catalin(ux) M. BOIE | 2017-03-17 23:39:01 |
Allow anonymous push when using git:// or ssh:// | 46d947874f12b7ac7f1ac3fa552f703c498082b2 | Catalin(ux) M. BOIE | 2017-03-02 22:17:48 |
tests: now we keep the state | c75b10325c24e32b699f22a13c9374e80fe45a2b | Catalin(ux) M. BOIE | 2017-03-02 22:05:43 |
No need anymore for usr/lib | 58a51962e9025457419fac5051d0840732aeff6c | Catalin(ux) M. BOIE | 2017-03-02 21:34:11 |
File | Lines added | Lines deleted |
---|---|---|
inc/cache.inc.php | 7 | 1 |
File inc/cache.inc.php changed (mode: 100644) (index 04f1310..587c77d) | |||
... | ... | function rg_cache_get($ns_var) | |
456 | 456 | } | } |
457 | 457 | ||
458 | 458 | if ($rg_cache_debug) | if ($rg_cache_debug) |
459 | rg_log_ml('cache_get returns: ' . print_r($ret, TRUE)); | ||
459 | rg_log_ml('cache_get[' . $ns_var . '] returns: ' | ||
460 | . ($ret === FALSE ? 'FALSE' : print_r($ret, TRUE))); | ||
460 | 461 | ||
461 | 462 | rg_prof_end('cache_get'); | rg_prof_end('cache_get'); |
462 | 463 | return $ret; | return $ret; |
... | ... | function rg_cache_get($ns_var) | |
467 | 468 | */ | */ |
468 | 469 | function rg_cache_set($ns_var, $value, $flags) | function rg_cache_set($ns_var, $value, $flags) |
469 | 470 | { | { |
471 | global $rg_cache_debug; | ||
472 | |||
470 | 473 | rg_prof_start('cache_set'); | rg_prof_start('cache_set'); |
471 | 474 | ||
472 | 475 | while (1) { | while (1) { |
... | ... | function rg_cache_set($ns_var, $value, $flags) | |
478 | 481 | if ($ret === FALSE) | if ($ret === FALSE) |
479 | 482 | break; | break; |
480 | 483 | ||
484 | if ($rg_cache_debug) | ||
485 | rg_log_ml('cache_set[' . $ns_var . '] = ' . print_r($value, TRUE)); | ||
486 | |||
481 | 487 | $ret = TRUE; | $ret = TRUE; |
482 | 488 | break; | break; |
483 | 489 | } | } |