Skip to content

Commit f6fc868

Browse files
committed
Create gh-pages branch via GitHub
1 parent d3a0165 commit f6fc868

8 files changed

Lines changed: 445 additions & 269 deletions

File tree

β€Žimages/bg_hr.pngβ€Ž

943 Bytes
Loading

β€Žimages/blacktocat.pngβ€Ž

162 Bytes
Loading

β€Žimages/icon_download.pngβ€Ž

1.13 KB
Loading

β€Žimages/sprite_download.pngβ€Ž

16.4 KB
Loading

β€Žindex.htmlβ€Ž

Lines changed: 35 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,39 @@
11
<!DOCTYPE html>
22
<html>
3+
34
<head>
4-
<meta charset='utf-8'>
5-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
5+
<meta charset='utf-8' />
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
7+
<meta name="description" content="Git-ftp : Git powered FTP client written as shell script." />
68

7-
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
8-
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
9-
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
9+
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
1010

11-
<title>Git-ftp by git-ftp</title>
11+
<title>Git-ftp</title>
1212
</head>
1313

1414
<body>
1515

16-
<header>
17-
<div class="container">
18-
<h1>Git-ftp</h1>
19-
<h2>Git powered FTP client written as shell script.</h2>
20-
21-
<section id="downloads">
22-
<a href="https://github.com/git-ftp/git-ftp/zipball/master" class="btn">Download as .zip</a>
23-
<a href="https://github.com/git-ftp/git-ftp/tarball/master" class="btn">Download as .tar.gz</a>
24-
<a href="https://github.com/git-ftp/git-ftp" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
25-
</section>
26-
</div>
27-
</header>
28-
29-
<div class="container">
30-
<section id="main_content">
16+
<!-- HEADER -->
17+
<div id="header_wrap" class="outer">
18+
<header class="inner">
19+
<a id="forkme_banner" href="https://github.com/git-ftp/git-ftp">View on GitHub</a>
20+
21+
<h1 id="project_title">Git-ftp</h1>
22+
<h2 id="project_tagline">Git powered FTP client written as shell script.</h2>
23+
24+
<section id="downloads">
25+
<a class="zip_download_link" href="https://github.com/git-ftp/git-ftp/zipball/master">Download this project as a .zip file</a>
26+
<a class="tar_download_link" href="https://github.com/git-ftp/git-ftp/tarball/master">Download this project as a tar.gz file</a>
27+
</section>
28+
</header>
29+
</div>
30+
31+
<!-- MAIN CONTENT -->
32+
<div id="main_content_wrap" class="outer">
33+
<section id="main_content" class="inner">
3134
<h1>README of git-ftp</h1>
3235

3336
<ul>
34-
<li>Β© RenΓ© Moser, <a href="mailto:mail@renemoser.net">mail@renemoser.net</a>, 2010-2012</li>
3537
<li>This application is licenced under <a href="http://www.gnu.org/licenses/gpl-3.0-standalone.html">GNU General Public License, Version 3.0</a>
3638
</li>
3739
</ul><h2>Summary</h2>
@@ -50,14 +52,6 @@ <h2>About</h2>
5052
<p>Even if you are playing with different branches, git-ftp knows which files
5153
are different. No ordinary FTP client can do that.</p>
5254

53-
<h2>Known Issues</h2>
54-
55-
<ul>
56-
<li>See <a href="http://github.com/resmo/git-ftp/issues">git-ftp issues on GitHub</a> for open issues</li>
57-
</ul><h2>Installing</h2>
58-
59-
<p>See <a href="INSTALL.md">INSTALL</a> file.</p>
60-
6155
<h2>Usage</h2>
6256

6357
<pre><code>$ cd my_git_tracked_project
@@ -74,23 +68,19 @@ <h2>Usage</h2>
7468
<pre><code>$ git ftp init -u &lt;user&gt; -p - ftp://host.example.com/public_html
7569
</code></pre>
7670

77-
<p>See <a href="man/git-ftp.1.md">man page</a> for more options, features and examples!</p>
78-
79-
<h2>Limitations</h2>
80-
81-
<ul>
82-
<li>Windows and OS X: I am very limited in testing on Windows and OS X. Thanks for helping me out fixing bugs on these platforms.</li>
83-
<li>git-ftp as deployment tool: git-ftp was not designed as centralized deployment tool. While running git-ftp, you have to take care, no one pushes or touches this repo (e.g. no commits, no checkouts, no file modifications)!</li>
84-
</ul><h2>Unit Tested</h2>
85-
86-
<p>Core functionality is unit tested on Linux using shunit2. You can find the tests in <code>tests/</code>.</p>
87-
88-
<h2>Contributions</h2>
89-
90-
<p>Don't hesitate to use GitHub to improve this tool. Don't forget to add yourself to the <a href="AUTHORS">AUTHORS</a> file.</p>
71+
<p>See <a href="https://github.com/git-ftp/git-ftp/blob/master/man/git-ftp.1.md">man page</a> for more options, features and examples!</p>
9172
</section>
9273
</div>
9374

75+
<!-- FOOTER -->
76+
<div id="footer_wrap" class="outer">
77+
<footer class="inner">
78+
<p class="copyright">Git-ftp maintained by <a href="https://github.com/git-ftp">git-ftp</a></p>
79+
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
80+
</footer>
81+
</div>
82+
9483

84+
9585
</body>
96-
</html>
86+
</html>

β€Žparams.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"Git-ftp","tagline":"Git powered FTP client written as shell script.","body":"README of git-ftp\r\n=================\r\n\r\n* &copy; RenΓ© Moser, mail@renemoser.net, 2010-2012\r\n* This application is licenced under [GNU General Public License, Version 3.0]\r\n\r\nSummary\r\n-------\r\n\r\nGit powered FTP client written as shell script.\r\n\r\n\r\nAbout\r\n-----\r\n\r\nI use git-ftp for my script based projects, mostly PHP. Most of the low-cost\r\nweb hosting companies do not provide SSH or git support, but only FTP.\r\n\r\nThat is why I needed an easy way to deploy my git tracked projects. Instead of\r\ntransfering the whole project, I thought, why not only transfer the files\r\nthat changed since the last time, git can tell me those files.\r\n\r\nEven if you are playing with different branches, git-ftp knows which files\r\nare different. No ordinary FTP client can do that.\r\n\r\n\r\nKnown Issues\r\n------------\r\n\r\n* See [git-ftp issues on GitHub] for open issues\r\n\r\n\r\nInstalling\r\n----------\r\n\r\nSee [INSTALL](INSTALL.md) file.\r\n\r\n\r\nUsage\r\n-----\r\n\r\n\t$ cd my_git_tracked_project\r\n\t$ git ftp push --user <user> --passwd <password> ftp://host.example.com/public_html\r\n\r\nFor interactive password prompt use:\r\n\r\n\t$ git ftp push -u <user> -p - ftp://host.example.com/public_html\r\n\r\nPushing for the first time:\r\n\r\n\t$ git ftp init -u <user> -p - ftp://host.example.com/public_html\r\n\r\nSee [man page](man/git-ftp.1.md) for more options, features and examples!\r\n\r\n\r\nLimitations\r\n-----------\r\n\r\n* Windows and OS X: I am very limited in testing on Windows and OS X. Thanks for helping me out fixing bugs on these platforms.\r\n* git-ftp as deployment tool: git-ftp was not designed as centralized deployment tool. While running git-ftp, you have to take care, no one pushes or touches this repo (e.g. no commits, no checkouts, no file modifications)!\r\n\r\n\r\nUnit Tested\r\n-----------\r\n\r\nCore functionality is unit tested on Linux using shunit2. You can find the tests in `tests/`.\r\n\r\n\r\nContributions\r\n-------------\r\n\r\nDon't hesitate to use GitHub to improve this tool. Don't forget to add yourself to the [AUTHORS](AUTHORS) file.\r\n\r\n[git-ftp issues on GitHub]: http://github.com/resmo/git-ftp/issues\r\n[WhatisFlattr]: http://en.wikipedia.org/wiki/Flattr\r\n[FlattrLink]: https://flattr.com/thing/99914/Git-ftp\r\n[FlattrButton]: http://api.flattr.com/button/button-static-50x60.png\r\n[GNU General Public License, Version 3.0]: http://www.gnu.org/licenses/gpl-3.0-standalone.html\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
1+
{"name":"Git-ftp","tagline":"Git powered FTP client written as shell script.","body":"README of git-ftp\r\n=================\r\n\r\n* This application is licenced under [GNU General Public License, Version 3.0]\r\n\r\nSummary\r\n-------\r\n\r\nGit powered FTP client written as shell script.\r\n\r\n\r\nAbout\r\n-----\r\n\r\nI use git-ftp for my script based projects, mostly PHP. Most of the low-cost\r\nweb hosting companies do not provide SSH or git support, but only FTP.\r\n\r\nThat is why I needed an easy way to deploy my git tracked projects. Instead of\r\ntransfering the whole project, I thought, why not only transfer the files\r\nthat changed since the last time, git can tell me those files.\r\n\r\nEven if you are playing with different branches, git-ftp knows which files\r\nare different. No ordinary FTP client can do that.\r\n\r\n\r\nUsage\r\n-----\r\n\r\n\t$ cd my_git_tracked_project\r\n\t$ git ftp push --user <user> --passwd <password> ftp://host.example.com/public_html\r\n\r\nFor interactive password prompt use:\r\n\r\n\t$ git ftp push -u <user> -p - ftp://host.example.com/public_html\r\n\r\nPushing for the first time:\r\n\r\n\t$ git ftp init -u <user> -p - ftp://host.example.com/public_html\r\n\r\nSee [man page] for more options, features and examples!\r\n\r\n[man page]: https://github.com/git-ftp/git-ftp/blob/master/man/git-ftp.1.md\r\n[GNU General Public License, Version 3.0]: http://www.gnu.org/licenses/gpl-3.0-standalone.html","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}

β€Žstylesheets/pygment_trac.cssβ€Ž

Lines changed: 59 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,65 @@
1-
.highlight .c { color: #999988; font-style: italic } /* Comment */
2-
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
3-
.highlight .k { font-weight: bold } /* Keyword */
4-
.highlight .o { font-weight: bold } /* Operator */
5-
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
6-
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
7-
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
8-
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
9-
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
10-
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #f0f3f3; }
3+
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
4+
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
5+
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
6+
.highlight .o { color: #555555 } /* Operator */
7+
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
8+
.highlight .cp { color: #009999 } /* Comment.Preproc */
9+
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
10+
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
11+
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
1112
.highlight .ge { font-style: italic } /* Generic.Emph */
12-
.highlight .gr { color: #aa0000 } /* Generic.Error */
13-
.highlight .gh { color: #999999 } /* Generic.Heading */
14-
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
15-
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
16-
.highlight .go { color: #888888 } /* Generic.Output */
17-
.highlight .gp { color: #555555 } /* Generic.Prompt */
13+
.highlight .gr { color: #FF0000 } /* Generic.Error */
14+
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
15+
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
16+
.highlight .go { color: #AAAAAA } /* Generic.Output */
17+
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
1818
.highlight .gs { font-weight: bold } /* Generic.Strong */
19-
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */
20-
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
21-
.highlight .kc { font-weight: bold } /* Keyword.Constant */
22-
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
23-
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
24-
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
25-
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
26-
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
27-
.highlight .m { color: #009999 } /* Literal.Number */
28-
.highlight .s { color: #d14 } /* Literal.String */
29-
.highlight .na { color: #008080 } /* Name.Attribute */
30-
.highlight .nb { color: #0086B3 } /* Name.Builtin */
31-
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
32-
.highlight .no { color: #008080 } /* Name.Constant */
33-
.highlight .ni { color: #800080 } /* Name.Entity */
34-
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
35-
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
36-
.highlight .nn { color: #555555 } /* Name.Namespace */
37-
.highlight .nt { color: #CBDFFF } /* Name.Tag */
38-
.highlight .nv { color: #008080 } /* Name.Variable */
39-
.highlight .ow { font-weight: bold } /* Operator.Word */
19+
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
20+
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
21+
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
22+
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
23+
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
24+
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
25+
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
26+
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
27+
.highlight .m { color: #FF6600 } /* Literal.Number */
28+
.highlight .s { color: #CC3300 } /* Literal.String */
29+
.highlight .na { color: #330099 } /* Name.Attribute */
30+
.highlight .nb { color: #336666 } /* Name.Builtin */
31+
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
32+
.highlight .no { color: #336600 } /* Name.Constant */
33+
.highlight .nd { color: #9999FF } /* Name.Decorator */
34+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
35+
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
36+
.highlight .nf { color: #CC00FF } /* Name.Function */
37+
.highlight .nl { color: #9999FF } /* Name.Label */
38+
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
39+
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
40+
.highlight .nv { color: #003333 } /* Name.Variable */
41+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
4042
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
41-
.highlight .mf { color: #009999 } /* Literal.Number.Float */
42-
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
43-
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
44-
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
45-
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
46-
.highlight .sc { color: #d14 } /* Literal.String.Char */
47-
.highlight .sd { color: #d14 } /* Literal.String.Doc */
48-
.highlight .s2 { color: #d14 } /* Literal.String.Double */
49-
.highlight .se { color: #d14 } /* Literal.String.Escape */
50-
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
51-
.highlight .si { color: #d14 } /* Literal.String.Interpol */
52-
.highlight .sx { color: #d14 } /* Literal.String.Other */
53-
.highlight .sr { color: #009926 } /* Literal.String.Regex */
54-
.highlight .s1 { color: #d14 } /* Literal.String.Single */
55-
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
56-
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
57-
.highlight .vc { color: #008080 } /* Name.Variable.Class */
58-
.highlight .vg { color: #008080 } /* Name.Variable.Global */
59-
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
60-
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
43+
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
44+
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
45+
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
46+
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
47+
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
48+
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
49+
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
50+
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
51+
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
52+
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
53+
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
54+
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
55+
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
56+
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
57+
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
58+
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
59+
.highlight .vc { color: #003333 } /* Name.Variable.Class */
60+
.highlight .vg { color: #003333 } /* Name.Variable.Global */
61+
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
62+
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
6163

6264
.type-csharp .highlight .k { color: #0000FF }
6365
.type-csharp .highlight .kt { color: #0000FF }

0 commit comments

Comments
 (0)