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
531535ba
Commit
531535ba
authored
24 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
New option (FTP_OPT_DIR_FILES) to display files in directory, but not in database.
parent
593d92e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/sbbs3/ctrl/FtpCfgDlgUnit.cpp
+5
-0
5 additions, 0 deletions
src/sbbs3/ctrl/FtpCfgDlgUnit.cpp
src/sbbs3/ctrl/FtpCfgDlgUnit.dfm
+18
-7
18 additions, 7 deletions
src/sbbs3/ctrl/FtpCfgDlgUnit.dfm
src/sbbs3/ctrl/FtpCfgDlgUnit.h
+1
-0
1 addition, 0 deletions
src/sbbs3/ctrl/FtpCfgDlgUnit.h
with
24 additions
and
7 deletions
src/sbbs3/ctrl/FtpCfgDlgUnit.cpp
+
5
−
0
View file @
531535ba
...
...
@@ -78,6 +78,7 @@ void __fastcall TFtpCfgDlg::FormShow(TObject *Sender)
CmdLogCheckBox
->
Checked
=
MainForm
->
ftp_startup
.
options
&
FTP_OPT_DEBUG_RX
;
DebugTxCheckBox
->
Checked
=
MainForm
->
ftp_startup
.
options
&
FTP_OPT_DEBUG_TX
;
DebugDataCheckBox
->
Checked
=
MainForm
->
ftp_startup
.
options
&
FTP_OPT_DEBUG_DATA
;
DirFilesCheckBox
->
Checked
=
MainForm
->
ftp_startup
.
options
&
FTP_OPT_DIR_FILES
;
AllowQWKCheckBox
->
Checked
=
MainForm
->
ftp_startup
.
options
&
FTP_OPT_ALLOW_QWK
;
LocalFileSysCheckBox
->
Checked
...
...
@@ -148,6 +149,10 @@ void __fastcall TFtpCfgDlg::OKBtnClick(TObject *Sender)
MainForm
->
ftp_startup
.
options
|=
FTP_OPT_ALLOW_QWK
;
else
MainForm
->
ftp_startup
.
options
&=~
FTP_OPT_ALLOW_QWK
;
if
(
DirFilesCheckBox
->
Checked
==
true
)
MainForm
->
ftp_startup
.
options
|=
FTP_OPT_DIR_FILES
;
else
MainForm
->
ftp_startup
.
options
&=~
FTP_OPT_DIR_FILES
;
if
(
LocalFileSysCheckBox
->
Checked
==
false
)
MainForm
->
ftp_startup
.
options
|=
FTP_OPT_NO_LOCAL_FSYS
;
else
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/ctrl/FtpCfgDlgUnit.dfm
+
18
−
7
View file @
531535ba
object FtpCfgDlg: TFtpCfgDlg
Left =
325
Top =
113
Left =
812
Top =
620
BorderStyle = bsDialog
Caption = 'FTP Server Configuration'
ClientHeight = 234
...
...
@@ -157,6 +157,17 @@ object FtpCfgDlg: TFtpCfgDlg
ShowHint = True
TabOrder = 9
end
object DirFilesCheckBox: TCheckBox
Left = 148
Top = 105
Width = 125
Height = 20
Hint = 'Allow users access to files in directory, but not in database'
Caption = 'Directory File Access'
ParentShowHint = False
ShowHint = True
TabOrder = 10
end
end
object LogTabSheet: TTabSheet
Caption = 'Log'
...
...
@@ -229,7 +240,7 @@ object FtpCfgDlg: TFtpCfgDlg
Left = 72
Top = 11
Width = 169
Height = 2
4
Height = 2
1
Hint = 'WAV file to play when users connect'
TabOrder = 0
end
...
...
@@ -246,7 +257,7 @@ object FtpCfgDlg: TFtpCfgDlg
Left = 72
Top = 37
Width = 169
Height = 2
4
Height = 2
1
Hint = 'WAV file to play when users disconnect'
TabOrder = 2
end
...
...
@@ -262,7 +273,7 @@ object FtpCfgDlg: TFtpCfgDlg
end
end
object OKBtn: TButton
Left = 2
5
Left = 2
0
Top = 201
Width = 76
Height = 24
...
...
@@ -274,7 +285,7 @@ object FtpCfgDlg: TFtpCfgDlg
OnClick = OKBtnClick
end
object CancelBtn: TButton
Left = 1
1
0
Left = 10
4
Top = 201
Width = 75
Height = 24
...
...
@@ -285,7 +296,7 @@ object FtpCfgDlg: TFtpCfgDlg
TabOrder = 2
end
object ApplyBtn: TButton
Left = 19
4
Left = 1
8
9
Top = 201
Width = 76
Height = 24
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/ctrl/FtpCfgDlgUnit.h
+
1
−
0
View file @
531535ba
...
...
@@ -85,6 +85,7 @@ __published:
TButton
*
OKBtn
;
TButton
*
CancelBtn
;
TButton
*
ApplyBtn
;
TCheckBox
*
DirFilesCheckBox
;
void
__fastcall
FormShow
(
TObject
*
Sender
);
void
__fastcall
OKBtnClick
(
TObject
*
Sender
);
void
__fastcall
AnswerSoundButtonClick
(
TObject
*
Sender
);
...
...
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