summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2014-06-13 08:05:59 +0800
committerIru Cai <mytbk920423@gmail.com>2014-06-13 08:30:58 +0800
commit7cc618d7e5f296cdac3ea40197012892d69f76df (patch)
tree21becfa6f92b65784fd867a69ddb97a56ac102a8 /res
parentc35a4f0a5cc4faa520a9c842185123a6a5a07f48 (diff)
downloadfqterm-7cc618d7e5f296cdac3ea40197012892d69f76df.tar.xz
Doc for FQTerm script
Diffstat (limited to 'res')
-rw-r--r--res/script/README120
1 files changed, 0 insertions, 120 deletions
diff --git a/res/script/README b/res/script/README
deleted file mode 100644
index 5e11eb9..0000000
--- a/res/script/README
+++ /dev/null
@@ -1,120 +0,0 @@
-
-I've contacted one of the authors of CTerm, and got his permisson to use these scripts with FQTerm.
-Other scripts were directly drawn from qterm0.4.1.
-
-Any file to be written to or read from should be in the format of UTF-8.
-
-Usage:
-
-//UI functions
-msgBox(msg)
- no return value
-
-yesnoBox(msg)
- return boolean value
-
-sessionID=long(sys.argv[0])
-
-formatError(sessionID)
-get the traceback info
-return string
-
-getArticle(sessionID, interval)
-copy current article
-return (string, success)
-
-
-copyArticle(sessionID)
-copy current article (obsolete)
-return string
-
-getText(sessionID, line)
-get text at line
-return string
-
-
-getAttrText(sessionID, line)
-get attr text at line
-return string
-
-sendString(sessionID, str)
-send string to server
-return number of bytes written
-
-
-sendParsedString(sessionID, str)
-send string with escape
-return number of bytes written
-
-caretX(sessionID)
-caret x
-return int
-
-caretY(sessionID)
-caret y
-return int
-
-
-columns(sessionID)
-screen width
-return int
-
-
-rows(sessionID)
-screen height
-return int
-
-
-isConnected(sessionID)
-connected to server or not
-return int
-
-disconnect(sessionID)
-disconnect from server
-
-
-reconnect(sessionID)
-reconnect
-
-
-getBBSCodec(sessionID)
-get the bbs encoding, GBK or Big5
-return string
-
-getAddress(sessionID)
-get the bbs address
-return string
-
-getPort(sessionID)
-get the bbs port number
-return int
-
-getProtocol(sessionID)
-get the bbs protocol, 0/1/2 TELNET/SSH1/SSH2
-return int
-
-getReplyKey(sessionID)
-get the key to reply messages
-return string (wtf...?)
-
-
-getURL(sessionID)
-get the url string under mouse (not sure if works)
-return string
-
-
-previewImage(sessionID, url)
-preview the image link
-
-
-fromUTF8(str, codec)
-decode from utf8 to string in specified codec
-return string
-
-
-toUTF8(str, codec)
-decode from string in specified codec to utf8
-return string
-
-artDialog(content)
-open a dialog with content denoted in the argument