List of commits:
Subject Hash Author Date (UTC)
css: fixed admins pages 3a8e93564ee53176ae510e131e55fa4bbef98908 Catalin(ux) M. BOIE 2016-02-14 12:09:00
Added rg_change_pass tool cfc9e214ef3bb978e831a68ab6395c74b6604b41 Catalin(ux) M. BOIE 2016-02-14 11:56:10
CSS fixes to make the spaces the same all over the place 6abddc6fc655a8b67537f46106467229ed687dcc Catalin(ux) M. BOIE 2016-02-14 11:19:07
minor: reorder functions 4c02703e69e56289670e96952b49c55fadcab671 Catalin(ux) M. BOIE 2016-02-14 09:40:44
Show ssh key type before number of bits 980da7f8b9c3380c169547c2b1f522e7d52f0398 Catalin(ux) M. BOIE 2016-02-12 05:20:21
Improved a little the error message received by git:// bb2ed8554a00ae532e93bab17285a4a1eb24ec12 Catalin(ux) M. BOIE 2016-02-11 21:13:14
Show the key size in bits when listing ssh keys 31583c21cf178475e546ad47a47e56c6982dff09 Catalin(ux) M. BOIE 2016-02-08 06:23:43
Improved a little the admin report 1f348f2c163ba1320dce223774b2f677f18d6461 Catalin(ux) M. BOIE 2016-02-08 06:23:05
Improved a little how a tree is shown 753af0ef4a6d9fc2f2ddb993335f3c50a3fff2ab Catalin(ux) M. BOIE 2016-02-07 06:46:02
In admin's report, add in the subject the total number of yesterday's changes 02a3b4131626b7023ba87a59b188256a601cd13a Catalin(ux) M. BOIE 2016-02-07 05:52:47
More detailed and correct description for hooks d3045a11eed05c897381ae2cfcbbf91ede1d4910 Catalin(ux) M. BOIE 2016-02-07 05:42:53
docker: fixes and improvements for image generation 37bd416d1664e8d9fcdf4554646618e5dd226e35 Catalin(ux) M. BOIE 2016-02-07 05:42:28
Added bug template and prefill the bug form assigned to field to the owner of the repo 682e787ceb92d770e1a268a9f635e4336102cf3b Catalin(ux) M. BOIE 2016-02-07 05:38:58
Change download location for rocketgit.xml 41bf40104994391fd5d9938ac891157625872c0d Catalin(ux) M. BOIE 2016-02-02 23:04:53
Fixes for data encoding for slack 67b8210aa1c86b891d6760c89ac840f38f4eb025 Catalin(ux) M. BOIE 2016-01-30 17:49:57
Some TODO updates and some minor text fixes d4a5bc8e8bc37021ca2c30899c01d8c54d56e5f6 Catalin(ux) M. BOIE 2016-01-30 17:38:59
Some docker fixes 36c31d723d45a067980217b1c642f6bb77d54fd9 Catalin(ux) M. BOIE 2016-01-30 17:38:25
When adding hooks, help the user by providing some defaults (slack for now) a7f4d8f10f8943508d90e968129b412431a4b0c3 Catalin(ux) M. BOIE 2016-01-30 17:37:50
Store good key string into the database. 460245b306d9e7340969b386eecaaa6cfc7f7431 Catalin(ux) M. BOIE 2016-01-29 18:23:12
Some small fixes for http hooks 43f8db273aedd804b150ee07a1af23b347687975 Catalin(ux) M. BOIE 2016-01-29 18:22:32
Commit 3a8e93564ee53176ae510e131e55fa4bbef98908 - css: fixed admins pages
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-02-14 12:09
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-02-14 12:09
Parent(s): cfc9e214ef3bb978e831a68ab6395c74b6604b41
Signing key:
Tree: b614770c86322f47b305af7589b0ee33ea3583fc
File Lines added Lines deleted
inc/admin/admin.php 10 5
inc/admin/plans/plans.php 1 1
inc/admin/repos/repos.php 1 1
inc/admin/users/users.php 1 1
root/themes/default/admin/menu.html 2 1
File inc/admin/admin.php changed (mode: 100644) (index c91ff06..dea3ded)
... ... if ($rg['login_ui']['is_admin'] != 1) {
11 11 $_subop = empty($paras) ? 'plans' : array_shift($paras); $_subop = empty($paras) ? 'plans' : array_shift($paras);
12 12
13 13 $rg['admin_menu'][$_subop] = 1; $rg['admin_menu'][$_subop] = 1;
14 $_admin .= rg_template("admin/menu.html", $rg, TRUE /* xss */);
14 $rg['HTML:menu_admin_level2'] = '';
15 15
16 16 switch ($_subop) { switch ($_subop) {
17 17 case 'plans': case 'plans':
18 18 include($INC . "/admin/plans/plans.php"); include($INC . "/admin/plans/plans.php");
19 $_admin .= $_admin_plans;
19 $_admin_body = $_admin_plans;
20 20 break; break;
21 21
22 22 case 'users': // users case 'users': // users
23 23 include($INC . "/admin/users/users.php"); include($INC . "/admin/users/users.php");
24 $_admin .= $_admin_users;
24 $_admin_body = $_admin_users;
25 25 break; break;
26 26
27 27 case 'repos': // repos case 'repos': // repos
28 28 include($INC . "/admin/repos/repos.php"); include($INC . "/admin/repos/repos.php");
29 $_admin .= $_admin_repos;
29 $_admin_body = $_admin_repos;
30 30 break; break;
31 31
32 32 case 'invites': // invites case 'invites': // invites
33 $_admin .= rg_admin_invites_high_level($db, $rg);
33 $_admin_body = rg_admin_invites_high_level($db, $rg);
34 34 break; break;
35 35 } }
36 36
37 $_admin .= rg_template("admin/menu.html", $rg, TRUE /* xss */);
38 $_admin .= '<div class="generic_body">' . "\n";
39 $_admin .= $_admin_body;
40 $_admin .= '</div>' . "\n";
41
37 42 ?> ?>
File inc/admin/plans/plans.php changed (mode: 100644) (index 9b91310..0871cd3)
... ... $_op = empty($paras) ? "list" : array_shift($paras);
7 7 rg_log("DEBUG: _op=$_op sparas=" . rg_array2string($paras)); rg_log("DEBUG: _op=$_op sparas=" . rg_array2string($paras));
8 8
9 9 $rg['admin_plans_menu'][$_op] = 1; $rg['admin_plans_menu'][$_op] = 1;
10 $_admin_plans .= rg_template("admin/plans/menu.html", $rg, TRUE /* xss */);
10 $rg['HTML:menu_admin_level2'] = rg_template("admin/plans/menu.html", $rg, TRUE /* xss */);
11 11
12 12 switch ($_op) { switch ($_op) {
13 13 case 'list': // list case 'list': // list
File inc/admin/repos/repos.php changed (mode: 100644) (index a705d6a..ef8d969)
... ... $_admin_repos = "";
6 6 $_op = empty($paras) ? "list" : array_shift($paras); $_op = empty($paras) ? "list" : array_shift($paras);
7 7
8 8 $rg['admin_repos_menu'][$_op] = 1; $rg['admin_repos_menu'][$_op] = 1;
9 $_admin_repos .= rg_template("admin/repos/menu.html", $rg, TRUE /* xss */);
9 $rg['HTML:menu_admin_level2'] = rg_template("admin/repos/menu.html", $rg, TRUE /* xss */);
10 10
11 11 switch ($_op) { switch ($_op) {
12 12 case 'add': case 'add':
File inc/admin/users/users.php changed (mode: 100644) (index 40c7d57..e0abc7b)
... ... $target_ui = rg_user_info($db, 0, $target, "");
11 11 $_show_list = 1; $_show_list = 1;
12 12
13 13 $rg['admin_users_menu'][$_op] = 1; $rg['admin_users_menu'][$_op] = 1;
14 $_admin_users .= rg_template("admin/users/menu.html", $rg, TRUE /* xss */);
14 $rg['HTML:menu_admin_level2'] = rg_template("admin/users/menu.html", $rg, TRUE /* xss */);
15 15
16 16 switch ($_op) { switch ($_op) {
17 17 case 'add': // add case 'add': // add
File root/themes/default/admin/menu.html changed (mode: 100644) (index 81e245e..4778560)
7 7 <li@@if(@@admin_menu::repos@@ == 1){{ class="selected"}}{{}}><a href="/op/admin/repos">Repos</a></li> <li@@if(@@admin_menu::repos@@ == 1){{ class="selected"}}{{}}><a href="/op/admin/repos">Repos</a></li>
8 8 <li@@if(@@admin_menu::invites@@ == 1){{ class="selected"}}{{}}><a href="/op/admin/invites">Invites</a></li> <li@@if(@@admin_menu::invites@@ == 1){{ class="selected"}}{{}}><a href="/op/admin/invites">Invites</a></li>
9 9 </ul> </ul>
10 </div>
10 </div>
11 @@menu_admin_level2@@
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