This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
stardust /
| name | age | message | |
|---|---|---|---|
| |
.shipit | Sat Aug 15 21:33:46 -0700 2009 | |
| |
Changes | Fri Sep 11 01:22:11 -0700 2009 | |
| |
MANIFEST | Mon Sep 07 20:17:20 -0700 2009 | |
| |
MANIFEST.SKIP | Mon Aug 31 04:12:16 -0700 2009 | |
| |
Makefile.PL | Tue Sep 08 13:04:49 -0700 2009 | |
| |
README | Sun Sep 06 15:31:22 -0700 2009 | |
| |
bin/ | Thu Oct 15 17:09:20 -0700 2009 | |
| |
doc/ | Thu Sep 10 00:53:03 -0700 2009 | |
| |
lib/ | Fri Sep 11 01:22:11 -0700 2009 | |
| |
share/ | Wed Sep 09 19:32:26 -0700 2009 | |
| |
t/ | Thu Aug 27 17:42:19 -0700 2009 |
README
+.
.. . +%
. . . . .. .
. +..- +++.m .
. . .-%m.-++*%.%+.. .
. - -+. .####m -.
WARNING: alpha quality software ;) .+. . ---#%-m+.. +m .
.- . +mm+-.m+.m .
+ - -. ...-%-..-. .
- .- *-. .. . .-..-.--*.mm
. .-.-.-.-- ...-.- -%..m*#.- .
. .## m-+ -+%*#.-.%#.#%*#+---.
. - . - .+-. .- -+-+.-+-.#####.-+-m#%-++-.mm-# -.
- -- .. . - ---+.+++-.*++%-#++-.###+#+#*m###*#.+ .- + -
. -+-. +-+.+m%*-*+#+m-*#*#%###*####%.##*+#m#*###%#%m%-.-. .
. ...... +m .#.m*-m*m###########*#######%#m+%*+m*%####%-+. .
.m*#%+++++ m#++##########################m+##mm####+m+ .-
..##m+-m-%m +-###*######################m#+*m++ m#m.+-+-
.+-*+--..#..m-#############################m+%.m **- - -.-
- .-+-+-.m#################################*##*#*-.*-. % -
.-+# %#m##############m###########*######*#####.m.. .
. m#m################*####################%##mm%++
. -..-#*################################*###+##+.-.- . .
....+- +-#########################m%#%.-%*#+%####-m+-. j
- #m.-%m#########################%%%++*%m%#####%#+#-- .
..*#*-+#####################*##%###m%#m*########*%-.#.-.
- +m#*#m#########*###########m%#m#%+-#+*m#########%*#.-.
.+##.%#%######################*#*##-#############*%.-++
.. %m##############m#####%##*########%#*#######+.+.
.--.#m*#######*###*################%##m######%*. .
-.##m+%+%#*##################+####+#######*m#+.
. -*#m%m**%#################################..m . .
-m..#######################%####*#%##*#*+%+-
.-.m-m %-#########m#*########+##mm#####m-
. .- -.-%m%+*-######*##m*+*######%%##++.
. m +m.%+++%+%######*#+mm##++-%%++..
..+.-+..m.m+.-..+.-m.m.+.m%.--
.+..%- . .++--. . .
.-..
.____________ _________ _____
.__ ___/_ /______ _____________ /___ __________ /_
_____ \_ __/ __ `/_ ___/ __ /_ / / /_ ___/ __/ COMET
. ____/ // /_ / /_/ /_ / / /_/ / / /_/ /_(__ )/ /_ Server
./____/ \__/ \__,_/ /_/ \__,_/ \__,_/ /____/ \__/
CONCEPTS
Channel - channels are the medium through which messages travel.
The moment you try to use one, it will be autovivified for you.
Message - messages are arbitrary JSON objects.
You post messages to a channel and if any clients are
long-polling on the stream for that channel,
those messages will be broadcasted to them.
API
GET /
General info about the server returned as a JSON-encoded object.
GET /channel
A list of all the channel names that have been used returned as a
JSON-encoded array of strings.
GET /channel/:names
A list of the specified channels returned as a
JSON-encoded array of objects.
(:names is "+" separated string of channel names)
POST /channel/:names
Post a message to the specified channels.
Parameters:
m a JSON-encoded object. If you want to send more than one
message in a POST, the m parameter may be repeated.
GET /channel/:names/stream/:client_id
Long poll on this URL to subscribe to the specified channels.
When messages become available, they will be returned as a
JSON-ecoded array of objects.







