| 
14
15
16
17
18
19
20
21
22
2324
25
26
27
2829
30
31
32
33
3435
3637
38
39 | 
#
###############################################################################
#
# TODO: Set this to your list of API keys.
#
# set ::pkgr_api_keys [list 0000000000000000000000000000000000000000]
namespace eval ::Eagle::Tools::Common {#  variable verboseGetUrl true
}
namespace eval ::PackageRepository {
  #  # TODO: When this setting is non-zero, only packages matching the# current#       language will be handled via its custom [package unknown] handler.#       This is almost always what is actually wanted, hence non-zero is#       the default value.  This setting can be set to zero in order to#       help with testing.  # variable strictUnknownLanguage false
  variable verboseUnknownResult true
  variable verboseUriDownload true
} | 
|
|
>
>
>
>
>
>
|
>
>
>
>
|
|
|
|
|
|
>
>
>
>
>
|
|
 | 
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
 | 
#
###############################################################################
#
# TODO: Set this to your list of API keys.
#
# set ::pkgr_api_keys [list 0000000000000000000000000000000000000000]
#
# NOTE: These settings apply to the "common.tcl" script.
#
namespace eval ::Eagle::Tools::Common {
  #
  # NOTE: This setting enables diagnostic output from the native Tcl
  #       URI downloader.
  #
  variable verboseGetUrl true; # DEFAULT: false
}
#
# NOTE: These settings apply to the "pkgr.eagle" script (directly)
#       and the "pkgu.eagle" script (indirectly).
#
namespace eval ::PackageRepository {
  #
  # TODO: When this setting is non-zero, only packages matching the
  #       current language will be handled via its custom [package
  #       unknown] handler.  This is almost always what is actually
  #       wanted, hence non-zero is the default value.  This setting
  #       can be set to zero in order to help with testing.
  #
  # variable strictUnknownLanguage false; # DEFAULT: true
  #
  # NOTE: These settings enables detailed diagnostic output from the
  #       [package unknown] handler -AND- the URI downloader used by
  #       native Tcl.
  #
  variable verboseUnknownResult true; # DEFAULT: false
  variable verboseUriDownload true; # DEFAULT: false
}
 |