summaryrefslogtreecommitdiffstats
path: root/pttpi/doc
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-15 15:30:22 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-15 15:30:22 +0800
commit0b8de94f2b29a383d6b42260a57d249a3ba88403 (patch)
tree8cb23ec0ab60185274a40bddd987192ddedc59f2 /pttpi/doc
parent2428ed917d4a0c82c956c355de60b6dff1afca23 (diff)
downloadpttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar.gz
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar.bz2
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar.lz
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar.xz
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.tar.zst
pttbbs-0b8de94f2b29a383d6b42260a57d249a3ba88403.zip
no longer maintained
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/not-maintained@1595 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'pttpi/doc')
-rw-r--r--pttpi/doc/spec50
1 files changed, 50 insertions, 0 deletions
diff --git a/pttpi/doc/spec b/pttpi/doc/spec
new file mode 100644
index 00000000..e1460030
--- /dev/null
+++ b/pttpi/doc/spec
@@ -0,0 +1,50 @@
+board.getBid get bid from board name
+input (s)
+ (board name)
+output ({s:i, s:s, s:i})
+ {errno => errno,
+ brdname => boardname,
+ bid => boardid} (bid = -1 if error)
+
+
+board.getBrdInfo
+get board information (by bid)
+input (i)
+ (bid)
+output ({s:i,s:s,s:i,s:6,s:6,s:i})
+ {errno => errno,
+ brdname => boardname
+ bid => bid,
+ title => title (Base64),
+ BM => board manager(s) (Base64),
+ nuser => #users in this board,
+ }
+
+board.getNarticle
+get # articles in the board
+input (i)
+ (bid)
+output ({s:i, s:s, s:i})
+ {errno => errno,
+ narticle => #articles in the board}
+
+article.list
+get article list of bid
+input (ii)
+ (bid, from # article)
+output: ({s:i,s:s,s:i,s:s,s:s,s:6}...)
+ [{articleid => article id,
+ filename => file name,
+ recommend => recommend,
+ owner => owner's userid,
+ date => date (format: mm/dd),
+ title => article title (Base64)},
+ {...},...]
+
+article.readfn
+read article by bid and filename
+input (is)
+ (bid, filename)
+output ({s:6})
+ {content => content}
+