List of commits:
Subject Hash Author Date (UTC)
Do not on any event if the protocol match. Assume is stable now. 69912910f5c0bbddc73ced992d8b3a652a8ff526 Catalin(ux) M. BOIE 2015-09-11 05:06:16
Bump version to 0.40 89d2ee4c3cae790d05a8b853de8427298dcbb9e1 Catalin(ux) M. BOIE 2015-09-11 04:59:49
Fix repo stats when there is no commit inside. 621b0a317b65d9a751d221908b8e1664d96011fa Catalin(ux) M. BOIE 2015-09-11 04:58:31
Added back the repo stats d8d06816223b52ff1d65df502fc6175f26c15518 Catalin(ux) M. BOIE 2015-09-10 04:44:10
TOTP fixes: mostly correct error messages 0f13d65e13211a91ce077b4a09307e54e9113f38 Catalin(ux) M. BOIE 2015-09-08 04:59:02
Lots of bug fixes, especially for cache a34c707720da68378086f73f16dd25c5a1ca8072 Catalin(ux) M. BOIE 2015-09-07 06:06:46
Mostly TOTP stuff for ssh 90eed0aa343f735f717238e3937439737290ecfd Catalin(ux) M. BOIE 2015-08-28 04:51:12
Added TOTP feature and some other minor stuff e9197291380929dd53f02f7373e8a339d6bd65a2 Catalin(ux) M. BOIE 2015-08-23 12:07:44
TODO clean-up. 1ae7c17d523aec8e6a303264e2c35934c459fc9d Catalin(ux) M. BOIE 2015-07-14 20:27:45
duilder updates (error out if head is not a tag 09ff5d7b52d059a7fab09427d8e6d12319a53804 Catalin(ux) M. BOIE 2015-07-14 20:27:35
Bump version to 0.39 c28468b1cf0488f8f98b04aeb6ba26429ee91807 Catalin(ux) M. BOIE 2015-07-14 04:34:34
duilder updates cc12a3a5a95586b4533346ccf7fd4cfa652e7d6f Catalin(ux) M. BOIE 2015-07-14 04:34:09
Use _blank instead of _new for page loading 2afd660c2f3ded308e9f1e76c844dcdb60f20dec Catalin(ux) M. BOIE 2015-07-14 04:30:51
TODO stuff d46f377f74021db2581d96e27a4d9b76e2b12348 Catalin(ux) M. BOIE 2015-07-14 04:30:29
Really corrected repo.php unit test. 219a7061df42a1593fc0f3959eddc9a3d54496ab Catalin(ux) M. BOIE 2015-07-14 04:25:56
Corrected 'rights' unit test. b3657cb073291681e8e3fd6ec9523bf550081d8e Catalin(ux) M. BOIE 2015-07-14 04:14:48
Remove more junk from testing folder. 0e769caa8f59615804312c488b74683288243196 Catalin(ux) M. BOIE 2015-07-14 04:14:27
Bump version to 0.38 b5e57d1da1a8a4a207234e1de4dcc4b6cdbe56ed Catalin(ux) M. BOIE 2015-07-13 20:19:32
Fix the islands 4f5d52ff6f87bb1dc48003337d42a6e3a2d98711 Catalin(ux) M. BOIE 2015-07-13 20:18:53
Open my webpage in another tab 54bc4e25313e41a2c0c46f186dc44e9223b9e69e Catalin(ux) M. BOIE 2015-07-13 20:18:04
Commit 69912910f5c0bbddc73ced992d8b3a652a8ff526 - Do not on any event if the protocol match. Assume is stable now.
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-09-11 05:06
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-09-11 05:06
Parent(s): 89d2ee4c3cae790d05a8b853de8427298dcbb9e1
Signing key:
Tree: ae20f14e7e8a4067afa7d0f94a2ef0e67d8d289c
File Lines added Lines deleted
scripts/cache.php 1 9
File scripts/cache.php changed (mode: 100644) (index 6acc008..7865345)
1 1 <?php <?php
2 2 // This is called by cron, and is persistent. // This is called by cron, and is persistent.
3 // It takes care fast caching, like memcache.
3 // It takes care of fast caching, like memcache.
4 4 // It will receive signals using a UNIX socket. // It will receive signals using a UNIX socket.
5 5 error_reporting(E_ALL); error_reporting(E_ALL);
6 6 ini_set("track_errors", "On"); ini_set("track_errors", "On");
 
... ... if ($r === FALSE) {
327 327 $conn_table = array("r" => array(), "w" => array(), "conns" => array()); $conn_table = array("r" => array(), "w" => array(), "conns" => array());
328 328 $conn_table['r']['master'] = $master; $conn_table['r']['master'] = $master;
329 329 do { do {
330 $new_ver = file_get_contents(__FILE__);
331 $new_ver = preg_match("/rg_cache_version = (.*);/", $new_ver, $matches);
332 $new_ver = $matches[1];
333 if ($rg_cache_version != $new_ver) {
334 rg_log("Version upgraded. Exiting...");
335 break;
336 }
337
338 330 rg_log_buffer_clear(); rg_log_buffer_clear();
339 331
340 332 $r2 = $conn_table['r']; $w2 = $conn_table['w']; $ex = array(); $r2 = $conn_table['r']; $w2 = $conn_table['w']; $ex = array();
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