resource-info-procs.tcl

Classes for creating, manageing and rendering trees

Location:
packages/xowiki/tcl/resource-info-procs.tcl
Created:
2009-05-29
Author:
Gustaf Neumann
CVS Identification:
$Id: resource-info-procs.tcl,v 1.1.2.3 2020/08/06 20:05:30 gustafn Exp $

Procedures in this file

Detailed information

xowiki::bootstrap_treeview::resource_info (private)

 xowiki::bootstrap_treeview::resource_info [ -version version ]

Get information about available version(s) of bootstrap-treeview either from the local filesystem, or from CDN.

Switches:
-version
(defaults to "1.2.0") (optional)

Partial Call Graph (max 5 caller/called nodes):
%3 packages/xowiki/tcl/resource-init.tcl packages/xowiki/ tcl/resource-init.tcl xowiki::bootstrap_treeview::resource_info xowiki::bootstrap_treeview::resource_info packages/xowiki/tcl/resource-init.tcl->xowiki::bootstrap_treeview::resource_info packages/xowiki/www/sitewide-admin/download.tcl packages/xowiki/ www/sitewide-admin/download.tcl packages/xowiki/www/sitewide-admin/download.tcl->xowiki::bootstrap_treeview::resource_info packages/xowiki/www/sitewide-admin/index.tcl packages/xowiki/ www/sitewide-admin/index.tcl packages/xowiki/www/sitewide-admin/index.tcl->xowiki::bootstrap_treeview::resource_info acs_package_root_dir acs_package_root_dir (public) xowiki::bootstrap_treeview::resource_info->acs_package_root_dir

Testcases:
No testcase defined.
[ hide source ] | [ make this the default ]

Content File Source

::xo::library doc {
  Classes for creating, manageing and rendering trees

  @creation-date 2009-05-29
  @author Gustaf Neumann
  @cvs-id $Id: resource-info-procs.tcl,v 1.1.2.3 2020/08/06 20:05:30 gustafn Exp $
}

namespace eval ::xowiki::bootstrap_treeview {

  d_proc -private ::xowiki::bootstrap_treeview::resource_info {
    {-version "1.2.0"}
  } {

    Get information about available version(s) of bootstrap-treeview either
    from the local filesystem, or from CDN.

  } {
    #
    # Setup variables for access via CDN vs. local resources.
    #
    set resourceDir [acs_package_root_dir xowiki/www/resources/bootstrap-treeview]
    set resourceUrl /resources/xowiki/bootstrap-treeview
    set cdn         //cdnjs.cloudflare.com/ajax/libs/bootstrap-treeview

    if {[file exists $resourceDir/$version/bootstrap-treeview.min.css]} {
      set prefix  $resourceUrl/$version
      set cdnHost ""
    } else {
      set prefix $cdn/$version
      set cdnHost cdnjs.cloudflare.com
    }

    #
    # Return the dict with at least the required fields
    #
    lappend result \
        resourceName "bootstrap-treeview" \
        resourceDir $resourceDir \
        cdn $cdn \
        cdnHost $cdnHost \
        prefix $prefix \
        cssFiles {bootstrap-treeview.min.css} \
        jsFiles  {bootstrap-treeview.min.js} \
        extraFiles {} \
        urnMap {
          urn:ad:css:bootstrap3-treeview bootstrap-treeview.min.css
          urn:ad:js:bootstrap3-treeview  bootstrap-treeview.min.js
        }

    if {$cdnHost ne ""} {
      lappend result csp_lists [subst {
        urn:ad:css:bootstrap3-treeview {
          style-src $cdnHost
        }
        urn:ad:js:bootstrap3-treeview {
          script-src $cdnHost
        }
      }]
    }
    return $result
  }
}


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