List of commits:
Subject Hash Author Date (UTC)
Get rid of strage rewriting in we server config 8f845f11e9edfa5291965f570a5c971056416b62 Catalin(ux) M. BOIE 2017-04-29 14:43:23
Do not allow anyone to activate the debug (rg_debug). 0a296ec27e6988e91db8cac50e53345a8bce1c81 Catalin(ux) M. BOIE 2017-04-26 20:09:06
Forgot to add diff_too_big file b6297ed622b8fd1562f6ab05b279290367612b89 Catalin(ux) M. BOIE 2017-04-26 20:08:29
Added a functional test for http.postBuffer problem ff650d024cd5f82f796a225c204e156c9e1213f4 Catalin(ux) M. BOIE 2017-04-26 20:07:47
Added a 'Thanks' section e7c9731dd32fe48befc58bf08044fd5649f523f4 Catalin(ux) M. BOIE 2017-04-26 20:06:49
Some big fixes for push over http 56ebd277c71c50e40af9465cd3867dc885f054b9 Catalin(ux) M. BOIE 2017-04-26 20:00:53
Do not recursively set the rights - not needed a9edce3101ad2450b67a575265827aa69efd5c63 Catalin(ux) M. BOIE 2017-04-17 07:16:01
Cosmetic changes 4bb36da63972e7e152e4e476e84ed55baba02911 Catalin(ux) M. BOIE 2017-04-15 09:29:09
Add possibility for admin to limit the git log --patch limit 1865405c40ebe92aa1bc6fd4569dcbb0e3af476c Catalin(ux) M. BOIE 2017-04-15 09:28:46
Silent curl in API functional test e6808bc97d201fd4944de0ad2982c3090ae4743a Catalin(ux) M. BOIE 2017-04-15 06:31:04
Fixed a lot of tests which used time() for different fields and sometime lost the time race 6a61493189d07110d3c5fdbe34ea0725d5abbd3b Catalin(ux) M. BOIE 2017-04-15 06:25:40
Fixed the crash with big diffs by setting a limit 788e15942d8272685764a25b640eba2c07046437 Catalin(ux) M. BOIE 2017-04-15 06:24:30
Allow .well-known folder access 90519cd03bf64839d1a9fc2497e58bd63d8ce6f3 Catalin(ux) M. BOIE 2017-04-12 16:50:16
When an un-auth user is visiting a user page with no repo, do not invite to create a repo 6904e1eac3f46c281ae6b4757bcaa16d2acc6169 Catalin(ux) M. BOIE 2017-03-27 15:23:52
Added a 'push' target in Makefile to not forget to push tags... 92a9b78e26d8a3e7b466f5aa45678dd2db8d4310 Catalin(ux) M. BOIE 2017-03-26 14:29:55
Bump version to 0.67 6f1c9a6d7f7d40d65def54e23a3590556a346bb8 Catalin(ux) M. BOIE 2017-03-26 09:44:32
Cosmetic cb68f1921782a503675c592dc7484aa26b8815b6 Catalin(ux) M. BOIE 2017-03-26 09:37:41
Improve state handling: do not check for an old value; verify if table exists before doing a select 17d8eb4b4592dd96e62a8da74d87d3d3b26aeb86 Catalin(ux) M. BOIE 2017-03-26 09:37:01
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
Commit 8f845f11e9edfa5291965f570a5c971056416b62 - Get rid of strage rewriting in we server config
Author: Catalin(ux) M. BOIE
Author date (UTC): 2017-04-29 14:43
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2017-04-29 14:43
Parent(s): 0a296ec27e6988e91db8cac50e53345a8bce1c81
Signing key:
Tree: a12dcfe6204ec78f1e1cc9ed13e1a601eb3c32ce
File Lines added Lines deleted
TODO 0 1
inc/util.inc.php 0 6
root/index.php 1 2
samples/rg.conf 3 2
File TODO changed (mode: 100644) (index 53bf108..c037975)
... ... to add a worker? Also, no hint is presented.
251 251 Maybe because I do not know the pushed refs? Maybe because I do not know the pushed refs?
252 252 [ ] 2fa: http is not supported yet! [ ] 2fa: http is not supported yet!
253 253 [ ] Now, also the web part can do the db update. [ ] Now, also the web part can do the db update.
254 [ ] Get rid of rwe?
255 254 [ ] rg_repo_fetch_push_helper: if git repo is not created, delay the fetch/push? [ ] rg_repo_fetch_push_helper: if git repo is not created, delay the fetch/push?
256 255 [ ] target_ui => owner_ui? [ ] target_ui => owner_ui?
257 256 [ ] Consolidate "welcome to rocketgit" messages! [ ] Consolidate "welcome to rocketgit" messages!
File inc/util.inc.php changed (mode: 100644) (index a05e052..a2f6c5f)
... ... function rg_xss_safe($str)
200 200 function rg_re_url($area) function rg_re_url($area)
201 201 { {
202 202 return $area; return $area;
203
204 // TODO: not clear why this. related to the rewrite engine
205 if (isset($_REQUEST['rwe']))
206 return $area;
207
208 return '/?vv=' . $area;
209 203 } }
210 204
211 205 function rg_re_userpage($ui) function rg_re_userpage($ui)
File root/index.php changed (mode: 100644) (index ad520b3..e0488cf)
... ... $rg['bug'] = array("bug_id" => 0);
57 57 $rg['debug'] = isset($rg_allow_debug) ? rg_var_uint('rg_debug') : 0; $rg['debug'] = isset($rg_allow_debug) ? rg_var_uint('rg_debug') : 0;
58 58 $rg['base_url'] = rg_base_url(); $rg['base_url'] = rg_base_url();
59 59
60 // We have variable 'vv' passed from webserver - build 'op' and rest of paras
61 $sparas = rg_var_str("vv");
60 $sparas = rg_var_str('SCRIPT_NAME');
62 61 rg_log("DEBUG: sparas=$sparas"); rg_log("DEBUG: sparas=$sparas");
63 62 $rg['current_url'] = rawurlencode($sparas); $rg['current_url'] = rawurlencode($sparas);
64 63 $rg['url'] = '/op'; $rg['url'] = '/op';
File samples/rg.conf changed (mode: 100644) (index 2a4ef54..0623eb4)
51 51 RewriteRule .* - [last] RewriteRule .* - [last]
52 52
53 53 # all rest # all rest
54 RewriteRule (.*) /index.php?rwe=1&vv=$1 [last,qsappend]
54 RewriteRule (.*) /index.php [last]
55 55
56 56
57 57 <IfModule mod_headers.c> <IfModule mod_headers.c>
 
91 91 RewriteRule .* - [last] RewriteRule .* - [last]
92 92
93 93 # all rest # all rest
94 RewriteRule (.*) /index.php?rwe=1&vv=$1 [last,qsappend]
94 RewriteRule (.*) /index.php [last]
95
95 96
96 97 <IfModule mod_headers.c> <IfModule mod_headers.c>
97 98 # Security (ClickJacking) # Security (ClickJacking)
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