Subversion Repositories Applications.papyrus

Compare Revisions

No changes between revisions

Ignore whitespace Rev 2149 → Rev 2150

/trunk/api/js/dojo1.0/dojox/widget/Loader/honey.php
New file
0,0 → 1,27
<?
/* honey.php - sample fake delay script to push data
- should use ob_flush() to send chunks rather than
just take a long time ...
*/
 
session_start();
 
$char = " ";
$fakeDelay = (empty($_GET['delay'])) ? 1 : $_GET['delay'];
$dataSize = (empty($_GET['size'])) ? 2*1024 : $_GET['size'];
if (empty($_SESSION['counter'])) $_SESSION['counter'] = 1;
$dataSent = 0;
$blockSize = 1024;
 
if ($fakeDelay) { sleep($fakeDelay); }
 
print "view num: ".$_SESSION['counter']++;
while ($dataSent<=$dataSize) {
for ($i=0; $i<$blockSize/4; $i++) {
print $char;
} print "<br />";
$dataSent += $blockSize;
sleep(1);
}
 
?>
/trunk/api/js/dojo1.0/dojox/widget/Loader/icons/loading.gif
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/api/js/dojo1.0/dojox/widget/Loader/icons/loading.gif
New file
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/trunk/api/js/dojo1.0/dojox/widget/Loader/Loader.css
New file
0,0 → 1,27
.dojoxLoaderPointer {
position:absolute;
z-index:999;
}
 
.dojoxLoader {
float:right;
position:fixed;
height:25px;
width:100px;
top:0;
right:0;
padding:3px;
border:1px solid #ccc;
background:#fff;
min-width:42px;
}
 
.dojoxLoaderIcon {
height:22px; width:22px;
vertical-align:middle;
}
 
.dojoxLoaderMessage {
font:8pt Arial,san-serif;
color:#666;
}
/trunk/api/js/dojo1.0/dojox/widget/Loader/README
New file
0,0 → 1,39
-------------------------------------------------------------------------------
dojox.widget.Loader
-------------------------------------------------------------------------------
Version 0.1
Release date: 07/15/2007
-------------------------------------------------------------------------------
Project state:
prototype / expermental
-------------------------------------------------------------------------------
Credits: Pete Higgins (phiggins@gmail.com)
-------------------------------------------------------------------------------
Description:
a class to indicatie some xhr request
is going on via topics, with optional
eye-candy indicators either offset
from mouse pointer, or in a fixed position
node.
 
-------------------------------------------------------------------------------
Dependencies:
widget: none.
test page: to enhance visual effect, a .php
file is used to slowly pass data to an xhr
request. You will need a php-enabled
webserver to view /dojox/tests/test_Loader.html
 
-------------------------------------------------------------------------------
Documentation
 
-------------------------------------------------------------------------------
Installation instructions
 
simply dojo.require("dojox.widget.Loader") and
attach to a div:
<div dojoType="dojox.widget.Loader"></div>
 
Configuration options can be found in the API tool.