mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
Site: W3C-Valid and CSS/HTML corrections
* Makes all the pages (except "See it") W3C Valid * Adjusts a few texts here and there a little bit * Makes the menubar span the whole div and display correct on FF/Linux * Moves "GitX" in the header a few px down to center it Signed-off-by: Johannes Gilger <heipei@hackvalue.de>
This commit is contained in:
@@ -63,15 +63,16 @@ h3, h4
|
||||
|
||||
#header
|
||||
{
|
||||
height: 100px;
|
||||
height: 90px;
|
||||
font-size: 400%;
|
||||
color: white;
|
||||
|
||||
text-align: center;
|
||||
padding-top: 10px;
|
||||
|
||||
background-image: url('../images/header.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-position:center;
|
||||
background-position:absolute;
|
||||
}
|
||||
|
||||
#content
|
||||
@@ -156,12 +157,8 @@ h3, h4
|
||||
margin-left: 10px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
h2.noclear
|
||||
{
|
||||
clear: none;
|
||||
}
|
||||
|
||||
p.noclear
|
||||
.noclear
|
||||
{
|
||||
clear: none;
|
||||
}
|
||||
@@ -176,7 +173,7 @@ p.noclear
|
||||
#nav a
|
||||
{
|
||||
display: block;
|
||||
width: 90px;
|
||||
width: 100px;
|
||||
padding: 2px;
|
||||
margin: 4px 4px 0px 4px;
|
||||
|
||||
|
||||
@@ -9,11 +9,11 @@ end
|
||||
<title>
|
||||
GitX - <%= @title %>
|
||||
</title>
|
||||
<link rel="stylesheet" href="css/master.css" type="text/css" media="screen" title="Main Style" charset="utf-8" />
|
||||
<link rel="stylesheet" href="css/master.css" type="text/css" media="screen" title="Main Style" charset="utf-8">
|
||||
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
|
||||
<link href="http://gitx.frim.nl/Downloads/appcast.xml" rel="alternate" type="application/rss+xml" title="GitX Application Update Feed" />
|
||||
<link href="http://gitx.frim.nl/Downloads/appcast.xml" rel="alternate" type="application/rss+xml" title="GitX Application Update Feed">
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
@@ -24,7 +24,7 @@ end
|
||||
<%= create_link("index", "Home") %>
|
||||
<%= create_link "seeit", "See it" %>
|
||||
<%= create_link "contribute", "Contribute" %>
|
||||
<%= create_link 'release_history', "Release History" %>
|
||||
<%= create_link 'release_history', "Release History" %>
|
||||
<%= create_link 'user_manual', "User Manual" %>
|
||||
<%= create_link 'links', "Links" %>
|
||||
<%= create_link 'contact', "Contact" %>
|
||||
|
||||
@@ -32,6 +32,6 @@ reach Lighthouse or don't want to register for an account, you can also send the
|
||||
If you don't want to or can't help with the code you can also support this project by making a donation using the button below.
|
||||
</p>
|
||||
<p>
|
||||
<a href='http://www.pledgie.com/campaigns/1816'><img alt='Click here to lend your support to: gitx and make a donation at www.pledgie.com !' src='http://www.pledgie.com/campaigns/1816.png?skin_name=chrome' border='0' /></a>
|
||||
<a href='http://www.pledgie.com/campaigns/1816'><img alt='Click here to lend your support to: gitx and make a donation at www.pledgie.com !' src='http://www.pledgie.com/campaigns/1816.png?skin_name=chrome' style="border:0px"></a>
|
||||
</p>
|
||||
|
||||
|
||||
+18
-23
@@ -1,44 +1,39 @@
|
||||
<% @title = "Home" %>
|
||||
<div class="nohover" id="download">
|
||||
<div id="version">
|
||||
<a href="http://frim.frim.nl/GitXStable.app.zip" title="Latest GitX download" id="download_link" class="nohover">
|
||||
Download GitX
|
||||
<div id="version">Version <%= ReleaseNotes::last_version %></div>
|
||||
</a>
|
||||
<span style="font-size: 125%">Download GitX</span><br>Version <%= ReleaseNotes::last_version %>
|
||||
</a></div>
|
||||
<p id="donate_link">(you can help GitX by <a href="http://www.pledgie.com/campaigns/1816">donating</a>)</p>
|
||||
</div>
|
||||
|
||||
<h2 class="noclear">
|
||||
GitX
|
||||
</h2>
|
||||
|
||||
<p class="noclear"> GitX is a git GUI specifically for Mac OS X. It currently
|
||||
<h2 class="noclear">GitX</h2>
|
||||
<p>
|
||||
GitX is a git GUI made for Mac OS X. It currently
|
||||
features a history viewer much like gitk and a commit GUI like git gui. But
|
||||
then in silky smooth OS X style!</p>
|
||||
then in silky smooth OS X style!
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
Features
|
||||
</h3>
|
||||
<h3 class="noclear">Features</h3>
|
||||
<ul>
|
||||
<li>Detailed history viewer</li>
|
||||
<li>Nice commit GUI, allowing hunk- and line-wise staging</li>
|
||||
<li>Fast</li>
|
||||
<li>Nice Aqua interface</li>
|
||||
<li>Paste commits to gist.github.com</li>
|
||||
<li>Fast workflow, auto-refresh option</li>
|
||||
<li>Explore tree of any revision</li>
|
||||
<li>Nice Aqua interface</li>
|
||||
<li>Paste commits to <a href="http://gist.github.com/">gist.github.com</a></li>
|
||||
<li>QuickLook integration</li>
|
||||
</ul>
|
||||
<h3>
|
||||
Requirements
|
||||
</h3>
|
||||
|
||||
<h3>Requirements</h3>
|
||||
<p>
|
||||
GitX is made specifically for Mac OS X 10.5 and higher. Because it uses features like Garbage Collection, you can't compile it on earlier systems. GitX also requires a fairly recent Git -- version 1.5.4 and higher are all supported.
|
||||
GitX runs on Mac OS X 10.5 Leopard and Mac OS X 10.6 Snow Leopard. Because it uses features like Garbage Collection, you can't compile it on earlier systems. GitX also requires a fairly recent Git -- version 1.5.6 and higher are all supported.
|
||||
</p>
|
||||
<h3>
|
||||
Download
|
||||
</h3>
|
||||
|
||||
<h3>Download</h3>
|
||||
<p>
|
||||
The newest version of GitX is <%= ReleaseNotes::last_version %>. This version can be downloaded from <a href="http://frim.frim.nl/GitXStable.app.zip">here</a>. To see what has changed, read the <a href="release_history.html">Release History</a>.
|
||||
</p>
|
||||
<p>
|
||||
After you have started it once, you can install the command-line tool through the menu (GitX->Enable Terminal Usage…). This will install a “gitx” binary in /usr/local/bin.
|
||||
After starting GitX, you can install the command-line tool through the menu (GitX->Enable Terminal Usage…). This will install a “gitx” binary in /usr/local/bin.
|
||||
</p>
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
|
||||
<ul>
|
||||
<li><a href="http://github.com/pieter/gitx" title="GitX on Github">GitX on Github</a></li>
|
||||
<ul>
|
||||
<li><a href="http://github.com/pieter/gitx/wikis" title="GitX Wiki">Wiki on Github</a></li>
|
||||
</ul>
|
||||
<li style="list-style:none"><ul>
|
||||
<li><a href="http://github.com/pieter/gitx/wikis" title="GitX Wiki">Wiki on Github</a></li>
|
||||
</ul></li>
|
||||
<li><a href="http://www.ohloh.net/projects/gitx" title="GitX on ohloh">GitX on ohloh</a></li>
|
||||
<li><a href="http://cia.vc/stats/project/gitx" title="GitX on CIA.vc">GitX on CIA.vc</a></li>
|
||||
</ul>
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
<h3 id="screencasts">Screencasts</h3>
|
||||
<div id="episodediv">
|
||||
<div id="video_display">
|
||||
<div id="video"><img src="images/qtime.png" width="568"></div>
|
||||
<div id="video"><img src="images/qtime.png" alt="Screencast" width="568"></div>
|
||||
<div id="video_description"></div>
|
||||
</div>
|
||||
<div id="episodebar">
|
||||
@@ -59,4 +59,4 @@
|
||||
episodelist.innerHTML += '<li><a href="#" onclick="return show_video(' + screencast + ')">' + s[1] + '</a></li>';
|
||||
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user