Skip to content

Commit b9ab687

Browse files
committed
First pages commit
0 parents  commit b9ab687

13 files changed

+9832
-0
lines changed

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zealdocs.org

_layouts/default.html

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Zeal - offline API documentation browser</title>
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<meta name="author" content="Jerzy Kozera">
9+
<link href="static/css/bootstrap.css" rel="stylesheet">
10+
<link href="static/css/custom.css" rel="stylesheet">
11+
<link href="static/css/bootstrap-responsive.css" rel="stylesheet">
12+
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
13+
<!--[if lt IE 9]>
14+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js">
15+
</script>
16+
<![endif]-->
17+
</head>
18+
<body>
19+
<div class="navbar navbar-fixed-top navbar-inverse">
20+
<div class="navbar-inner">
21+
<div class="container">
22+
<a class="brand" href="/">
23+
Zeal
24+
</a>
25+
<ul class="nav">
26+
<li{% if page.url == '/index.html' %} class="active"{% endif %}><a href="/">Home</a></li>
27+
<li{% if page.url == '/download.html' %} class="active"{% endif %}><a href="download.html">Download</a></li>
28+
<li><a href="mailto:[email protected]">Contact</a></li>
29+
</ul>
30+
<form class="navbar-form pull-right">
31+
</form>
32+
</div>
33+
</div>
34+
</div>
35+
<div class="container">
36+
{{ content }}
37+
<div class="copyright">
38+
© Jerzy Kozera 2013
39+
</div>
40+
</div>
41+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
42+
</script>
43+
<script src="static/js/bootstrap.js">
44+
</script>
45+
<script>
46+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
47+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
48+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
49+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
50+
51+
ga('create', 'UA-436420-7', 'zealdocs.org');
52+
ga('send', 'pageview');
53+
54+
</script>
55+
</body>
56+
</html>

download.html

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
---
2+
layout: default
3+
---
4+
<div>
5+
<h1>
6+
Download Zeal
7+
</h1>
8+
<p>
9+
There are various ways to download Zeal, depending on which operating
10+
system you use, and whether you want to use precompiled binary, or build
11+
it yourself from source code.
12+
</p>
13+
</div>
14+
<div class="row">
15+
<div class="span4">
16+
<h2>
17+
Windows binary
18+
</h2>
19+
<div>
20+
<p>
21+
A 32-bit zipped Windows binary with all dependencies included is available
22+
to download from Dropbox.
23+
<br>
24+
Simply decompress the .zip file and run zeal.exe from any place.
25+
</p>
26+
</div>
27+
<a class="btn" href="https://www.dropbox.com/s/gcokxsqio3tgnlo/zeal.zip">
28+
Download zeal.zip (30MB) »
29+
</a>
30+
</div>
31+
<div class="span4">
32+
<h2>
33+
Ubuntu Linux PPA
34+
</h2>
35+
<div>
36+
<p>
37+
If you use Ubuntu Linux Precise (12.04)&nbsp;or&nbsp;Quantal (12.10),
38+
you can easily install Zeal from its PPA.
39+
<br>
40+
<br>
41+
To install it:
42+
</p>
43+
<ol>
44+
<li>
45+
Run
46+
<code>add-apt-repository</code>
47+
commands listed on the PPA page
48+
</li>
49+
<li>
50+
then do
51+
<code>apt-get update</code>,
52+
</li>
53+
<li>
54+
and
55+
<code>apt-get install zeal</code>
56+
</li>
57+
</ol>
58+
After installing Zeal can be started from command line by running
59+
<code>zeal</code>.
60+
</div>
61+
<a class="btn" href="https://launchpad.net/~jerzy-kozera/+archive/zeal-ppa">
62+
Go to Ubuntu PPA&nbsp;»
63+
</a>
64+
</div>
65+
<div class="span4">
66+
<h2>
67+
Source code
68+
</h2>
69+
<div>
70+
<p>
71+
You can also&nbsp;compile Zeal from source code, assuming you have
72+
<a href="http://qt-project.org/downloads">
73+
Qt &gt;= 5.0.0 development tools
74+
</a>
75+
installed. Clone the github repository linked below, and run
76+
<code>qmake</code>
77+
and
78+
<code>make</code>
79+
from the
80+
<code>zeal</code>
81+
subdirectory.
82+
</p>
83+
</div>
84+
<a class="btn" href="https://github.com/jkozera/zeal">
85+
See GitHub project page »
86+
</a>
87+
</div>
88+
</div>
89+
<div class="well">
90+
<img src="http://i.imgur.com/1gT8891.png"/>
91+
<h1>
92+
Usage
93+
</h1>
94+
<p>
95+
After installing/compiling, to quickly download documentation sets, click 'Edit',&nbsp;'Options',&nbsp;'Docsets',&nbsp;'Download...'.
96+
<div class="clearfix"></div>
97+
</p>
98+
</div>

index.html

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
---
2+
layout: default
3+
---
4+
<div class="hero-unit">
5+
<div>
6+
<h1>
7+
Zeal
8+
</h1>
9+
<p>
10+
Zeal is a simple offline API&nbsp;documentation browser inspired
11+
by&nbsp;<a href="http://kapeli.com/dash/">Dash</a>&nbsp;(OS X app), available
12+
for Linux and Windows.
13+
</p>
14+
<ul>
15+
<li>
16+
Quickly search documentation using Alt+Space (or customised) hotkey to
17+
display Zeal from any place in your workspace.
18+
</li>
19+
<li>
20+
Search in multiple sets of documentation at once.
21+
</li>
22+
<li>
23+
Don't be dependend on your internet connection.
24+
</li>
25+
</ul>
26+
</div>
27+
<a class="btn btn-primary btn-large" href="download.html">
28+
Download »
29+
</a>
30+
</div>
31+
<hr>
32+
<div class="row">
33+
<div class="span4">
34+
<div>
35+
</div>
36+
<a href="#ssModal" data-toggle="modal"><img id="screenshot" src="http://i.imgur.com/m2MS8pyh.png" style=" width: 261px; height: 150px;"></a>
37+
<a class="btn" href="http://imgur.com/a/eVi97">
38+
<div>
39+
More screenshots »
40+
</div>
41+
</a>
42+
</div>
43+
<div class="span4">
44+
<div>
45+
<h2>
46+
Open source!
47+
</h2>
48+
<p>
49+
Zeal is released under the GPL license, which allows anyone to contribute
50+
changes. And it is available free of charge.
51+
</p>
52+
</div>
53+
<a class="btn" href="https://github.com/jkozera/zeal">
54+
See GitHub project page »
55+
</a>
56+
</div>
57+
<div class="span4">
58+
<div>
59+
<h2>
60+
Documentation included
61+
</h2>
62+
<p>Currently there are docsets available from:</p>
63+
<ol>
64+
<li>Django, jQuery, Ruby 1 and 2 - thanks to Dash's
65+
<a href="https://github.com/jkozera/zeal/issues/1#issuecomment-13357189">docset exchange programe</a>,
66+
</li>
67+
<li>
68+
Appcelerator Titanium, ExtJS 4.1, Python 2.7.3, Sencha Touch 2.1, Qt 5
69+
- generated for Zeal.
70+
</li>
71+
</ol>
72+
</div>
73+
</div>
74+
</div>
75+
<div id="ssModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
76+
<div class="modal-header">
77+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
78+
<h3 id="myModalLabel">Main window's screenshot</h3>
79+
</div>
80+
<div class="modal-body">
81+
<img src="http://i.imgur.com/m2MS8py.png" />
82+
</div>
83+
<div class="modal-footer">
84+
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
85+
</div>
86+
</div>

0 commit comments

Comments
 (0)