find_usages_page

   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 "find_usages_page".
... in macro_viewer.naml
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
<macro name="find_usages_page" requires="servlet">
    <n.if.not.is_null.get_parameter name="js">
        <then>
            <n.if.command_exists id="[n.current_command_id/]">
                <then>
                    <n.macro_source.
                        id="[n.current_command_id/]"
                        base="[n.current_base_classes/]"
                        breadcrumbs="[n.current_breadcrumbs/]"
                    >
                        <n.find_usages_html/>
                    </n.macro_source.>
                </then>
                <else>
                    <n.invalid_command_html/>
                </else>
            </n.if.command_exists>
        </then>
    </n.if.not.is_null.get_parameter>
</macro>