2150 |
mathias |
1 |
-------------------------------------------------------------------------------
|
|
|
2 |
dojox.presentation
|
|
|
3 |
-------------------------------------------------------------------------------
|
|
|
4 |
Version 0.9
|
|
|
5 |
Release date: 10/31/2007
|
|
|
6 |
-------------------------------------------------------------------------------
|
|
|
7 |
Project state:
|
|
|
8 |
experimental
|
|
|
9 |
-------------------------------------------------------------------------------
|
|
|
10 |
Credits
|
|
|
11 |
pete higgins (dante)
|
|
|
12 |
-------------------------------------------------------------------------------
|
|
|
13 |
|
|
|
14 |
Project description
|
|
|
15 |
|
|
|
16 |
This is the presentation base class. It provides a mechanism for various
|
|
|
17 |
display-oriented tasks. It includes a powerpoint-esque engine [prototype].
|
|
|
18 |
The SlideShow aspect of this project has been deprecated and lives now
|
|
|
19 |
in dojox.image project.
|
|
|
20 |
|
|
|
21 |
-------------------------------------------------------------------------------
|
|
|
22 |
|
|
|
23 |
Dependencies:
|
|
|
24 |
|
|
|
25 |
dojox.presentation requires both Dojo Base, Dojo FX Core, and Dijit system(s).
|
|
|
26 |
|
|
|
27 |
-------------------------------------------------------------------------------
|
|
|
28 |
|
|
|
29 |
Documentation
|
|
|
30 |
|
|
|
31 |
See the Dojo API tool (http://dojotoolkit.org/api)
|
|
|
32 |
|
|
|
33 |
-------------------------------------------------------------------------------
|
|
|
34 |
|
|
|
35 |
Installation instructions
|
|
|
36 |
|
|
|
37 |
This package is self-contained, but needs Dijit sytem.
|
|
|
38 |
|
|
|
39 |
Grab the following from the Dojo SVN Repository:
|
|
|
40 |
|
|
|
41 |
svn co http://svn.dojotoolkit.org/dojo/dojox/trunk/presentation*
|
|
|
42 |
svn co http://svn.dojotoolkit.org/dojo/dijit/*
|
|
|
43 |
|
|
|
44 |
into your:
|
|
|
45 |
/dojo root folder [checkout/release root]
|
|
|
46 |
|
|
|
47 |
and require in dependancies via dojo.require('dojox.presentation');
|
|
|
48 |
|
|
|
49 |
see /dojox/presentation/tests/test_presentation.html for example usage, but
|
|
|
50 |
basically the structure is this:
|
|
|
51 |
|
|
|
52 |
presentation />
|
|
|
53 |
Slide />
|
|
|
54 |
Slide />
|
|
|
55 |
Text Outside of Part is Static
|
|
|
56 |
Part />
|
|
|
57 |
Part />
|
|
|
58 |
Action forPart/>
|
|
|
59 |
Action forPart/>
|
|
|
60 |
Slide href="remote.html" />
|
|
|
61 |
Slide />
|
|
|
62 |
Part />
|
|
|
63 |
Action forPart/>
|
|
|
64 |
/presentation>
|
|
|
65 |
|
|
|
66 |
NOTE: project marked experimental, and API has a planned deprecation. To
|
|
|
67 |
participate in the formation of the new presentation class, visit
|
|
|
68 |
the dojotoolkit forums at:
|
|
|
69 |
|
|
|
70 |
http://dojotoolkit.org/forums
|
|
|
71 |
|
|
|
72 |
|