proc-view.tcl

Display information about one procedure.

Location:
/packages/acs-api-browser/www/proc-view.tcl
CVS ID:
$Id: proc-view.tcl,v 1.16.2.7 2022/11/08 14:25:27 gustafn Exp $

Related Files

[ hide source ] | [ make this the default ]

File Contents

ad_page_contract {
    Display information about one procedure.

    @cvs-id $Id: proc-view.tcl,v 1.16.2.7 2022/11/08 14:25:27 gustafn Exp $
} {
    proc:nohtml,trim
    source_p:boolean,optional,trim
    {version_id:naturalnum,optional ""}
} -properties {
    title:onevalue
    context:onevalue
    source_p:onevalue
    default_source_p:onevalue
    return_url:onevalue
    documentation:onevalue
    error_msg:onevalue
}

set title $proc

set context [list]
if { $version_id ne "" } {
    db_0or1row package_info_from_package_id {
        select pretty_name, package_key, version_name
        from apm_package_version_info
        where version_id = :version_id
    }
    if {[info exists package_id]} {
        lappend context [list [export_vars -base package-view {version_id {kind procs}}] \
                             "$pretty_name $version_name"]
    }
}
lappend context [list $proc]

set default_source_p [ad_get_client_property -default 0 acs-api-browser api_doc_source_p]
set return_url [export_vars -base [ad_conn url] {proc version_id}]
set error_msg ""

if { ![info exists source_p] || $source_p eq ""} {
    set source_p $default_source_p
    if {$source_p eq ""} {set source_p 0}
}

#
# The check for "Class " is based on a regexp, since this is more
# robust than e.g. llength and friends in case of hacking attacks,
# which can lead to errors with invalid list structures.
#
# The following check is probably here not at the right place, since
# the proc value should be directly usable here. So "Class " should
# probably not be part of the link.
#
if {[regexp {^Class (.*)$} $proc . reminder]} {
    set proc $reminder
}

if {[string match ::* $proc]} {
    set absolute_proc $proc
    set relative_proc [string range $proc 2 end]
} else {
    set absolute_proc ::$proc
    set relative_proc $proc
}

set documented_call [nsv_exists api_proc_doc $relative_proc]
if {$documented_call} {
    set proc_index $relative_proc
} else {
    set documented_call [nsv_exists api_proc_doc $absolute_proc]
    set proc_index $absolute_proc
}

if { !$documented_call } {
    if {[info procs $absolute_proc] eq $absolute_proc} {

        template::head::add_style -style {pre.code {
            background: #fefefa;
            border-color: #aaaaaa;
            border-style: solid;
            border-width: 1px;
        }}
        set error_msg [subst {
            <p>This procedure is defined in the server but not
            documented via ad_proc or proc_doc and may be intended as
            a private interface.</p><p>The procedure is defined as:
<pre class='code'>
proc $proc {[info args $proc]} {
    [ns_quotehtml [info body $proc]]
}
</pre></p>
        }]
    } elseif {[namespace which $absolute_proc] eq $absolute_proc} {

        #
        # In case the cmd is an object, redirect to the object browser
        #
        if {[namespace which ::nsf::is] ne "" && [nsf::is object $absolute_proc]} {
            ad_returnredirect [export_vars -base /xotcl/show-object {{object $absolute_proc}}]
            ad_script_abort
        }

        #
        # Try NaviServer API documentation
        #
        set url [apidoc::get_doc_url \
             -cmd $relative_proc \
             -index $::apidoc::ns_api_html_index \
             -root $::apidoc::ns_api_root \
             -host $::apidoc::ns_api_host]

        if {$url eq ""} {

            #
            # Try Tcl command documentation
            #

            regexp {^(.*)/[^/]+} $::apidoc::tcl_api_html_index _ root
            append root /

            set url [apidoc::get_doc_url \
                 -cmd $proc \
                 -index $::apidoc::tcl_api_html_index \
                 -root $root \
                 -host $root]
        }

        if {$url ne ""} {
            #ns_log notice "api-doc/www/proc-view got URL <$url>"
            ad_returnredirect -allow_complete_url $url
            ad_script_abort
        }

        set error_msg [subst {

            <p>The command <b>$proc</b> is an available command on
            the server and might be found in the <a
            href="$::apidoc::tcl_api_html_index">Tcl</a>
            or <a href="[lindex $::apidoc::ns_api_html_index 0]">[ns_info name]</a>
            documentation or in documentation for a loadable module.
            </p>
        }]

    } else {
        set error_msg "<p>The procedure <b>$proc</b> is not defined in the server.</p>"
    }
} else {

    if { $source_p } {
        set documentation [api_proc_documentation -script -xql -source $proc_index]
    } else {
        set documentation [api_proc_documentation -script $proc_index]
    }
}
set toggle_source_p [expr {!$source_p}]
set procViewToggleURL [export_vars -base proc-view -no_empty {proc {source_p $toggle_source_p} version_id}]
set setDefaultURL     [export_vars -base set-default {source_p return_url}]

#
# Local variables:
#    mode: tcl
#    tcl-indent-level: 4
#    indent-tabs-mode: nil
# End: