-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
96 lines (74 loc) · 1.97 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
1. Prerequisites
Python libraries :
1. Django
2. uwsgi (Optional. For scaling)
3. Requests
------------------------------------------------------------------------
2. Start webserver with command
> python wikise_server.py
1. localhost: http://localhost:8000
Example : http://en.wikipedia.org/wiki/Malkin_Tower
on submit returns revision ids
2. Json response http://localhost:8000/info/?article=<article name>
Example: http://localhost:8000/info/?article=Eclipse
Alternate webserver (High Performance)
1. Modfiy file uwsgi.ini with correct directory path .
2. Starting webserver on UWSGI
> uwsgi --ini uwsgi.ini
-------------------------|
3. Change Log |
-------------------------|
Release notes 0.6
-----------------
1. Bug fix : Display network errors correctly
2. Fixed https://github.com/suryan/wikise/issues/1
Release notes 0.5
-----------------
1. Corrected UWSGI config
Release notes 0.4
-------------------------
1. Added json reponse http://localhost:8000/info/?article=<article name>
Release notes: 0.3
---------------------------
1. Added Wiki article Revisions fetch page
2. Moved Cherrypy webserver to third party
3. uwsgi config for starting server on uwsgi server
-------------------
Release notes: 0.2
----------------------
Cherrypy webserver for better scaling
Release notes: 0.1
---------------------
Django Project
4. Manifest
|-- manage.py
|-- readme.txt
|-- test.xml
|-- thirdparty
| |-- __init__.py
| |-- __init__.pyc
| |-- wsgiserver2.py
| |-- wsgiserver2.pyc
| `-- wsgiserver3.py
|-- uwsgi.ini
|-- wikise
| |-- __init__.py
| |-- __init__.pyc
| |-- settings.py
| |-- settings.pyc
| |-- templates
| | |-- index.html
| | `-- media
| |-- urls.py
| |-- urls.pyc
| |-- views.py
| |-- views.pyc
| |-- wikiapi.py
| |-- wikiapi.pyc
| |-- wsgi.py
| `-- wsgi.pyc
|-- wikise_server.py
|-- wsgiserver.py
`-- wsgiserver.pyc
5. To dos
1. unit tests