New dmg background.

Added download site html.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@137 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-02-24 23:28:24 +00:00
parent c81913c6f8
commit e2ccd491c5
5 changed files with 127 additions and 3 deletions

View File

@ -147,14 +147,14 @@ make_dmg() {
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {200, 100, 945, 461}
set the bounds of container window to {200, 100, 760, 460}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set icon size of theViewOptions to 100
set background picture of theViewOptions to file ".background:'dmg_background.png'"
make new alias file at container window to POSIX file "/Applications" with properties {name:"Applications"}
set position of item "'Gridworks'" of container window to {450, 150}
set position of item "Applications" of container window to {600, 150}
set position of item "'Gridworks'" of container window to {170, 175}
set position of item "Applications" of container window to {380, 175}
close
open
update without registering applications

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

BIN
src/site/gridworks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

124
src/site/index.html Normal file
View File

@ -0,0 +1,124 @@
<html>
<head>
<title>Gridworks</title>
<style>
html { font-size: 62.5%; font-family: Helvetica, Tahoma, Arial, sans-serif; }
body {
margin: 0.5in 1in;
font-size: 150%;
}
table {
font-size: inherit;
border-collapse: collapse;
}
tr, td {
vertical-align: top;
}
p.center {
text-align: center;
}
#downloads {
width: 100%;
}
#downloads > tbody > tr > td {
padding-right: 1em;
padding-bottom: 1em;
}
#downloads > tbody > tr > td:last-child {
padding-right: 0;
}
#downloads > tbody > tr:last-child > td {
padding-bottom: 0;
}
#downloads > tbody > tr > td > div {
border: 1px solid #ddd;
padding: 1em;
}
#downloads h2 {
color: #aaa;
margin: 0;
padding: 0;
text-align: center;
}
a.download-link {
display: block;
width: 270px;
padding: 1em;
margin-top: 1em;
text-decoration: none;
text-align: left;
}
a.download-link:hover {
background: #fdd;
}
table.download-card {
width: 100%;
}
table.download-card > tbody > tr > td {
padding-right: 1em;
padding-bottom: 1em;
}
table.download-card > tbody > tr > td:last-child {
padding-right: 0;
}
table.download-card > tbody > tr:last-child > td {
padding-bottom: 0;
}
table.download-card div.instructions {
color: #aaa;
}
</style>
</head>
<body><div style="width: 800px; margin: auto;">
<h1>Gridworks</h1>
<p>Requires: Java 6. Data formats supported: TSV, CSV, Excel.</p>
<table id="downloads">
<tr>
<td><div>
<h2>Mac OSX</h2>
<center>
<a class="download-link" href="gridworks-1.0.dmg"><table class="download-card">
<tr>
<td width="1%"><img src="gridworks.png" /></td>
<td>
<h3>Gridworks-1.0.dmg</h3>
<div class="instructions">Download, open, then drag<br/>icon to Applications folder</div>
</td>
</tr>
</table></a>
</center>
</div></td>
<td><div>
<h2>Windows</h2>
<center>
<a class="download-link" href="gridworks-1.0.zip"><table class="download-card">
<tr>
<td width="1%"><img src="gridworks.png" /></td>
<td>
<h3>Gridworks-1.0.zip</h3>
<div class="instructions">Download, unzip, and<br/>run .exe inside</div>
</td>
</tr>
</table></a>
</center>
</div></td>
<tr>
<tr>
<td colspan="2"><div>
<h2>Others</h2>
<p>Check out the source code
<pre>svn co https://svn.metaweb.com/svn/SANDBOX/david/gridworks/trunk gridworks</pre>
</p>
<p>Then inside the gridworks directory, run
<pre>./gridworks run</pre>
</p>
</div></td>
</tr>
</table>
</div></body>
</html>