What's new? | Help | Directory | Sign in
Google
  
  
  
    
Show all Featured Wiki Pages:
PI_COMET PI_DEBUGGER
Blogs:

Project Index:


pi.debugger

About

pi.debugger is a cross browser web development tool allows you to examine web page's structural and debug with console.

Try now: http://kodfabrik.com/app/pi.debugger

Tested at: MSIE6,MSIE7,OPERA 9.2, WEBKIT/525.1, FIREFOX 2

Releases

General Usage

Just Import the debugger.js;

<script type="text/javascript" src="http://pi-js.googlecode.com/files/debugger.js"></script>

You can get more technical information about it in wiki page

Documentation

Development

If you find any problems in the code or documentation, please fill out an issue here and feel free to send patches.

Authors:


pi.comet

About

pi.comet is a simple javascript class to create cross browser Comet(Reverse Ajax) applications easily.It provides realtime data transfers between client and server.You can use pi.comet with any serverside language, but I recommend CherryPy, TurboGears, Django and PHP.

News

Releases

Examples

Take a look at the examples to see how it works, you can download sources.

General Usage

var request = new pi.comet();
request.environment.setUrl("push.php");
request.event.push = function(RESPONSE){ 
          alert(RESPONSE);
}; 
request.send();

Documentation

Development

If you find any problems in the code or documentation, please fill out an issue here and feel free to send patches.

Authors: