summaryrefslogtreecommitdiffstats
path: root/tools/ajaxterm
Commit message (Collapse)AuthorAgeFilesLines
* Remove ajaxterm from NovaThierry Carrez2012-02-0715-3406/+0
| | | | | | | | | | Removes copy of ajaxterm code, nova-ajax-console-proxy, and support for get_ajax_console from Nova proper. Implements blueprint remove-ajaxterm Fixes bug 917963 Change-Id: I2c0ff427c53c0f63a18b10475d6b4cbe9a085d83
* PEP8 remove direct type comparisonslzyeval2012-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | Fixes bug #910763 According to PEP8, - Object type comparisons should always use isinstance() instead of comparing types directly. Yes: if isinstance(obj, int): No: if type(obj) is type(1): When checking if an object is a string, keep in mind that it might be a unicode string too! In Python 2.3, str and unicode have a common base class, basestring, so you can do: if isinstance(obj, basestring): Change-Id: I7c0fdecf99872f5b8f72b2c2ed4f5c539c33def1
* add timeout constant, set to 5 minutesAnthony Young2011-01-031-2/+3
|
* rewrite proxy to not use twistedAnthony Young2010-12-221-1/+1
|
* add in a few commentsroot2010-09-171-1/+6
|
* s/\t/ /g, and add some commentsroot2010-09-171-558/+558
|
* add security and session timeout to ajaxtermroot2010-09-173-9/+28
|
* initial commit of ajaxtermroot2010-09-1715-0/+3381