mirror of
				https://github.com/avatao-content/baseimage-tutorial-framework
				synced 2025-10-31 07:22:54 +00:00 
			
		
		
		
	Adapt existing component examples to refactor
This commit is contained in:
		| @@ -1,25 +1,25 @@ | ||||
| import codecs | ||||
|  | ||||
| from component import Component | ||||
| from tornado.ioloop import IOLoop | ||||
|  | ||||
| from component import Component | ||||
|  | ||||
|  | ||||
| def echo_handler(data): | ||||
|     return data | ||||
|  | ||||
|  | ||||
| def rot13_handler(data): | ||||
| def rot13_handler(data, *args): | ||||
|     data['data'] = codecs.encode(data['data'], 'rot13') | ||||
|     return data | ||||
|  | ||||
|  | ||||
| def change_case_handler(data): | ||||
| def change_case_handler(data, *args): | ||||
|     data['data'] = data['data'].upper() if data['data'].islower() else data['data'].lower() | ||||
|     return data | ||||
|  | ||||
|  | ||||
| def reverse_handler(data): | ||||
| def reverse_handler(data, *args): | ||||
|     data['data'] = data['data'][::-1] | ||||
|     return data | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user