This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from wbprice/feature/save-and-retrieve-images
Save and Retrieve Images
- Loading branch information
Showing
4 changed files
with
203 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<html> | ||
<head> | ||
<Title>LocalArt API</Title> | ||
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css | ||
"> | ||
<link rel="stylesheet" type="text/css" href="/templates/style.css"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div class="pure-g"> | ||
|
||
<header> | ||
<div class="pure-u-1"> | ||
<h1>LocalArt API Documentation</h1> | ||
</div> | ||
</header> | ||
|
||
<section id class="pure-u-1"> | ||
<h2>Get exhibits</h2> | ||
<p>Returns an object containing all exhibits tagged in Norfolk, VA</p> | ||
<table class="pure-table pure-table-bordered"> | ||
<tr> | ||
<td> | ||
URL | ||
</td> | ||
<td> | ||
/exhibits | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Method | ||
</td> | ||
<td> | ||
GET | ||
</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
Options | ||
</td> | ||
<td> | ||
<dl> | ||
<dt>bbox</dt> | ||
<dd><p>Limit search area with longitude and latitude ranges to make a bounding box. Follows the order: min Longitude, min Latitude, max Longitude, max Latitude.</p> | ||
<em>/exhibits?bbox=36.75,-76.44,36.98,-76.13</em></dd> | ||
</dl> | ||
</td> | ||
</tr> | ||
</table> | ||
</section> | ||
|
||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
* { | ||
color: #1a1a1a; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
|
||
.pure-u-1 { | ||
padding: 0 3em; | ||
} | ||
|
||
header { | ||
background: #1a1a1a; | ||
} | ||
|
||
header h1 { | ||
color: white; | ||
font-weight: 300; | ||
} |