in_reply_to

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "in_reply_to".
... in in_reply_to.naml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<override_macro name="in_reply_to">
    <div class="title-row light-border-color shaded-bg-color" style="margin-top:2.5em"><t>In Reply To</t></div>
    <div style="margin-left:1.2em;padding-top:1em">
        <n.page_node.>
            <n.put_in_head.>
                <style type="text/css">
                    div.in-reply-to {
                        margin-bottom:1em;
                        padding-bottom:.4em;
                        border-bottom-width:1px;
                        border-bottom-style:dotted;
                    }
                </style>
            </n.put_in_head.>
            <div class="medium-border-color in-reply-to">
    <n.set_var. name="value"><n.break_up.subject/></n.set_var.>
    <n.set_var. name="value1"><n.break_up.subject/></n.set_var.>
    <n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬n¬">
      <then>
         <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/icone_new.gif" />&nbsp;<n.jsm_limpamark_new texto="[n.var name='value1'/]" /></n.set_var.>
      </then>
   </n.if.contains_substring>
   <n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬¢¬">
      <then>
          <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/success.png" />&nbsp;<n.jsm_limpamark_chkfull texto="[n.var name='value1'/]" /></n.set_var.>
      </then>
   </n.if.contains_substring>    
   <n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬.¬">
      <then>
          <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconmark.png" />&nbsp;<n.jsm_limpamark_chknormal texto="[n.var name='value1'/]" /></n.set_var.>
      </then>
   </n.if.contains_substring>
<n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬h¬">
              <then>
                   <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconehelp.png" />&nbsp;<n.jsm_limpamark_chkhelp texto="[n.var name='value'/]" /></n.set_var.>
              </then>
              </n.if.contains_substring>
                <n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬e¬">
              <then>
                   <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconexclama.png" />&nbsp;<n.jsm_limpamark_chkexclama texto="[n.var name='value'/]" /></n.set_var.>
              </then>
              </n.if.contains_substring>
               <n.if.contains_substring string="[n.var name='value1'/]" substring=" ¬a¬">
              <then>
                   <n.set_var. name="value"><img src="http://jsmastronomy.245.s1.nabble.com/file/n588/iconadmin.png" />&nbsp;<n.jsm_limpamark_chkadm texto="[n.var name='value'/]" /></n.set_var.>
              </then>
              </n.if.contains_substring>
        <b><n.var name='value'/></b>
                <div class="weak-color" style="padding:.2em 0">
                    <span class="weak-color"><n.when_created.long_format/></span>
                    &mdash;
                    <t>by
                        <t.author>
                            <n.owner.avatar/>
                            <span class="nowrap"><n.owner.user_link/></span>
                        </t.author>
                    </t>
                </div>
            </div>
            <n.message_with_signature/>
        </n.page_node.>
    </div>
</override_macro>
Overrides default macro
... in reply.naml
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<macro name="in_reply_to">
    <div class="title-row light-border-color shaded-bg-color" style="margin-top:2.5em"><t>In Reply To</t></div>
    <div style="margin-left:1.2em;padding-top:1em">
        <n.page_node.>
            <n.put_in_head.>
                <style type="text/css">
                    div.in-reply-to {
                        margin-bottom:1em;
                        padding-bottom:.4em;
                        border-bottom-width:1px;
                        border-bottom-style:dotted;
                    }
                </style>
            </n.put_in_head.>
            <div class="medium-border-color in-reply-to">
                <b><n.break_up.subject/></b>
                <div class="weak-color" style="padding:.2em 0">
                    <span class="weak-color"><n.when_created.long_format/></span>
                    &mdash;
                    <t>by
                        <t.author>
                            <n.owner.avatar/>
                            <span class="nowrap"><n.owner.user_link/></span>
                        </t.author>
                    </t>
                </div>
            </div>
            <n.message_with_signature/>
        </n.page_node.>
    </div>
</macro>