Skip to content

Commit

Permalink
Updated website copy to reflect shuttered status.
Browse files Browse the repository at this point in the history
  • Loading branch information
nfarina committed Sep 3, 2011
1 parent e3bff0c commit 3f07e92
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class DropboxWebDAVApplication(WSGIApplication):
def handle_request(self, environ, request, response):
method = environ['REQUEST_METHOD']

if (method == 'GET' or method == 'POST') and request.path == '/':
if True:# or (method == 'GET' or method == 'POST') and request.path == '/':
return self.handle_main(environ, request, response)

# Check authentication
Expand Down
4 changes: 2 additions & 2 deletions base.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>DropDAV</title>
<title>DropDAV (Limited)</title>
<link href="/__media__/style.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div class="content">
<div class="header">
DropDAV
DropDAV (Limited)
</div>
{% block content %}
{% endblock %}
Expand Down
16 changes: 15 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{% extends "base.html" %}

{% block content %}
<div style="opacity:0.3">
<p>
DropDAV is a simple way to allow access to your Dropbox files via WebDAV.
Mostly I made it so I could allow the new iPad Pages/Numbers/Keynote apps
Expand All @@ -14,9 +15,22 @@
NOTE: You can only upload/download files of up to 1MB in size through WebDAV.
This is due to <a href="http://code.google.com/appengine/">App Engine</a> limitations.
</p>
</div>
<div style="background:rgba(255,255,255,0.8);padding:5px 10px;border-radius:10px;margin:20px auto;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.3); -moz-box-shadow:0 1px 2px rgba(0,0,0,0.3)">
<p class="moreimportant">
DropDAV Shutting Down
</p>
<p style="font-style:italic; line-height: 1.7em; text-align:center;">
When I started DropDAV, I pledged to run it as a free/hobby service as long as I could. Unfortunately, a recent <a href="http://www.informationweek.com/articles/231600672?nomobile=1">drastic increase in hosting costs</a> has forced me to shut down the service entirely.
<br/><br/>
You might try a similar service, also called <a href="http://dropdav.com">DropDAV</a>, instead.
<br/><br/>
Or, if you're a geek like me, you can <a href="http://github.com/nfarina/dropdav">download the source</a> and run your own private version of DropDAV for yourself.
</p>
</div>
<form method="POST">
<input type="hidden" name="action" value="setup"/>
<input type="submit" value="Link my Dropbox account to DropDAV"/>
<input type="submit" disabled value="Link my Dropbox account to DropDAV Limited"/>
</form>
{% endblock %}

7 changes: 7 additions & 0 deletions media/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,11 @@ html, body {

.footer a {
color: #333;
}

.moreimportant {
color: darkred;
font-weight: bold;
font-size: 130%;
text-align: center;
}

0 comments on commit 3f07e92

Please sign in to comment.