-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTAGS
2802 lines (2562 loc) · 82.7 KB
/
TAGS
1
2
3
4
5
6
7
8
9
10
11
12
13
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
init/profile.in,165
LMOD_ALLOW_ROOT_USE=7,262
export USER=14,457
export LMOD_sys=15,516
export MODULEPATH=23,819
export MANPATH=38,1333
my_shell=65,1843
init/sh.in,43
LMOD_ROOT=3,13
clearMT(19,255
ml(31,682
init/bash.in,387
*v*x*) __lmod_vx=10,259
*v*) __lmod_vx=11,289
*x*) __lmod_vx=12,319
esac;13,349
SUPPORT_KSH=25,680
export FPATH=28,857
module(80,2652
module(85,2758
LMOD_VERSION=117,3706
settarg 121,3802
ml(137,4282
clearMT(152,4626
clearLmod(157,4697
xSetTitleLmod(163,4796
set -$__lmod_vx;$__lmod_vx179,5237
unset __lmod_vx;180,5256
fi;181,5275
init/cmake.in,288
function(73,3533
else(89,4037
endif(91,4085
file(113,4618
endif(119,4809
endif(122,4913
list(136,5281
list(138,5349
endfunction(142,5458
endfunction(147,5611
foreach(160,5939
list(170,6271
else(172,6365
endif(174,6413
endfunction(178,6486
init/R.in,23
args <- paste(6,130
init/lisp.in,578
;; call-process on Emacs cannot write stderr to a separate buffer35,1322
;; so it must go to a file and then get pulled into the log buffer36,1400
;; Run any setenv, etc commands produced by Lmod55,2295
;; cmd-buffer should currently contain the pathname of file to run56,2354
;; Note: use eval-buffer instead of load-file to avoid stomping57,2431
;; and run it carefully. If an error is thrown, catch it and64,2839
;; propagate the fact upwards as a nil, but be sure to still65,2917
init/lmod_bash_completions,327
_module_avail(1,0
_module_dir(8,228
_module_spider(66,1923
_module_loaded_modules(70,2014
_module_savelist(74,2146
_module_disable(78,2241
_module_loaded_modules_negated(82,2335
_module_mcc(86,2484
_module_describe(90,2574
_module_not_yet_loaded(94,2669
_module_long_arg_list(98,2765
_module(118,3302
_ml(182,5038
init/fish.in,95
function module11,239
function module15,313
function ml20,401
function clearMT24,460
init/ksh_funcs/clearMT.in,17
clearMT(3,58
init/ksh_funcs/settarg.in,19
settarg 4,105
init/ksh_funcs/module.in,38
module(4,108
module(9,217
init/ksh_funcs/clearLmod.in,19
clearLmod(3,58
init/ksh_funcs/ml.in,12
ml 3,58
init/zsh/_ml,396
_ml(4,31
_ml_loaded_modules_negated(146,4450
_ml_loaded_modules(151,4611
_ml_available_modules(159,4786
_ml_spider_list(167,5009
_ml_unload(173,5107
_ml_restore(179,5183
_ml_mcc(185,5316
_ml_describe(191,5445
_ml_disable(197,5579
_ml_help(203,5712
_ml_swap(209,5792
_ml_show(221,6035
_ml_load(228,6146
_ml_use(235,6256
_ml_unuse(243,6432
_ml_whatis(249,6520
_ml_spider(255,6602
init/zsh/_module,440
_module(4,35
_module_command(23,1181
_module_loaded_modules(80,3029
_module_available_modules(86,3205
_module_spider_list(94,3431
_module_restore(99,3532
_module_disable(105,3669
_ml_mcc(111,3806
_ml_describe(117,3935
_module_help(124,4100
_module_load(131,4223
_module_spider(138,4344
_module_unload(145,4458
_module_swap(152,4580
_module_show(166,4873
_module_use(176,5049
_module_unuse(184,5229
_module_whatis(190,5321
init/cshrc.in,19
set MY_NAME=9,249
init/env_modules_python.py.in,68
from subprocess import PIPE,3,55
import os,4,90
def module(7,108
init/fish/module.fish,261
function __fish_lmod_commands5,51
function __fish_lmod_av26,543
function __fish_lmod_list30,616
function __fish_lmod_savelist39,823
function _get_commandline_list48,1041
function __fish_lmod_needs_command53,1146
function __fish_lmod_using_command64,1353
settarg/settarg_cmd.in.lua,77
function cmdDir(65,2551
function masterTbl(75,2679
function main(124,4069
settarg/Bash.lua,140
function Bash.expandVar(41,1816
function Bash.expandVar(expandVar41,1816
function Bash.unset(59,2245
function Bash.unset(unset59,2245
settarg/Csh.lua,136
function Csh.expandVar(44,1880
function Csh.expandVar(expandVar44,1880
function Csh.unset(52,2056
function Csh.unset(unset52,2056
settarg/ModifyPath.lua,29
function ModifyPath(38,1745
settarg/Version.lua,198
function M.tag(3,31
function M.tag(tag3,31
function M.git(4,68
function M.git(git4,68
function M.date(10,216
function M.date(date10,216
function M.name(11,271
function M.name(name11,271
settarg/TargValue.lua,174
function M.new(45,1819
function M.new(new45,1819
function M.value(61,2119
function M.value(value61,2119
function M.display(71,2372
function M.display(display71,2372
settarg/ProcessModuleTable.lua,70
function extractVersion(42,1872
function processModuleTable(51,2080
settarg/CmdLineOptions.lua,94
local function new(51,2054
function M.options(60,2161
function M.options(options60,2161
settarg/bash.settarg,126
export SETTARG_CMD=7,211
dbg(14,360
opt(18,387
mdbg(22,414
gopt(26,443
chk(30,472
targ(34,499
cdt(39,532
PATH=48,753
settarg/BuildTarget.lua,544
function M.default_MACH(69,2583
function M.default_MACH(default_MACH69,2583
function M.default_OS(73,2644
function M.default_OS(default_OS73,2644
function M.default_HOST(81,2834
function M.default_HOST(default_HOST81,2834
function M.default_BUILD_SCENARIO(110,3395
function M.default_BUILD_SCENARIO(default_BUILD_SCENARIO110,3395
local function string2Tbl(162,4950
function M.buildTbl(187,5705
function M.buildTbl(buildTbl187,5705
local function readDotFiles(244,7225
function M.exec(351,10433
function M.exec(exec351,10433
settarg/STT.lua,966
local function stt_version(55,2135
local function new(59,2181
function M.add2ExtraT(91,2968
function M.add2ExtraT(add2ExtraT91,2968
function M.getBuildScenario(97,3058
function M.getBuildScenario(getBuildScenario97,3058
function M.getBuildScenarioState(105,3229
function M.getBuildScenarioState(getBuildScenarioState105,3229
function M.setBuildScenarioState(109,3307
function M.setBuildScenarioState(setBuildScenarioState109,3307
function M.getEXTRA(114,3454
function M.getEXTRA(getEXTRA114,3454
function M.removeFromExtra(125,3678
function M.removeFromExtra(removeFromExtra125,3678
function M.purgeExtraT(135,3896
function M.purgeExtraT(purgeExtraT135,3896
function M.registerVars(139,3950
function M.registerVars(registerVars139,3950
function M.clearEnv(147,4080
function M.clearEnv(clearEnv147,4080
function M.stt(158,4319
function M.stt(stt158,4319
function M.serializeTbl(168,4481
function M.serializeTbl(serializeTbl168,4481
settarg/getUname.lua,27
function getUname(66,2448
settarg/utils.lua,111
function argsPack(50,2045
function findFileInTree(56,2224
function STError(74,2575
function getSTT(84,2786
settarg/Bare.lua,67
function Bare.expand(43,1821
function Bare.expand(expand43,1821
settarg/Output.lua,25
function Output(37,1689
settarg/BaseShell.lua,342
function M.name(56,2301
function M.name(name56,2301
function M.getMT(60,2351
function M.getMT(getMT60,2351
local function valid_shell(78,2722
function M.build(85,2879
function M.build(build85,2879
function M.expand(102,3285
function M.expand(expand102,3285
function M.expandSTT(112,3476
function M.expandSTT(expandSTT112,3476
configure.ac,84
function main(739,27146
function string.string777,27840
function main(790,28225
tools/ColumnTable.lua,848
local function sizeMe(66,2589
function M.new(84,3040
function M.new(new84,3040
function M._clearEmptyColumns2D(129,4166
function M._clearEmptyColumns2D(_clearEmptyColumns2D129,4166
function M._entry_width1(171,5123
function M._entry_width1(_entry_width1171,5123
function M._entry_width2(201,6018
function M._entry_width2(_entry_width2201,6018
function M._columnSum1(254,7695
function M._columnSum1(_columnSum1254,7695
function M._columnSum2(274,8356
function M._columnSum2(_columnSum2274,8356
function M._display1(315,9560
function M._display1(_display1315,9560
function M._display2(330,10058
function M._display2(_display2330,10058
function M._number_of_columns_rows(368,11073
function M._number_of_columns_rows(_number_of_columns_rows368,11073
function M.build_tbl(480,14657
function M.build_tbl(build_tbl480,14657
tools/Optiks_Option.lua,263
function M.optionNames(65,2309
function M.optionNames(optionNames65,2309
function M.bless(83,2750
function M.bless(bless83,2750
function M.setDefault(120,3792
function M.setDefault(setDefault120,3792
function M.new(135,4362
function M.new(new135,4362
tools/replaceStr.lua,121
local function replaceStrValue(30,1315
function(prev,(prev32,1394
local function replaceStr(42,1638
tools/Dbg.lua,1882
local function prtTbl(86,2545
local function rPrint(104,3057
local function argsPack(121,3662
local function changeIndentLevel(127,3847
local function new(132,3973
function M.dbg(153,4509
function M.dbg(dbg153,4509
function M.set_prefix(164,4862
function M.set_prefix(set_prefix164,4862
function M.activateDebug(175,5281
function M.activateDebug(activateDebug175,5281
function M.indentLevel(212,6530
function M.indentLevel(indentLevel212,6530
function M.active(218,6685
function M.active(active218,6685
function M.currentLevel(224,6831
function M.currentLevel(currentLevel224,6831
function M.deactivateWarning(230,6995
function M.deactivateWarning(deactivateWarning230,6995
function M.activateWarning(236,7157
function M.activateWarning(activateWarning236,7157
function M._quiet(242,7317
function M._quiet(_quiet242,7317
local function extractVPL(247,7448
local function startExtractVPL(252,7528
function M._start(260,7741
function M._start(_start260,7741
function M._zeroIndent(276,8088
function M._zeroIndent(_zeroIndent276,8088
function M._indent(282,8243
function M._indent(_indent282,8243
function M._fini(288,8401
function M._fini(_fini288,8401
function M._warning(310,9023
function M._warning(_warning310,9023
function M._error(321,9321
function M._error(_error321,9321
function M.errorExit(334,9613
function M.errorExit(errorExit334,9613
function M.warningCalled(341,9800
function M.warningCalled(warningCalled341,9800
function M._print(349,9986
function M._print(_print349,9986
function M._textA(384,10855
function M._textA(_textA384,10855
function M._printA(405,11303
function M._printA(_printA405,11303
function M._print2D(424,11702
function M._print2D(_print2D424,11702
function M.flush(441,12099
function M.flush(flush441,12099
function M._printT(445,12144
function M._printT(_printT445,12144
tools/json.lua,592
function json.encode 67,2804
function json.encode encode67,2804
function json.decode(123,4445
function json.decode(decode123,4445
function null(153,5519
function decode_scanArray(168,6247
function decode_scanComment(195,7365
function decode_scanConstant(208,8088
function decode_scanNumber(228,8955
function decode_scanObject(249,9883
function decode_scanString(303,12185
function decode_scanWhitespace(356,14612
function json_private.encodeString(381,15348
function json_private.encodeString(encodeString381,15348
function isArray(394,16028
function isEncodable(421,17305
tools/MF_TCL.lua,317
function MF_TCL.setenv(59,2444
function MF_TCL.setenv(setenv59,2444
function MF_TCL.prepend_path(68,2716
function MF_TCL.prepend_path(prepend_path68,2716
function MF_TCL.append_path(78,3000
function MF_TCL.append_path(append_path78,3000
function MF_TCL.header(82,3094
function MF_TCL.header(header82,3094
tools/lmod_system_execute.lua,38
function lmod_system_execute(42,1751
tools/inherits.lua,116
function inheritsFrom(38,1646
function new_class:create(49,2022
function new_class:create(create49,2022
tools/string_utils.lua,836
function string.escape(44,1901
function string.escape(escape44,1901
function string.split(59,2362
function string.split(split59,2362
local function getter(62,2467
local function splitter(66,2631
function string.trim(72,2755
function string.trim(trim72,2755
function string.caseIndependent(85,3133
function string.caseIndependent(caseIndependent85,3133
function string.multiEscaped(106,3800
function string.multiEscaped(multiEscaped106,3800
function string.cshEscaped(114,3983
function string.cshEscaped(cshEscaped114,3983
function string.doubleQuoteString(126,4402
function string.doubleQuoteString(doubleQuoteString126,4402
function string.atSymbolEscaped(139,4755
function string.atSymbolEscaped(atSymbolEscaped139,4755
function string.fillWords(151,5172
function string.fillWords(fillWords151,5172
tools/Optiks.lua,1385
local function argsPack(33,1446
function Optiks_Error(42,1776
function Optiks_Exit(52,1979
local function Prt(81,2667
local function PrtEnd(85,2717
function M.new(92,2908
function M.new(new92,2908
function M.add_option(150,4281
function M.add_option(add_option150,4281
function M._getValue(186,5475
function M._getValue(_getValue186,5475
function M.store(212,6283
function M.store(store212,6283
function M.store_true(225,6794
function M.store_true(store_true225,6794
function M.append(238,7312
function M.append(append238,7312
function M.store_false(255,7902
function M.store_false(store_false255,7902
function M.count(268,8417
function M.count(count268,8417
function M.display_store(278,8717
function M.display_store(display_store278,8717
function M.display_flag(298,9233
function M.display_flag(display_flag298,9233
function M.display_count(311,9587
function M.display_count(display_count311,9587
function M.setDefaults(319,9854
function M.setDefaults(setDefaults319,9854
function M.parseOpt(334,10396
function M.parseOpt(parseOpt334,10396
function M.buildHelpMsg(347,10847
function M.buildHelpMsg(buildHelpMsg347,10847
function M.printHelp(370,11458
function M.printHelp(printHelp370,11458
function M.parseEnvArg(380,11743
function M.parseEnvArg(parseEnvArg380,11743
function M.parse(435,13095
function M.parse(parse435,13095
tools/declare.lua,85
function declare(38,1669
function isDefined(46,1894
function isNotDefined(50,1960
tools/MF_Base.lua,240
function M.name(54,2168
function M.name(name54,2168
function M.build(63,2421
function M.build(build63,2421
function M.process(83,3083
function M.process(process83,3083
function M.header(129,4471
function M.header(header129,4471
tools/Banner.lua,289
local function new(50,1971
function M.singleton(63,2223
function M.singleton(singleton63,2223
function M.width(76,2530
function M.width(width76,2530
function M.border(84,2833
function M.border(border84,2833
function M.bannerStr(101,3392
function M.bannerStr(bannerStr101,3392
tools/Cosmic.lua,522
function M.singleton(54,2164
function M.singleton(singleton54,2164
function M.init(68,2375
function M.init(init68,2375
function M.reportChangesFromDefault(112,3538
function M.reportChangesFromDefault(reportChangesFromDefault112,3538
function M.assign(131,3889
function M.assign(assign131,3889
function M.value(136,3984
function M.value(value136,3984
function M.default(141,4106
function M.default(default141,4106
function M.changed(145,4174
function M.changed(changed145,4174
function l_new(150,4294
tools/TermWidth.lua,62
local function askSystem(49,1883
function TermWidth(74,2475
tools/serializeTbl.lua,176
local function quoteValue(68,2587
local function nsformat(80,2868
local function wrap_name(113,3881
local function outputTblHelper(129,4352
function serializeTbl(235,7157
tools/deepcopy.lua,24
function deepcopy(3,19
tools/haveTermSupport.lua,67
function haveTermSupport(44,1846
function connected2Term(53,1985
tools/pairsByKeys.lua,29
function pairsByKeys 18,714
tools/strict.lua,28
local function what 18,496
tools/MF_Lua.lua,252
function MF_Lmod.setenv(54,2234
function MF_Lmod.setenv(setenv54,2234
function MF_Lmod.prepend_path(64,2548
function MF_Lmod.prepend_path(prepend_path64,2548
function MF_Lmod.append_path(74,2873
function MF_Lmod.append_path(append_path74,2873
tools/capture.lua,26
function capture(46,2022
tools/BeautifulTbl.lua,199
function M.new(89,3873
function M.new(new89,3873
function M._build_tbl(120,4857
function M._build_tbl(_build_tbl120,4857
function M.build_tbl(184,6533
function M.build_tbl(build_tbl184,6533
tools/i18n/init.lua,1175
local function dotSplit(21,511
local function isPluralTable(30,688
local function isPresent(34,783
local function assertPresent(38,862
local function assertPresentOrPlural(45,1126
local function assertPresentOrTable(52,1443
local function assertFunctionOrNil(59,1749
local function defaultPluralizeFunction(66,2047
local function pluralize(70,2159
local function treatNode(78,2379
local function recursiveLoad(87,2595
local function localizedTranslate(101,2996
function i18n.set(115,3271
function i18n.set(set115,3271
function i18n.translate(132,3604
function i18n.translate(translate132,3604
function i18n.setLocale(147,3968
function i18n.setLocale(setLocale147,3968
function i18n.setFallbackLocale(154,4256
function i18n.setFallbackLocale(setFallbackLocale154,4256
function i18n.getFallbackLocale(159,4426
function i18n.getFallbackLocale(getFallbackLocale159,4426
function i18n.getLocale(163,4489
function i18n.getLocale(getLocale163,4489
function i18n.reset(167,4536
function i18n.reset(reset167,4536
function i18n.load(174,4665
function i18n.load(load174,4665
function i18n.loadFile(178,4722
function i18n.loadFile(loadFile178,4722
tools/i18n/plural.lua,444
local function assertPresentString(5,67
local function assertNumber(12,378
local function words(20,720
local function isInteger(29,888
local function between(33,949
local function inside(37,1033
function plural.get(261,6911
function plural.get(get261,6911
function plural.setDefaultFunction(270,7136
function plural.setDefaultFunction(setDefaultFunction270,7136
function plural.reset(274,7201
function plural.reset(reset274,7201
tools/i18n/interpolate.lua,195
local function interpolateValue(4,122
function (previous,(previous6,216
local function interpolateField(16,415
function (previous,(previous18,529
local function interpolate(27,727
tools/i18n/variants.lua,365
local function reverse(3,21
local function concat(9,159
function variants.ancestry(16,293
function variants.ancestry(ancestry16,293
function variants.isParent(26,548
function variants.isParent(isParent26,548
function variants.root(30,646
function variants.root(root30,646
function variants.fallbacks(34,714
function variants.fallbacks(fallbacks34,714
tools/base64.lua,242
local function lsh(17,307
local function rsh(22,393
local function bit(27,497
local function lor(32,594
function M.encode64(49,1545
function M.encode64(encode6449,1545
function M.decode64(76,3032
function M.decode64(decode6476,3032
tools/fileOps.lua,545
local function argsPack(44,1786
function findInPath(53,2182
function find_exec_path(90,3161
function isDir(125,4036
function isFile(144,4548
function isExec(156,4873
function dirname(165,5178
function extname(180,5559
function removeExt(197,5946
function barefilename(214,6355
function splitFileName(231,6787
function pathJoin(251,7317
function mkdir_recursive(293,8351
function abspath 321,8994
function path_regularize(368,10160
local function _walk_dir(431,11464
local function _walker(452,12061
function dir_walk(460,12238
ML_README.txt,184
module load baz goo;13,312
Unless you know what you are doing,79,1763
alias provided above on a system where Lmod is installed. Therefore,80,1833
Hermes.db,18
ProjectData 3,52
Makefile.in,6062
srcdir 1,0
prefix 2,38
package 3,63
PATH_TO_SRC 5,124
PATH_TO_LUA 7,161
version 8,195
SITE_CONTROLLED_PREFIX 9,314
LMOD_ROOT 10,368
MY_PACKAGE 11,418
MY_PKG_PACKAGE 12,479
LMOD_ROOT 15,578
MY_PACKAGE 16,620
MY_PKG_PACKAGE 17,659
CC 19,704
PATH_TO_SRC 20,738
path_to_src 21,781
TOOL_SRC 24,824
I18N_SRC 25,887
CONF_PY 27,956
CONF_PY_PATTERN 28,1015
CURRENT_MK 29,1092
export IGNORE_DIRS export IGNORE_DIRS30,1150
REDIRECT 31,1263
LMOD_SETTARG_FULL_SUPPORT 32,1303
USE_DOT_FILES 33,1393
PREPEND_BLOCK 34,1483
COLORIZE 35,1568
SETTARG_CMD 36,1653
MODULEPATH_INIT 37,1694
LMOD_AVAIL_EXTENSION 38,1741
LMOD_HIDDEN_ITALIC 39,1788
LMOD_OVERRIDE_LANG 40,1833
LMOD_ALLOW_ROOT_USE 41,1883
SITE_MSG_FILE 42,1934
SITE_NAME 43,1979
SUPPORT_KSH 44,2020
SYSHOST 45,2063
SILENCE_SHELL_DEBUGGING 46,2102
SYS_LD_LIB_PATH 47,2157
SYS_LD_PRELOAD 48,2204
SYS_LUA_PATH 49,2250
SYS_LUA_CPATH 50,2294
CASE_INDEPENDENT_SORTING 51,2339
ZSH_SITE_FUNCTIONS_DIRS 52,2395
SPIDER_CACHE_DESCRIPT_FN 53,2450
ANCIENT 54,2506
ALLOW_TCL_MFILES 55,2540
MPATH_AVAIL 56,2588
EXTENDED_DEFAULT 57,2631
TMOD_PATH_RULE 58,2679
TMOD_FIND_FIRST 59,2725
CACHED_LOADS 60,2772
EXACT_MATCH 61,2816
DUPLICATE_PATHS 62,2859
DISABLE_NAME_AUTOSWAP 63,2906
SHORT_TIME 64,2959
PIN_VERSIONS 65,2996
AUTO_SWAP 66,3040
SPIDER_CACHE_DIRS 67,3075
LEGACY_ORDERING 68,3119
EXPORT_MODULE 69,3166
BASENAME 70,3211
UPDATE_VERSION 71,3251
PS 72,3314
EXPR 73,3348
PATH_TO_HASHSUM 74,3384
PATH_TO_LUAC 75,3426
PATH_TO_PAGER 76,3470
PATH_TO_TCLSH 77,3508
PATH_TO_LS 78,3553
MODULEPATH_ROOT 79,3595
VERSION_SRC 80,3637
LUA_INCLUDE 81,3683
UPDATE_SYSTEM_FN 82,3721
GIT_PROG 83,3764
GIT_VERSION 84,3807
PKG 85,3964
PKGV 86,3995
LIB 87,4023
LIBEXEC 88,4070
SHELLS 89,4109
TOOLS 90,4159
I18N 91,4208
SETTARG 92,4262
INIT 93,4313
INIT_KSH_FUNCS 94,4346
FISH_TAB 95,4398
MESSAGEDIR 96,4454
LMOD_MF 97,4501
MAN_PAGES 98,4549
LMOD_MF_SOURCE 99,4607
SETTARG_SOURCE 100,4681
UNAME_S 101,4769
SED 103,4841
DATE_cmd 104,4860
SED 106,4885
DATE_cmd 107,4903
DIRLIST 110,4929
STANDALONE_PRGM 115,5332
STANDALONE_PRGM 123,5967
SHELL_INIT 124,6043
SHELL_INIT 127,6285
LMODRC_INIT 128,6351
ZSH_FUNCS 131,6426
ZSH_FUNCS 132,6467
FISH_FUNCS 134,6547
FISH_FUNCS 135,6591
KSH_FUNCS 137,6673
KSH_FUNCS 138,6753
STARTUP 140,6839
STARTUP 141,6892
MSGFNs 143,6954
MAIN_DIR 145,7023
CONTRIB_DIRS 148,7155
CONTRIB 161,7897
lua_code 162,7978
VDATE 164,8116
ComputeHashSum 166,8169
spiderCacheSupportCMD 167,8229
export L_PATH export L_PATH168,8317
export L_CPATH export L_CPATH169,8359
HAVE_LUA_TERM 171,8403
PKGS 173,8477
HAVE_LUAFILESYSTEM 175,8498
PKGS 177,8582
PKG_LFS 178,8604
FAST_TCL_INTERP 180,8627
PKGS 182,8704
PKG_T2L 183,8733
.PHONY:.PHONY186,8761
all:all188,8790
uninstall:uninstall191,8808
pre-install:pre-install195,8930
lmod_install_targets:lmod_install_targets197,8976
install:install201,9195
echo 'Warning:echo 'Warning211,9917
echo:echo216,10168
man_pages:man_pages224,10342
$(DIRLIST)$(DIRLIST227,10459
__installMe:__installMe230,10486
bareN=232,10571
fn=233,10650
ext=234,10729
[ "$$ext" [ "$$ext"296,15396
-o "$$ext" -o "$$ext"297,15480
if [ "$$ext" if [ "$$ext"299,15638
mname=300,15718
generate_doc:generate_doc306,16045
shell_init:shell_init310,16069
lmodrc_init:lmodrc_init313,16159
messageFns:messageFns316,16251
i18n:i18n319,16340
startup:startup322,16419
other_tools:other_tools325,16503
spiderCacheSupport:spiderCacheSupport328,16617
src/computeHashSum:src/computeHashSum334,16968
tcl2lua:tcl2lua338,17093
$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC=$(MAKE) -C $(srcdir)/pkgs/tcl2lua LUA_INC340,17172
LIB=341,17249
SHARE=342,17326
lfs:lfs346,17492
$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC=$(MAKE) -C $(srcdir)/pkgs/luafilesystem LUA_INC348,17567
LIB=349,17644
pkgs:pkgs352,17809
$(MAKE) -C $(srcdir)/pkgs LUA_INC=$(MAKE) -C $(srcdir)/pkgs LUA_INC354,17885
LIB=355,17962
zsh_tab_funcs:zsh_tab_funcs359,18128
for zdir in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr ':for zdir in `echo "$(ZSH_SITE_FUNCTIONS_DIRS)" | tr '361,18240
bareN=363,18389
fn=364,18467
ext=365,18545
ksh_funcs:ksh_funcs373,18997
fish_tab_funcs:fish_tab_funcs376,19092
makefile:makefile379,19164
config.status:config.status382,19233
trailing_blanks_removed:trailing_blanks_removed385,19276
dist:dist388,19421
ml_dist:ml_dist408,20835
_ml_dist:_ml_dist411,20874
test:test420,21273
tags:tags423,21311
build_tags:build_tags426,21348
busted:busted487,25030
luachk:luachk494,25337
libexec:libexec498,25503
Inst_Tools:Inst_Tools501,25589
Inst_Shells:Inst_Shells504,25675
Inst_Settarg:Inst_Settarg507,25774
Inst_Lmod_MF:Inst_Lmod_MF511,25871
clean:clean514,25967
clobber:clobber520,26211
distclean:distclean522,26227
world_update:world_update525,26277
echo "All files not checked in echo "All files not checked in528,26462
echo "configure is out of date echo "configure is out of date530,26633
echo " \"tag_name\":echo " \"tag_name\"537,27234
echo " \"name\":echo " \"name\"539,27405
echo " \"body\":echo " \"body\"540,27494
echo " \"draft\":echo " \"draft\"541,27583
echo " \"prelease\":echo " \"prelease\"542,27672
URL=544,27843
curl --user rtmclay:curl --user rtmclay546,28014
gittag:gittag552,28443
echo "configure is out of date echo "configure is out of date558,28822
echo ' local s echo ' local s564,29327
echo ' if (s echo ' if (s565,29416
echo ' if (s echo ' if (s566,29505
echo ' local a echo ' local a571,29936
README.new,80
(8.4.1) * Issue #460: Change meta modules from having a separate file=2,10
.luacheckrc,290
std 1,0
files[files7,149
files[files8,213
files[files9,279
files[files10,344
files[files11,416
files[files13,614
files[files14,676
files[files15,767
files[files16,842
files[files17,905
files[files19,1133
files[files20,1204
files[files21,1276
files[files24,1579
shells/CMake.lua,537
function CMake.alias(51,2263
function CMake.alias(alias51,2263
function CMake.shellFunc(55,2361
function CMake.shellFunc(shellFunc55,2361
function CMake.echo(59,2473
function CMake.echo(echo59,2473
function CMake.expandVar(63,2527
function CMake.expandVar(expandVar63,2527
function CMake.unset(75,2854
function CMake.unset(unset75,2854
function CMake.report_failure(85,3094
function CMake.report_failure(report_failure85,3094
function CMake.report_success(91,3221
function CMake.report_success(report_success91,3221
shells/Bash.lua,363
function Bash.alias(56,2406
function Bash.alias(alias56,2406
function Bash.shellFunc(73,3009
function Bash.shellFunc(shellFunc73,3009
function Bash.expandVar(89,3512
function Bash.expandVar(expandVar89,3512
function Bash.unset(114,4182
function Bash.unset(unset114,4182
function Bash.real_shell(127,4603
function Bash.real_shell(real_shell127,4603
shells/Csh.lua,414
function Csh.alias(59,2560
function Csh.alias(alias59,2560
function Csh.shellFunc(76,3094
function Csh.shellFunc(shellFunc76,3094
function Csh.expandVar(84,3346
function Csh.expandVar(expandVar84,3346
function Csh.echo(107,3927
function Csh.echo(echo107,3927
function Csh.unset(116,4185
function Csh.unset(unset116,4185
function Csh.real_shell(138,4816
function Csh.real_shell(real_shell138,4816
shells/Lisp.lua,547
function Lisp.alias(56,2406
function Lisp.alias(alias56,2406
function Lisp.shellFunc(65,2775
function Lisp.shellFunc(shellFunc65,2775
function Lisp.expandVar(74,3052
function Lisp.expandVar(expandVar74,3052
function Lisp.unset(95,3623
function Lisp.unset(unset95,3623
function Lisp.real_shell(108,4064
function Lisp.real_shell(real_shell108,4064
function Lisp.report_failure(112,4116
function Lisp.report_failure(report_failure112,4116
function Lisp.report_failure(118,4224
function Lisp.report_failure(report_failure118,4224
shells/Perl.lua,523
function Perl.alias(49,2169
function Perl.alias(alias49,2169
function Perl.shellFunc(53,2266
function Perl.shellFunc(shellFunc53,2266
function Perl.echo(57,2377
function Perl.echo(echo57,2377
function Perl.expandVar(61,2430
function Perl.expandVar(expandVar61,2430
function Perl.unset(75,2771
function Perl.unset(unset75,2771
function Perl.report_failure(80,2894
function Perl.report_failure(report_failure80,2894
function Perl.report_success(86,3014
function Perl.report_success(report_success86,3014
shells/Ruby.lua,602
function Ruby.alias(50,2206
function Ruby.alias(alias50,2206
function Ruby.shellFunc(54,2304
function Ruby.shellFunc(shellFunc54,2304
function Ruby.echo(58,2416
function Ruby.echo(echo58,2416
function Ruby.expandVar(62,2469
function Ruby.expandVar(expandVar62,2469
function Ruby.unset(75,2837
function Ruby.unset(unset75,2837
function Ruby.initialize(85,3095
function Ruby.initialize(initialize85,3095
function Ruby.report_failure(88,3131
function Ruby.report_failure(report_failure88,3131
function Ruby.report_success(94,3253
function Ruby.report_success(report_success94,3253
shells/Python.lua,636
function Python.alias(50,2214
function Python.alias(alias50,2214
function Python.shellFunc(54,2314
function Python.shellFunc(shellFunc54,2314
function Python.echo(58,2428
function Python.echo(echo58,2428