show_move_node_error

NAML documentation   Watch a video
Error Found
An error was found in the NAML code of this application – View Details | Go to NAML Editor
tag 'mailing_list_etiquette' is not an allowed here, only these are allowed: [bottom, page_name, focus]
  in new_post(custom_tweak:reply:2) - <n.new_post>
  in (custom_tweak:reply:1) - <override_macro name="reply" requires="servlet">
   Usages of this macro
... in move_node.naml
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<macro name="show_move_node_error">
    <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.is_submitted_form
Macro
Requires: servlet
>
        <then>
            <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.has_exception
Binary
Namespace: BasicNamespace
Parameters: for
 for="save-block">
                <then>
                    <n.format_error
Macro
Parameters: message, prompt
.handle_exception
Binary
Namespace: NabbleNamespace
Parameters: for, do
. for="save-block">
                        <n.exception
Binary
Namespace: ExceptionNamespace
Parameters: name, do
. name="banned">
                            <t>Sorry, but the administrators have banned you.</t>
                            <t>You can't move the post to anywhere.</t>
                        </n.exception.>
                        <n.exception
Binary
Namespace: ExceptionNamespace
Parameters: name, do
. name="same_node_loop">
                            <t>The new parent cannot be the post itself.</t>
                        </n.exception.>
                        <n.exception
Binary
Namespace: ExceptionNamespace
Parameters: name, do
. name="invalid_permalink">
                            <t>Please provide a valid permalink.</t>
                        </n.exception.>
                        <n.exception
Binary
Namespace: ExceptionNamespace
Parameters: name, do
. name="no_anonymous">
                            <t>You cannot move this post to that destination because the new parent doesn't allow anonymous users.</t>
                        </n.exception.>
                    </n.format_error.handle_exception.>
                </then>
            </n.if.has_exception>
        </then>
    </n.if.is_submitted_form>
</macro>