author | Dan |
Sat, 26 Sep 2009 15:26:14 -0400 | |
changeset 1124 | 1e956881d362 |
parent 832 | 7152ca0a0ce9 |
child 1227 | bdac73ed481e |
permissions | -rw-r--r-- |
0 | 1 |
<!-- Stuff related to toolbars and clickable buttons. |
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
parents:
0
diff
changeset
|
2 |
The plan was to use this on the toolbar for most pages. Never made it into the release, |
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
parents:
0
diff
changeset
|
3 |
but still provided as an otherwise-unused component for plugins to make use of. |
0 | 4 |
--> |
5 |
||
6 |
<!-- VAR toolbar_start --> |
|
7 |
<div class="toolbar"> |
|
8 |
<ul> |
|
9 |
<!-- ENDVAR toolbar_start --> |
|
10 |
<!-- VAR toolbar_button --> |
|
11 |
<li> |
|
12 |
<a title="{TITLE}" {FLAGS}> |
|
832
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
13 |
<!-- IFSET SPRITE --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
14 |
{SPRITE} |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
15 |
<!-- BEGINELSE SPRITE --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
16 |
<!-- IFSET IMAGE --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
17 |
<!-- BEGINNOT no_image --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
18 |
<img alt="{TITLE}" src="{IMAGE}" /> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
19 |
<!-- END no_image --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
20 |
<!-- END IMAGE --> |
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
21 |
<!-- END SPRITE --> |
0 | 22 |
<!-- BEGIN show_title --> |
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
parents:
0
diff
changeset
|
23 |
<!-- BEGIN no_image --> |
832
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
24 |
<span class="noimage">{TITLE}</span> |
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
parents:
0
diff
changeset
|
25 |
<!-- BEGINELSE no_image --> |
832
7152ca0a0ce9
Major redesign of rendering pipeline that separates pages saved with MCE from pages saved with the plaintext editor (full description in long commit message)
Dan
parents:
413
diff
changeset
|
26 |
<span>{TITLE}</span> |
413
6607cd646d6d
Added autosave functionality and resurrected the old toolbar code that was added about a year ago but never uesd.
Dan
parents:
0
diff
changeset
|
27 |
<!-- END no_image --> |
0 | 28 |
<!-- END show_title --> |
29 |
</a> |
|
30 |
</li> |
|
31 |
<!-- ENDVAR toolbar_button --> |
|
32 |
<!-- VAR toolbar_label --> |
|
33 |
<li> |
|
34 |
<span>{TITLE}</span> |
|
35 |
</li> |
|
36 |
<!-- ENDVAR toolbar_label --> |
|
37 |
<!-- VAR toolbar_end --> |
|
38 |
</ul> |
|
39 |
</div> |
|
40 |
<!-- ENDVAR toolbar_end --> |
|
41 |
||
42 |
<!-- VAR toolbar_vert_start --> |
|
43 |
<div class="toolbar_vert"> |
|
44 |
<ul> |
|
45 |
<!-- ENDVAR toolbar_vert_start --> |
|
46 |
<!-- VAR toolbar_vert_button --> |
|
47 |
<li> |
|
48 |
<a title="{TITLE}" {FLAGS}> |
|
49 |
<img alt="{TITLE}" src="{IMAGE}" /> |
|
50 |
<span>{TITLE}</span> |
|
51 |
</a> |
|
52 |
</li> |
|
53 |
<!-- ENDVAR toolbar_vert_button --> |
|
54 |
<!-- VAR toolbar_vert_label --> |
|
55 |
<li> |
|
56 |
<span>{TITLE}</span> |
|
57 |
</li> |
|
58 |
<!-- ENDVAR toolbar_vert_label --> |
|
59 |
<!-- VAR toolbar_vert_end --> |
|
60 |
</ul> |
|
61 |
</div> |
|
62 |
<!-- ENDVAR toolbar_vert_end --> |