This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Thread pool extensions to SocketServer. | |
""" | |
import Queue | |
import SocketServer | |
import sys | |
import threading |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('Ext.ux.data.proxy.JsonAjaxProxy', { | |
extend:'Ext.data.proxy.Ajax', | |
alias:'proxy.jsonajax', | |
actionMethods : { | |
create: "POST", | |
read: "POST", | |
update: "POST", | |
destroy: "POST" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************** | |
* Acer Yang, GAIS Laboratory, Univ. CCU, Taiwan. | |
* | |
* g++ -I/usr/local/include -L/usr/local/lib unicode-convert.cpp -licui18n -o uconv | |
* ./uconv input file charset_name | |
* | |
********/ | |
#include "unicode/ucnv.h" |