Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix a bug that prevented the log function to log invalid UTF-8 chars | 3a5d9efe50b391c4b5f64a879e64d3203ba66ef0 | Catalin(ux) M. BOIE | 2016-07-31 04:40:12 |
rg_exec accepts a second para: data to be sent as stdin | 71d2b273ae592e3c6e6a77e7b19df3f94aa1e9e9 | Catalin(ux) M. BOIE | 2016-07-31 03:05:23 |
Simplify event processing by passing full 'ui'; fixed 'confirmed' filed usage | cbb6f8877db547d55b7b86e0fe5c41519d6c8b65 | Catalin(ux) M. BOIE | 2016-07-14 05:08:51 |
Fixed the unit tests (minor) | 0e9cfc3911aba7119bb57140ecfa51ad6e3983bf | Catalin(ux) M. BOIE | 2016-07-14 05:05:37 |
Fixed e-mail confirmation logic. | dd5b4be2e8e49aa612ddf7557e8ef0b1e0268822 | Catalin(ux) M. BOIE | 2016-07-11 21:09:19 |
Do more tests and resync some with the reality | db9bb136ff176006cbb8f8848309b8adbf98d630 | Catalin(ux) M. BOIE | 2016-07-11 04:07:38 |
Improved user cache to not have null elements in JSON | d6b75a2cc4830cfb8dfb92e911f1e5a41c2023bc | Catalin(ux) M. BOIE | 2016-07-11 04:06:25 |
Allow rights to have numbers and _ in name | 4f5c38389bc98e2dcb60d36359917c33820e5779 | Catalin(ux) M. BOIE | 2016-07-11 04:05:40 |
Allow strange chars in cache names | 00b05d99d3d3cf0229249718d2482af40f063972 | Catalin(ux) M. BOIE | 2016-07-11 04:04:08 |
Small improvements to builder and worker | 08f9bc668f7f192af61868bebd644bea64b6aedd | Catalin(ux) M. BOIE | 2016-07-11 04:01:47 |
SELinux improvements to support the builder | a2b52360b43be53786ee5d68c9fcb2db14f29c0c | Catalin(ux) M. BOIE | 2016-07-11 04:00:57 |
Document docker on Download web section | 5d4ece50d6b4dc3d4902afd9264a45834ceb3592 | Catalin(ux) M. BOIE | 2016-07-11 03:54:31 |
Doc: restore context for rc.local | eb5fa1cab84737e3440cfbca147d50859b8f9a53 | Catalin(ux) M. BOIE | 2016-07-07 04:09:23 |
Fixed small bug preventing e-mail to show in report | 26d884b3a332f3c3b241c194912b9653749a9427 | Catalin(ux) M. BOIE | 2016-07-07 03:37:23 |
Do not clobber the cron file | 5c68384676d9b8087255dda3b62e3588fc50e6c7 | Catalin(ux) M. BOIE | 2016-07-06 22:03:58 |
When using rg_json_encode, no quotes needed. | c4b7693a81e593918f8c06408f16b4884a92773b | Catalin(ux) M. BOIE | 2016-07-06 05:21:00 |
Remove summary from tables because violates HTML5 specs. :( | 11865f18e979f3849dbb265e5c5350f4a638088b | Catalin(ux) M. BOIE | 2016-07-06 05:00:11 |
Bump version to 0.55 | 58652b8250a867c0f4e9e3a9c76737443f242b36 | Catalin(ux) M. BOIE | 2016-07-06 04:48:24 |
Big commit of a lot of unrelated changes. Shame on me! | e503666df79ef1553d0bb7ffd1d12a6b62748b1c | Catalin(ux) M. BOIE | 2016-07-06 04:44:43 |
Do not free resources if query fails. | 57baca81e9087a00a8e2e1807c932de2fb9769c4 | Catalin(ux) M. BOIE | 2016-06-26 11:47:09 |
File | Lines added | Lines deleted |
---|---|---|
inc/log.inc.php | 8 | 2 |
File inc/log.inc.php changed (mode: 100644) (index 0d41733..502c433) | |||
... | ... | function rg_log($str) | |
101 | 101 | if (strcmp($rg_log_sid, '000000') != 0) | if (strcmp($rg_log_sid, '000000') != 0) |
102 | 102 | $buf0 .= " " . $rg_log_sid; | $buf0 .= " " . $rg_log_sid; |
103 | 103 | $buf = ""; | $buf = ""; |
104 | $str = preg_replace_callback('/[^\pL\pN\pP\pS \t]/uU', 'rg_callback_hexa', $str); | ||
105 | $buf .= $buf0 . ' ' . $spaces . $str . "\n"; | ||
104 | $str2 = preg_replace_callback('/[^\pL\pN\pP\pS \t]/uU', | ||
105 | 'rg_callback_hexa', $str); | ||
106 | if ($str2 === NULL) // try without utf-8 | ||
107 | $str2 = preg_replace_callback('/[^\x20-\x7e]/U', | ||
108 | 'rg_callback_hexa', $str); | ||
109 | if ($str2 === NULL) | ||
110 | $str2 = 'could not log data'; | ||
111 | $buf .= $buf0 . ' ' . $spaces . $str2 . "\n"; | ||
106 | 112 | ||
107 | 113 | $rg_log_buf .= $buf; | $rg_log_buf .= $buf; |
108 | 114 |