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
88263e4a
Commit
88263e4a
authored
4 years ago
by
Kayz
Committed by
Rob Swindell
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make it possible to import xtrn and xtrnsec from another system (with different indexes)
parent
c2959cc0
No related branches found
No related tags found
1 merge request
!463
MRC mods by Codefenix (2024-10-20)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/importcfg.js
+35
-2
35 additions, 2 deletions
exec/importcfg.js
with
35 additions
and
2 deletions
exec/importcfg.js
+
35
−
2
View file @
88263e4a
...
...
@@ -117,19 +117,52 @@ if(!cnf) {
alert
(
"
Failed to read
"
+
cnf_fname
);
exit
(
-
1
);
}
writeln
(
"
Backing up
"
+
cnf_fname
);
file_backup
(
cnf_fname
,
15
);
if
(
cnf_obj
==
'
xtrn
'
)
{
var
secs
=
{};
for
(
var
i
in
cnf
[
'
xtrnsec
'
])
{
secs
[
cnf
[
'
xtrnsec
'
][
i
][
'
code
'
].
toUpperCase
()]
=
i
;
}
}
for
(
var
i
in
list
)
{
var
obj
=
list
[
i
];
var
j
;
for
(
j
=
0
;
j
<
cnf
[
cnf_obj
].
length
;
j
++
)
{
if
(
cnf
[
cnf_obj
][
j
].
code
!==
undefined
)
{
if
(
cnf
[
cnf_obj
][
j
].
code
==
obj
.
code
)
if
(
cnf
[
cnf_obj
][
j
].
code
.
toUpperCase
()
==
obj
.
code
.
toUpperCase
()
)
break
;
}
else
{
if
(
cnf
[
cnf_obj
][
j
].
name
==
obj
.
name
)
if
(
cnf
[
cnf_obj
][
j
].
name
.
toUpperCase
()
==
obj
.
name
.
toUpperCase
()
)
break
;
}
}
obj
.
code
=
obj
.
code
.
toUpperCase
();
switch
(
cnf_obj
)
{
case
'
xtrnsec
'
:
delete
obj
.
number
;
delete
obj
.
index
;
break
;
case
'
xtrn
'
:
obj
.
sec_code
=
obj
.
sec_code
.
toUpperCase
();
delete
obj
.
number
;
delete
obj
.
index
;
delete
obj
.
sec_index
;
delete
obj
.
sec_number
;
if
(
typeof
secs
[
obj
.
sec_code
]
===
"
undefined
"
)
{
writeln
(
"
Could not find section
"
+
obj
.
sec_code
+
"
for program
"
+
(
obj
.
code
||
obj
.
name
));
continue
;
}
else
{
obj
.
sec
=
secs
[
obj
.
sec_code
];
}
break
;
default
:
break
;
}
if
(
j
<
cnf
[
cnf_obj
].
length
)
{
if
(
!
options
.
overwrite
)
{
writeln
(
"
Already exists:
"
+
(
obj
.
name
||
obj
.
code
));
...
...
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