List of commits:
Subject Hash Author Date (UTC)
Added rg_git_content_by_file funcion, no users right now d0be6070962a782adf99e08155ea04cef619368e Catalin(ux) M. BOIE 2015-03-22 08:28:24
Update last_seen only at login/logout, not on every access f50c94843c00656a453979591585c3d9d073469c Catalin(ux) M. BOIE 2015-03-20 04:42:10
Fix slave tables creation (year was incorrect 4c9eaa994fa1e2370812e49fe85742f00f51ee7b Catalin(ux) M. BOIE 2015-03-19 20:50:05
When repo is created, update cache df91965df1900e161ae9641e03217671135cb97b Catalin(ux) M. BOIE 2015-03-19 20:06:51
'deleted' field for a bug is added only on 'add' operation 1832f125018048ae65dbc6ef5f5dc9a9e7fa71ff Catalin(ux) M. BOIE 2015-03-19 19:41:19
Init 'deleted' field for repos 00078770ac766c414c3235765168e36f173662ae Catalin(ux) M. BOIE 2015-03-19 19:40:46
Added a spell check script. 38beca5c78de25eb8f836772d5305b1bbb0b01d7 Catalin(ux) M. BOIE 2015-03-19 19:12:10
Checkpoint 77566839b41679a09859afad2a246b4d1d346c5a Catalin(ux) M. BOIE 2015-03-18 18:03:53
Checkpoint, all tests pass 489486b1331c835ea253aa267f0ae38025206c49 Catalin(ux) M. BOIE 2015-03-08 23:22:28
Checkpoint: apply xss protection only on output 553d3374edc1c93cb5af6d5807ead7d862fc5b61 Catalin(ux) M. BOIE 2015-03-05 22:14:42
Improved diff output (copy/rename/etc.) 823f8f1ff43c8db148d2b642da87ac10dc67543e Catalin(ux) M. BOIE 2015-02-14 22:38:14
Bump version to 0.20 f794575c600cb52f12a406bf1945966b573c6209 Catalin(ux) M. BOIE 2015-01-27 23:12:33
Small fixes after beta deploy 10774b229bcb8eebf30781c602e300a2618b60c0 Catalin(ux) M. BOIE 2015-01-27 23:11:50
Checkpoint before non-storing tokens 14b76a10a18045ae9d6b71614772ca2ba0653034 Catalin(ux) M. BOIE 2014-12-20 09:03:38
Checkpoint a87a60265dd93710118fc92b13121b7d7296823b Catalin(ux) M. BOIE 2014-12-16 21:19:16
Checkpoint c99a539501f24a82fb890a7ef59e2d97517246c5 Catalin(ux) M. BOIE 2014-12-10 21:25:25
Checkpoint 408ea6e114460b413daca5e96d1551ef04080a04 Catalin(ux) M. BOIE 2014-12-09 17:18:17
Checkpoint 70b59e41caa4a49a3f6580e104da0c8e6cec8658 Catalin(ux) M. BOIE 2014-11-20 04:42:44
Checkpoint 954ee41b76dcfe6920ebd36bd81453bc26276890 Catalin(ux) M. BOIE 2014-11-14 22:37:07
Checkpoint 91a81af5a65c575fa1d61ac9cc5eb759b746a9ed Catalin(ux) M. BOIE 2014-10-29 04:19:22
Commit d0be6070962a782adf99e08155ea04cef619368e - Added rg_git_content_by_file funcion, no users right now
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-03-22 08:28
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-03-22 08:28
Parent(s): f50c94843c00656a453979591585c3d9d073469c
Signing key:
Tree: 2ef11c74d60ddcda03618ea70a4b96734c1e8d16
File Lines added Lines deleted
TODO 1 0
inc/git.inc.php 27 0
File TODO changed (mode: 100644) (index a123594..a26e75b)
12 12 proiectului, e nevoie. Dar intr-un form, in textarea, nu e nevoie. proiectului, e nevoie. Dar intr-un form, in textarea, nu e nevoie.
13 13 Apoi as putea elimina description_nice. Apoi as putea elimina description_nice.
14 14 [ ] Security: Link-uri + xss (Ionut) [ ] Security: Link-uri + xss (Ionut)
15 [ ] Only one daemon should update the structure, else they will conflict.
15 16 [ ] [ ]
16 17
17 18 == BEFORE NEXT RELEASE == == BEFORE NEXT RELEASE ==
File inc/git.inc.php changed (mode: 100644) (index 96a99c9..0cdb5ec)
... ... function rg_git_diff_tree($tree1, $tree2)
1387 1387 return $ret; return $ret;
1388 1388 } }
1389 1389
1390 /*
1391 * Outputs the content of a file, at a specific revision
1392 */
1393 function rg_git_content_by_file($treeish, $file)
1394 {
1395 rg_prof_start("git_content_by_file");
1396 rg_log_enter("git_content_by_file: treeish=$treeish file=$file");
1397
1398 $ret = FALSE;
1399 while (1) {
1400 $cmd = 'git show ' . escapeshellarg($treeish) . ':'
1401 . escapeshellarg($file);
1402 $a = rg_exec($cmd);
1403 if ($a['ok'] != 1) {
1404 rg_git_set_error("error on show (" . $a['errmsg'] . ")");
1405 break;
1406 }
1407
1408 $ret = $a['data'];
1409 break;
1410 }
1411
1412 rg_log_exit();
1413 rg_prof_end("git_content");
1414 return $ret;
1415 }
1416
1390 1417 ?> ?>
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main