xaizek / rocketgit (License: AGPLv3+) (since 2018-12-09)
Light and fast Git hosting solution suitable to serve both as a hub or as a personal code storage with its tickets, pull requests, API and much more.
Commit f0a08c03ae739e59d1a608234cbb0988cca6a351

Small fixes, mainy CSS.
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-05-04 21:51
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-05-04 21:51
Parent(s): d70ca5530fe3ef23f02f8a2563e957529fe0ea5c
Signing key:
Tree: b5fc62ca26e98fa170daa66427e01873a06918de
File Lines added Lines deleted
TODO 2 25
inc/repo.inc.php 9 5
root/themes/default/donate.html 1 1
root/themes/default/download-vm.html 1 1
root/themes/default/download.html 1 1
root/themes/default/features.html 1 1
root/themes/default/index.html 5 7
root/themes/default/main.css 2 6
root/themes/default/main.html 1 1
root/themes/default/pricing.html 1 1
root/themes/default/repo/discover.html 12 10
root/themes/default/tos.html 1 1
File TODO changed (mode: 100644) (index d0f5f9b..d7510d9)
1 1 == Where I stopped last time == == Where I stopped last time ==
2 [ ] Disable auditing on production/vm/r1?
3 2 [ ] Rebuild virtual machine with the latest rocketgit version. [ ] Rebuild virtual machine with the latest rocketgit version.
4 [ ] Add "Spread the word!" on website.
5 [ ] Pe discover am asa:
6 container
7 header
8 slogan
9 menus
10 subpage_title
11 "Discover"
12 menu menu2
13 main_container
14 footer
15
16 Pe features am asa:
17 header
18 slogan
19 menus
20 main_container
21 "Download"
22 footer
23
24 "Discover" pare mai fain! Eventual, sa nu fie 100% latimea.
25 Care e diferenta?!
26
27 [ ] Se pare ca la descrierea repositori-urilor, nu apare \n-ul!
28 3
29 4 [ ] VirtualBox instalation [ ] VirtualBox instalation
30 5 - Go to https://www.virtualbox.org/wiki/Downloads, download a proper - Go to https://www.virtualbox.org/wiki/Downloads, download a proper
 
42 17
43 18
44 19 == BEFORE NEXT RELEASE == == BEFORE NEXT RELEASE ==
20 [ ] Add "Spread the word!" on website.
21 [ ] Give up on submenu1/2 and integrate them when needed?
45 22 [ ] Is login_ui::homepage used anywhere? [ ] Is login_ui::homepage used anywhere?
46 23 [ ] I have a common part in download-vm.html, deal with it. [ ] I have a common part in download-vm.html, deal with it.
47 24 [ ] https://www.kernel.org/pub/software/scm/git/docs/gitworkflows.html [ ] https://www.kernel.org/pub/software/scm/git/docs/gitworkflows.html
File inc/repo.inc.php changed (mode: 100644) (index bd792be..635906c)
... ... function rg_repo_search_high_level($db, $rg, $ui, $url)
1626 1626 /* /*
1627 1627 * Discover top menu * Discover top menu
1628 1628 */ */
1629 function rg_repo_discover($db, $op, &$rg, $ui)
1629 function rg_repo_discover($db, $op, $rg, $ui)
1630 1630 { {
1631 1631 rg_log("repo_discover: op=$op"); rg_log("repo_discover: op=$op");
1632 1632
1633 1633 $ret = ''; $ret = '';
1634 1634
1635 if (empty($op))
1636 $op = 'list';
1637
1635 1638 switch ($op) { switch ($op) {
1636 1639 case 'search': case 'search':
1637 $ret .= rg_repo_search_high_level($db, $rg, $ui, '/op/discover');
1640 $x = rg_repo_search_high_level($db, $rg, $ui, '/op/discover');
1638 1641 break; break;
1639 1642
1640 1643 default: default:
1641 $ret .= rg_repo_list($db, $rg, "", $ui['uid']);
1644 $x = rg_repo_list($db, $rg, '', $ui['uid']);
1642 1645 break; break;
1643 1646 } }
1644 1647
1645 $rg['menu']['sub1'][$op] = 1;
1646 $rg['HTML:submenu1'] = rg_template('repo/discover.html', $rg);
1648 $rg['discover::menu::' . $op] = 1;
1649 $ret .= rg_template('repo/discover.html', $rg);
1650 $ret .= $x;
1647 1651
1648 1652 return $ret; return $ret;
1649 1653 } }
File root/themes/default/donate.html changed (mode: 100644) (index 08db6f9..5f740cf)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Donate</div>
2 <div class="main_title">Donate</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/download-vm.html changed (mode: 100644) (index db57b49..dd41aae)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Download - virtual machines</div>
2 <div class="main_title">Download - virtual machines</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/download.html changed (mode: 100644) (index 651457c..eca4c7a)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Download</div>
2 <div class="main_title">Download</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/features.html changed (mode: 100644) (index 2462417..a222306)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Features</div>
2 <div class="main_title">Features</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/index.html changed (mode: 100644) (index 9c54445..4cf1099)
40 40 <font color="red">Beta.</font> <font color="red">Beta.</font>
41 41 </div> </div>
42 42
43 <!-- main menu -->
44 <div id="menus">
45 <!-- submenus -->
46 @@submenu1@@
47 @@submenu2@@
48 </div>
49
50 43 <div id="main_container"> <div id="main_container">
44 <div id="menus">
45 @@submenu1@@
46 @@submenu2@@
47 </div>
48
51 49 <div id="main"> <div id="main">
52 50 @@rg_body@@ @@rg_body@@
53 51 </div> <!-- main --> </div> <!-- main -->
File root/themes/default/main.css changed (mode: 100644) (index 636e41f..d4c25c1)
... ... form input[type="submit"] {
105 105 } }
106 106
107 107 #menus { #menus {
108 xxx-padding-left: 10px;
109 108 } }
110 109
111 110 .menu { .menu {
 
... ... form input[type="submit"] {
136 135 .menu3 ul li.selected a { border-bottom: 2px solid #f00; } .menu3 ul li.selected a { border-bottom: 2px solid #f00; }
137 136 .menu3 ul li.selected a:hover { color: red; } .menu3 ul li.selected a:hover { color: red; }
138 137
139 .subpage_title {
140 margin-left: 15px;
141 margin-top: 15px;
138 .main_title {
142 139 margin-bottom: 10px; margin-bottom: 10px;
143 140 color: red; color: red;
144 141 font-size: 20pt; font-size: 20pt;
 
... ... form input[type="submit"] {
465 462 } }
466 463
467 464 .islands { .islands {
468 margin-top: 5px;
469 465 font-size: 13pt; font-size: 13pt;
470 466 width: 700px; width: 700px;
471 line-height: 115%;
467 xxx-line-height: 115%;
472 468 } }
473 469
474 470 .island_row { .island_row {
File root/themes/default/main.html changed (mode: 100644) (index 420529d..7a5befe)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Welcome to RocketGit!</div>
2 <div class="main_title">Welcome to RocketGit!</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/pricing.html changed (mode: 100644) (index 6cc2d0e..b278807)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Pricing</div>
2 <div class="main_title">Pricing</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
File root/themes/default/repo/discover.html changed (mode: 100644) (index a10a4f2..7fd5494)
1 <div class="subpage_title">Discover</div>
1 <div class="main_title">Discover</div>
2 2
3 <div class="menu menu2">
4 <ul>
5 <li@@if(@@menu::sub1::list@@ == 1){{ class="selected"}}{{}}>
6 <a href="/op/discover/list">List</a>
7 </li>
3 <div id="menus">
4 <div class="menu menu2">
5 <ul>
6 <li@@if(@@discover::menu::list@@ == 1){{ class="selected"}}{{}}>
7 <a href="/op/discover/list">List</a>
8 </li>
8 9
9 <li@@if(@@menu::sub1::search@@ == 1){{ class="selected"}}{{}}>
10 <a href="/op/discover/search">Search</a>
11 </li>
12 </ul>
10 <li@@if(@@discover::menu::search@@ == 1){{ class="selected"}}{{}}>
11 <a href="/op/discover/search">Search</a>
12 </li>
13 </ul>
14 </div>
13 15 </div> </div>
File root/themes/default/tos.html changed (mode: 100644) (index 0a40e1d..2aef019)
1 1 <div class="islands"> <div class="islands">
2 <div class="subpage_title">Terms of service</div>
2 <div class="main_title">Terms of service</div>
3 3
4 4 <div class="island_row"> <div class="island_row">
5 5 <div class="island_cell"> <div class="island_cell">
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://code.reversed.top/user/xaizek/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/rocketgit

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