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
7bca5c13
Commit
7bca5c13
authored
2 years ago
by
Rob Swindell
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master' into v320a_dev
parents
0e30b9f6
8519ce8f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xtrn/DDMsgReader/DDMsgReader.js
+1
-1
1 addition, 1 deletion
xtrn/DDMsgReader/DDMsgReader.js
xtrn/ddfilelister/ddfilelister.js
+2
-17
2 additions, 17 deletions
xtrn/ddfilelister/ddfilelister.js
with
3 additions
and
18 deletions
xtrn/DDMsgReader/DDMsgReader.js
+
1
−
1
View file @
7bca5c13
...
...
@@ -1753,7 +1753,7 @@ function DigDistMsgReader_SearchMessages(pSearchModeStr, pSubBoardCode, pScanSco
{
var formattedText = format(this.text.searchingSubBoardAbovePromptText, subBoardGrpAndName(bbs.cursub_code));
//console.print("\x01n" + replaceAtCodesInStr(formattedText) + "\x01n");
console.putms
t
("\x01n" + formattedText + "\x01n");
console.putms
g
("\x01n" + formattedText + "\x01n");
}
console.crlf();
}
...
...
This diff is collapsed.
Click to expand it.
xtrn/ddfilelister/ddfilelister.js
+
2
−
17
View file @
7bca5c13
...
...
@@ -581,7 +581,7 @@ function showFileInfo(pFileList, pFileListMenu)
// may be a kludge, and perhaps there's a better solution..
fileDesc
=
fileDesc
.
replace
(
/^
\x
01
[
nN
]
/
,
""
);
// Fix line endings if necessary
fileDesc
=
fixStrLineEndings
(
fileDesc
);
fileDesc
=
lfexpand
(
fileDesc
);
}
else
fileDesc
=
""
;
...
...
@@ -694,21 +694,6 @@ function splitStrAndCombineWithRN(pStr, pSplitStr)
return
newStr
;
}
// Fixes line endings in a string
function
fixStrLineEndings
(
pStr
)
{
if
(
typeof
(
pStr
)
!==
"
string
"
)
return
""
;
// If there's only a return or only a newline, split & recombine with \r\n
var
newStr
=
pStr
;
if
(
/
[^\r]\n[^\r]
/
.
test
(
newStr
))
// Only a newline
newStr
=
splitStrAndCombineWithRN
(
newStr
,
"
\n
"
);
else
if
(
/
[^\n]\r[^\n]
/
.
test
(
newStr
))
// Only a carriage return
newStr
=
splitStrAndCombineWithRN
(
newStr
,
"
\r
"
);
return
newStr
;
}
// Lets the user view a file.
//
// Parameters:
...
...
@@ -3227,7 +3212,7 @@ function populateFileList(pSearchMode)
{
gFileList
[
i
].
extdesc
=
gFileList
[
i
].
extdesc
.
substr
(
0
,
gFileList
[
i
].
extdesc
.
length
-
2
);
// Fix line endings if necessary
gFileList
[
i
].
extdesc
=
fixStrLineEndings
(
gFileList
[
i
].
extdesc
);
gFileList
[
i
].
extdesc
=
lfexpand
(
gFileList
[
i
].
extdesc
);
}
}
}
...
...
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