Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4726)

Unified Diff: chrome/common/extensions/docs/server2/fake_url_fetcher.py

Issue 10704252: Extensions Docs Server: Internal file system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed up Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/fake_url_fetcher.py
diff --git a/chrome/common/extensions/docs/server2/fake_url_fetcher.py b/chrome/common/extensions/docs/server2/fake_url_fetcher.py
new file mode 100644
index 0000000000000000000000000000000000000000..bd2ac53f69a4356da450f93dc40cbba1047311f7
--- /dev/null
+++ b/chrome/common/extensions/docs/server2/fake_url_fetcher.py
@@ -0,0 +1,43 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+
+from future import Future
+
+class _Response(object):
+ def __init__(self):
+ self.content = ''
+ self.headers = { 'content-type': 'none' }
+ self.status_code = 200
+
+class FakeUrlFetcher(object):
+ def __init__(self, base_path):
+ self._base_path = base_path
+
+ def _ReadFile(self, filename):
+ with open(os.path.join(self._base_path, filename), 'r') as f:
+ return f.read()
+
+ def _ListDir(self, directory):
+ files = os.listdir(os.path.join(self._base_path, directory))
+ html = '<html><title>Revision: 00000</title>\n'
+ for filename in files:
+ if os.path.isdir(os.path.join(self._base_path, directory, filename)):
+ html += '<a>' + filename + '/</a>\n'
+ else:
+ html += '<a>' + filename + '</a>\n'
+ html += '</html>'
+ return html
+
+ def FetchAsync(self, url):
+ return Future(value=self.Fetch(url))
+
+ def Fetch(self, url):
+ result = _Response()
+ if url.endswith('/'):
+ result.content = self._ListDir(url)
+ else:
+ result.content = self._ReadFile(url)
+ return result
« no previous file with comments | « chrome/common/extensions/docs/server2/example_zipper.py ('k') | chrome/common/extensions/docs/server2/fetcher_cache.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698