gitprep / gitprep-site / index.html /
Newer Older
204 lines | 5.499kb
add GitPrep site
Yuki Kimoto authored on 2013-06-12
1
<!doctype html>
2
<html>
3
  <head>
4
    <title>
improve web site
Yuki Kimoto authored on 2013-06-29
5
      GitPrep - Github clone. you can install portable github system into unix/linux.
add GitPrep site
Yuki Kimoto authored on 2013-06-12
6
    </title>
7
    <style>/*<![CDATA[*/
8

            
9
      a { color: inherit }
10
      a:hover { color: #2a2a2a }
11
      a img { border: 0 }
12
      body {
13
        background-color: #f5f6f8;
14
        color: #445555;
15
        font: 0.9em 'Helvetica Neue', Helvetica, sans-serif;
16
        font-weight: normal;
17
        line-height: 1.5em;
18
        margin: 0;
19
      }
20
      pre {
21
        -moz-border-radius: 5px;
22
        border:#aaa 1px solid;
23
        border-radius: 5px;
24
        color: #333;
25
        font: 0.8em Consolas, Menlo, Monaco, Courier, monospace;
26
        line-height: 1.7em;
27
        text-align: left;
28
        padding-bottom: 1.5em;
29
        padding-top: 1.5em;
30
        white-space: pre-wrap;
31
      }
32
      #footer {
33
        padding-top: 1em;
34
        text-align: center;
35
      }
36

            
37
			h1, h2, h3 {
38
			  color: #2a2a2a;
39
			  font-size: 1.5em;
40
			  margin: 0;
41
			}
42
			#fun {
43
			  background: url(../digitalforest.png) repeat-x;
44
			  height: 450px;
45
			  text-align: center;
46
			}
47
			#introduction {
48
			  background-color: #fff;
49
			  -moz-border-radius-bottomleft: 5px;
50
			  border-bottom-left-radius: 5px;
51
			  -moz-border-radius-bottomright: 5px;
52
			  border-bottom-right-radius: 5px;
53
			  -moz-box-shadow: 0px 0px 2px #ccc;
54
			  -webkit-box-shadow: 0px 0px 2px #ccc;
55
			  box-shadow: 0px 0px 2px #ccc;
56
			  margin-left: 5em;
57
			  margin-right: 5em;
58
			  padding: 3em;
59
			  padding-top: 70px;
60
			}
61
			#wrapperlicious {
62
			  max-width: 1000px;
63
			  margin: 0 auto;
64
			}
65

            
66
/*]]>*/</style>
67
      <link href="/css/index.css" media="screen" rel="stylesheet" />
68

            
69
  </head>
70
  <body>
71
<div id="gitprepbar">
72
  <style scoped="scoped">/*<![CDATA[*/
73

            
74
    #gitprepbar {
75
      background-color: #1a1a1a;
76
      background: -webkit-gradient(
77
        linear,
78
        0% 0%,
79
        0% 100%,
80
        color-stop(0%, #2a2a2a),
81
        color-stop(100%, #000)
82
      );
83
      background: -moz-linear-gradient(
84
        top,
85
        #2a2a2a 0%,
86
        #000 100%
87
      );
88
      background: linear-gradient(top, #2a2a2a 0%, #000 100%);
89
      -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
90
      -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
91
      box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
92
      height: 46px;
93
      overflow: hidden;
94
      position: absolute;
95
      text-align: right;
96
      vertical-align: middle;
97
      width: 100%;
98
      z-index: 1000;
99
    }
100
    #gitprepbar-logo {
101
      float: left;
102
      margin-left: 5em;
103
      padding-top: 3px;
104
    }
improve web site
Yuki Kimoto authored on 2013-06-29
105
    #gitprepbar-logo a {
106
      text-decoration:none;
107
      color:white;
108
    }
add GitPrep site
Yuki Kimoto authored on 2013-06-12
109
    #gitprepbar-links {
110
      display:table-cell;
111
      float: right;
112
      height: 60px;
113
      margin-right: 5em;
114
      margin-top: 1em;
115
    }
116
    #gitprepbar-links a {
117
      color: #ccc;
118
      font: 1em 'Helvetica Neue', Helvetica, sans-serif;
119
      font-weight: 300;
120
      margin-left: 0.5em;
121
      padding-bottom: 1em;
122
      padding-top: 1em;
123
      text-decoration: none;
124
      -webkit-transition: all 200ms ease-in-out;
125
      -moz-transition: all 200ms ease-in-out;
126
      -o-transition: all 200ms ease-in-out;
127
      transition: all 200ms ease-in-out;
128
    }
129
    #gitprepbar-links a:hover { color: #fff }
130

            
131
/*]]>*/</style>
132
  <div id="gitprepbar-logo" style="color:white;font-size:20px;padding-top:12px;padding-left:60px">
improve web site
Yuki Kimoto authored on 2013-06-29
133
    <a href=".">GitPrep</a>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
134
  </div>
135
  <div id="gitprepbar-links">
improve readme
Yuki Kimoto authored on 2016-05-04
136
    <a href="https://perlcodesample.sakura.ne.jp/gitprep/gitprep.cgi/kimoto/gitprep">Example</a>
improve web site
Yuki Kimoto authored on 2013-06-29
137
    <a href="https://github.com/yuki-kimoto/gitprep/archive/latest.zip">Download</a>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
138
    <a href="https://github.com/yuki-kimoto/gitprep">Repository & Documentation</a>
fix gitprep site
Yuki Kimoto authored on 2015-06-17
139
    <a href="http://twitter.com/yukikimoto2">Twitter</a>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
140
  </div>
141
</div>
142
<div id="wrapperlicious">
143

            
144
  <div id="introduction">
145

            
146
    <h1>
147
      Github clone. you can install portable github system into unix/linux.
148
    </h1>
149
    <p>
150
      GitPrep is <a href="https://github.com">Github</a> clone.
151
      you can install portable github system into unix/linux.
152
      You can create users and repositories without limitation.
153
      This is free software.
154
    </p>
improve web site
Yuki Kimoto authored on 2013-06-29
155

            
156
    <p>
157
      <a href="https://github.com/yuki-kimoto/gitprep">
158
        <img src="http://cdn-ak.f.st-hatena.com/images/fotolife/p/perlcodesample/20130421/20130421180903_original.png" width="800" alt="GitPrep">
159
      </a>
160
    </p>
161
    
add GitPrep site
Yuki Kimoto authored on 2013-06-12
162
    <h2>Features</h2>
163
    <ul>
164
      <li>
165
        Github clone
166
      </li>
167
      <li>
168
        Portable. you can install it into your Unix/Linux server easily.
169
      </li>
170
      <li>
171
        Perl 5.8.7+ only needed.
172
      </li>
173
      <li>
174
        CGI support
175
      </li>
176
      <li>
177
        Having built-in web werver, Reverse proxy support
178
      </li>
179
    </ul>
improve web site
Yuki Kimoto authored on 2013-06-29
180

            
181
    <h2>Example</h2>
improve document
Yuki Kimoto authored on 2015-12-19
182
    <pre>  <a href="http://perlcodesample.sakura.ne.jp//gitprep/gitprep.cgi/kimoto/gitprep">Example(GitPrep source codes)</a></pre>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
183
    
184
    <h2>Download</h2>
improve web site
Yuki Kimoto authored on 2013-06-29
185
    <pre>  <a href="https://github.com/yuki-kimoto/gitprep/archive/latest.zip">Download</a> </pre>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
186
    
187
    <h2>Repository & Documentation</h2>
188
    <pre>  <a href="https://github.com/yuki-kimoto/gitprep">Repository & Documentation</a> </pre>
add WebDBViewer link
Yuki Kimoto authored on 2013-06-30
189

            
190
    <hr style="margin-top:20px;margin-bottom:10px">
191
    <div>
192
      <b>Sister project</b>
193
    </div>
194
    <div>
fix gitprep web site URL
Yuki Kimoto authored on 2015-11-06
195
      <a href="http://webdbviewer.yukikimoto.com/">WebDBViewer</a>
add WebDBViewer link
Yuki Kimoto authored on 2013-06-30
196
    </div>
add GitPrep site
Yuki Kimoto authored on 2013-06-12
197
</div>
198
<div id="footer" style="margin-bottom:10px">
improve web site
Yuki Kimoto authored on 2013-06-29
199
  <a href="." style="text-decoration:none;color:#666;">
add GitPrep site
Yuki Kimoto authored on 2013-06-12
200
    GitPrep
201
  </a>
202
</div>
203
</body>
204
</html>