-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES.txt
95 lines (54 loc) · 1.83 KB
/
CHANGES.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
==============================
CHANGES for rjdj.djangotornado
==============================
trunk
-----
2013-08-13 0.3.2
----------------
- Fixed broken imports for Django 1.5
2011-11-11 0.3.1
----------------
- allow custom named handlers in DjangoApplication
2011-09-19 0.3.0
----------------
- Use WSGIContainer.environ static method to convert request
- reverse lookup of django views implemented
- file upload for testclient implemented
- tornado_exit signal will be triggered upon end of the runtornado
command
- added tornado_exit Django signal in signals.py
2011-05-23 0.2.4
----------------
- pass HTTP Referer and HTTP User-Agent in RequestAdaptor
- dependency on Tornado==2.0
- allow --settings=... with runtornado command
- added middleware provider
- implemented "connection reset"-handling for asynchronous requests
- removed unused run() method in runtornado command
- added synchronous django handler
- added interactive console script
- convert Cookie to str only if it is unicode and we have a newer
version of tornado than v1.2.1
- added DjangoHandler class and DjangoRequest adaptor
- added TestClient and TestServer
- added testing framework
2011-05-23 0.2.3
----------------
- removed autoreload due to bug in Django 1.3
that requires terminal as stdin
2011-05-23 0.2.2
----------------
- do not pass *args and **options into inner_run method
2011-05-21 0.2.1
----------------
- support for admin media (development static files)
2011-05-21 0.2.0
----------------
- moved /welcome.html handler to /_
- patched unicode cookie bug
- refactored command to fit to Django 1.3 pattern
- removed scripts module and placed content into rjdj.djangotornado
- added --noreload option
- catch shut down command correctly
2011-04-26 0.1.1
----------------