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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import os
6
7 from future import Future
8
9 class _Response(object):
10 def __init__(self):
11 self.content = ''
12 self.headers = { 'content-type': 'none' }
13 self.status_code = 200
14
15 class FakeUrlFetcher(object):
16 def __init__(self, base_path):
17 self._base_path = base_path
18
19 def _ReadFile(self, filename):
20 with open(os.path.join(self._base_path, filename), 'r') as f:
21 return f.read()
22
23 def _ListDir(self, directory):
24 files = os.listdir(os.path.join(self._base_path, directory))
25 html = '<html><title>Revision: 00000</title>\n'
26 for filename in files:
27 if os.path.isdir(os.path.join(self._base_path, directory, filename)):
28 html += '<a>' + filename + '/</a>\n'
29 else:
30 html += '<a>' + filename + '</a>\n'
31 html += '</html>'
32 return html
33
34 def FetchAsync(self, url):
35 return Future(value=self.Fetch(url))
36
37 def Fetch(self, url):
38 result = _Response()
39 if url.endswith('/'):
40 result.content = self._ListDir(url)
41 else:
42 result.content = self._ReadFile(url)
43 return result
OLDNEW
« 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