Subject | Hash | Author | Date (UTC) |
---|---|---|---|
readme rendering: everything not makrdown is treated as text | d7c1a9e039e3b7945682ee2e13745cd0d4ad446a | Catalin(ux) M. BOIE | 2023-06-22 03:40:21 |
Really bumbed version to 0.78 | 223d494efb0cc012c72fe8898e2800ce15e4eaf7 | Catalin(ux) M. BOIE | 2023-06-15 20:36:31 |
Make rgfs more verbose in case of errors | 197c21765870fa6b95bb08c8599de9decf3980eb | Catalin(ux) M. BOIE | 2023-06-15 20:33:18 |
Cosmetic | d48682ffe54991deedd4989a100a0607cafefab8 | Catalin(ux) M. BOIE | 2023-06-14 17:11:03 |
Fixed delete account op | 4157f88a19d1b24934743d0193755a6dc3f98c13 | Catalin(ux) M. BOIE | 2023-06-14 17:10:22 |
Render readme files on the project page | a8c09adb1bceed31f8070386158561b06470a98f | Catalin(ux) M. BOIE | 2023-06-14 17:09:17 |
Added rg_sid global variable to simplify the function calling | 0047908fcd2ed0302a826487ddd15ca2579a9a83 | Catalin(ux) M. BOIE | 2023-06-14 17:06:39 |
Removed delta support for rpms because Fedora will remove it | 2c26be90f4bc08a06ab03ab016e9ccaa843780e5 | Catalin(ux) M. BOIE | 2023-05-03 05:04:40 |
Added first payments option; fixes all around | 7102aed9f239d529723799171553e8c4bd018440 | Catalin(ux) M. BOIE | 2023-05-02 22:36:28 |
Fixed a nasty typo in the build system; doc update; cosmetic | 1934732b297d6476be7954fabdcaf9eb87678f5e | Catalin(ux) M. BOIE | 2022-12-21 12:51:53 |
Send client features to the builder | dcf648353662409b9e39a422228ddb6a7c43358c | Catalin(ux) M. BOIE | 2022-12-21 11:10:00 |
Add support for SHA-256 git repos | 8b88927d353c7b588909d0b1220c8922b32129c0 | Catalin(ux) M. BOIE | 2022-12-21 11:03:19 |
Look-up pkg_repo using pkg_repo uid | f2b188b8cb151c376d8ee8c81f8e82c02ed93cd1 | Catalin(ux) M. BOIE | 2022-12-12 05:29:13 |
Cosmetic | 04ae5ac6b9805198966a21755d1d430ef5b6a6dd | Catalin(ux) M. BOIE | 2022-12-11 17:17:39 |
Keep-alive mechanism for builder/worker | 7e3add2ab41feefe37a858439934b8599fb30933 | Catalin(ux) M. BOIE | 2022-12-10 19:36:53 |
Bumped version to 0.76 | 09bb0cc92a9dfce513ce1289a22e71faf4ad1fe1 | Catalin(ux) M. BOIE | 2022-10-22 06:27:35 |
Cosmetic | 45c59081c97489ccccd35efffa522607fee25a63 | Catalin(ux) M. BOIE | 2022-10-22 05:52:56 |
Mostly worker stuff | ccf3a8d8da2ad1b0d97418fabb5028b40721835f | Catalin(ux) M. BOIE | 2022-10-22 05:50:04 |
wh: lambda: seems we cannot pass x-Amz-Client-Context header empty anymore | 7f065b0fb6ceed5d2339afd7590f5a795ed3582e | Catalin(ux) M. BOIE | 2022-10-21 19:33:58 |
workers: wrong URL for delete | a2b2ff5925b1ee9b4a033da93084c008b7af8c64 | Catalin(ux) M. BOIE | 2022-10-21 16:03:56 |
File | Lines added | Lines deleted |
---|---|---|
inc/format.inc.php | 1 | 7 |
File inc/format.inc.php changed (mode: 100644) (index 11eff58..9e8892b) | |||
... | ... | function rg_format_unk_to_html_string(string $file_name, string $content) | |
158 | 158 | { | { |
159 | 159 | $ret = array('ok' => 0); | $ret = array('ok' => 0); |
160 | 160 | do { | do { |
161 | if (stristr($file_name, '.txt')) { | ||
162 | $ret['doc'] = nl2br(htmlspecialchars($content)); | ||
163 | $ret['ok'] = 1; | ||
164 | break; | ||
165 | } | ||
166 | |||
167 | 161 | if (stristr($file_name, '.md')) { | if (stristr($file_name, '.md')) { |
168 | 162 | $content = htmlspecialchars($content); // For now, we do not support inline HTML | $content = htmlspecialchars($content); // For now, we do not support inline HTML |
169 | 163 | $format = 'markdown'; | $format = 'markdown'; |
170 | 164 | } else { | } else { |
171 | $ret['doc'] = ''; | ||
165 | $ret['doc'] = nl2br(htmlspecialchars($content)); | ||
172 | 166 | $ret['ok'] = 1; | $ret['ok'] = 1; |
173 | 167 | break; | break; |
174 | 168 | } | } |