~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/php/phpBB3/styles/prosilver/template/posting_layout.html

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- INCLUDE overall_header.html -->
2
 
 
3
 
<!-- IF TOPIC_TITLE -->
4
 
        <h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
5
 
<!-- ELSE -->
6
 
        <h2><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></h2>
7
 
 <!-- ENDIF -->
8
 
 
9
 
<!-- IF S_FORUM_RULES -->
10
 
        <div class="rules">
11
 
                <div class="inner"><span class="corners-top"><span></span></span>
12
 
                
13
 
                <!-- IF U_FORUM_RULES -->
14
 
                        <a href="{U_FORUM_RULES}">{L_FORUM_RULES}</a>
15
 
                <!-- ELSE -->
16
 
                        <strong>{L_FORUM_RULES}</strong><br />
17
 
                        {FORUM_RULES}
18
 
                <!-- ENDIF -->
19
 
                
20
 
                <span class="corners-bottom"><span></span></span></div>
21
 
        </div>
22
 
<!-- ENDIF -->
23
 
 
24
 
<form id="postform" method="post" action="{S_POST_ACTION}"{S_FORM_ENCTYPE}>
25
 
 
26
 
<!-- IF S_DRAFT_LOADED -->
27
 
        <div class="panel">
28
 
                <div class="inner"><span class="corners-top"><span></span></span>
29
 
                
30
 
                <h3>{L_INFORMATION}</h3>
31
 
                <p>{L_DRAFT_LOADED}</p>
32
 
                
33
 
                <span class="corners-bottom"><span></span></span></div>
34
 
        </div>
35
 
<!-- ENDIF -->
36
 
 
37
 
<!-- IF S_SHOW_DRAFTS --><!-- INCLUDE drafts.html --><!-- ENDIF -->
38
 
 
39
 
<!-- IF S_POST_REVIEW --><!-- INCLUDE posting_review.html --><!-- ENDIF -->
40
 
 
41
 
<!-- IF S_UNGLOBALISE -->
42
 
        <div class="panel bg3">
43
 
                <div class="inner"><span class="corners-top"><span></span></span>
44
 
                <fieldset class="fields1">
45
 
                        <h2>{L_SELECT_DESTINATION_FORUM}</h2>
46
 
                        <p>{L_UNGLOBALISE_EXPLAIN}</p>
47
 
                        <dl>
48
 
                                <dt><label for="to_forum_id">{L_MOVE}:</label></dt>
49
 
                                <dd><select id="to_forum_id" name="to_forum_id">{S_FORUM_SELECT}</select></dd>
50
 
                        </dl>
51
 
                        
52
 
                        <dl>
53
 
                                <dt>&nbsp;</dt>
54
 
                                <dd><input class="button1" type="submit" name="post" value="{L_CONFIRM}" /> <input class="button2" type="submit" name="cancel_unglobalise" value="{L_CANCEL}" /></dd>
55
 
                        </dl>
56
 
                </fieldset>
57
 
 
58
 
                <span class="corners-bottom"><span></span></span></div>
59
 
        </div>
60
 
<!-- ENDIF -->
61
 
 
62
 
<!-- IF S_DISPLAY_PREVIEW --><!-- INCLUDE posting_preview.html --><!-- ENDIF -->
63
 
 
64
 
<div class="panel" id="postingbox">
65
 
        <div class="inner"><span class="corners-top"><span></span></span>
66
 
        
67
 
        <h3>{L_POST_A}</h3>
68
 
 
69
 
        <!-- DEFINE $EXTRA_POSTING_OPTIONS = 1 -->
70
 
        <!-- INCLUDE posting_editor.html -->
71
 
        {S_FORM_TOKEN}
72
 
        <span class="corners-bottom"><span></span></span></div>
73
 
</div>
74
 
 
75
 
<!-- IF S_SHOW_ATTACH_BOX --><!-- INCLUDE posting_attach_body.html --><!-- ENDIF -->
76
 
 
77
 
<!-- IF S_SHOW_POLL_BOX or S_POLL_DELETE --><!-- INCLUDE posting_poll_body.html --><!-- ENDIF -->
78
 
 
79
 
<!-- IF S_DISPLAY_REVIEW --><!-- INCLUDE posting_topic_review.html --><!-- ENDIF -->
80
 
 
81
 
</form>
82
 
<!-- IF not S_PRIVMSGS -->
83
 
<script type="text/javascript">
84
 
// <![CDATA[
85
 
        subPanels(show_panel);
86
 
// ]]>
87
 
</script>
88
 
<!-- ENDIF -->
89
 
 
90
 
<!-- INCLUDE overall_footer.html -->