Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
a05440fb
Commit
a05440fb
authored
4 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Eliminate one unnecessary/redundant object.
parent
1fdc2534
No related branches found
No related tags found
1 merge request
!463
MRC mods by Codefenix (2024-10-20)
Pipeline
#1295
passed
4 years ago
Stage: build
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/importcfg.js
+16
-34
16 additions, 34 deletions
exec/importcfg.js
with
16 additions
and
34 deletions
exec/importcfg.js
+
16
−
34
View file @
a05440fb
...
...
@@ -10,21 +10,21 @@ var file_cnf = cnflib.read("file.cnf");
var
cfgtype
;
var
cfgtypes
=
{
'
msg-grps
'
:
msg_area
.
grp
,
'
msg-subs
'
:
msg_area
.
sub
,
'
file-libs
'
:
file_area
.
lib
,
'
file-dirs
'
:
file_area
.
dir
,
'
file-prots
'
:
file_cnf
.
prot
,
'
file-extrs
'
:
file_cnf
.
fextr
,
'
file-comps
'
:
file_cnf
.
fcomp
,
'
file-viewers
'
:
file_cnf
.
fview
,
'
file-testers
'
:
file_cnf
.
ftest
,
'
file-dlevents
'
:
file_cnf
.
dlevent
,
'
text-secs
'
:
file_cnf
.
txtsec
,
'
xtrn-secs
'
:
xtrn
_area
.
sec
,
'
xtrn-progs
'
:
xtrn
_area
.
prog
,
'
xtrn-events
'
:
xtrn_area
.
event
,
'
xtrn-editors
'
:
x
trn_area
.
edit
or
,
'
msg-grps
'
:
'
grp
'
,
'
msg-subs
'
:
'
sub
'
,
'
file-libs
'
:
'
lib
'
,
'
file-dirs
'
:
'
dir
'
,
'
file-prots
'
:
'
prot
'
,
'
file-extrs
'
:
'
fextr
'
,
'
file-comps
'
:
'
fcomp
'
,
'
file-viewers
'
:
'
fview
'
,
'
file-testers
'
:
'
ftext
'
,
'
file-dlevents
'
:
'
dlevent
'
,
'
text-secs
'
:
'
txtsec
'
,
'
xtrn-secs
'
:
'
xtrnsec
'
,
'
xtrn-progs
'
:
'
xtrn
'
,
'
xtrn-events
'
:
'
event
'
,
'
xtrn-editors
'
:
'
xedit
'
,
};
var
cnf_fnames
=
{
...
...
@@ -45,24 +45,6 @@ var cnf_fnames = {
'
xtrn-editors
'
:
'
xtrn.cnf
'
,
};
var
cnf_objs
=
{
'
msg-grps
'
:
'
grp
'
,
'
msg-subs
'
:
'
sub
'
,
'
file-libs
'
:
'
lib
'
,
'
file-dirs
'
:
'
dir
'
,
'
file-prots
'
:
'
prot
'
,
'
file-extrs
'
:
'
fextr
'
,
'
file-comps
'
:
'
fcomp
'
,
'
file-viewers
'
:
'
fview
'
,
'
file-testers
'
:
'
ftext
'
,
'
file-dlevents
'
:
'
dlevent
'
,
'
text-secs
'
:
'
txtsec
'
,
'
xtrn-secs
'
:
'
xtrnsec
'
,
'
xtrn-progs
'
:
'
xtrn
'
,
'
xtrn-events
'
:
'
event
'
,
'
xtrn-editors
'
:
'
xedit
'
,
};
var
filename
;
function
usage
(
msg
)
...
...
@@ -128,7 +110,7 @@ for(var i in text) {
}
/* Add list of imported objects into the .cnf file */
const
cnf_obj
=
c
nf_obj
s
[
cfgtype
];
const
cnf_obj
=
c
fgtype
s
[
cfgtype
];
const
cnf_fname
=
system
.
ctrl_dir
+
cnf_fnames
[
cfgtype
];
var
cnf
=
cnflib
.
read
(
cnf_fname
);
if
(
!
cnf
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment