mirror of
https://github.com/rejetto/hfs2.git
synced 2025-12-19 10:03:56 +01:00
removed 'append macros log' option
This commit is contained in:
parent
6625f08419
commit
da294807ca
12
hfs.dproj
12
hfs.dproj
@ -206,9 +206,10 @@
|
||||
</Platforms>
|
||||
<ModelSupport>False</ModelSupport>
|
||||
<Deployment Version="3">
|
||||
<DeployFile LocalName="hfs.exe" Configuration="Release" Class="ProjectOutput">
|
||||
<DeployFile LocalName="hfs.dpr" Configuration="Release" Class="ProjectFile">
|
||||
<Platform Name="Win32">
|
||||
<RemoteName>hfs.exe</RemoteName>
|
||||
<RemoteDir>.\</RemoteDir>
|
||||
<Enabled>false</Enabled>
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
@ -218,16 +219,15 @@
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployFile LocalName="hfs.dpr" Configuration="Debug" Class="ProjectFile">
|
||||
<DeployFile LocalName="hfs.exe" Configuration="Release" Class="ProjectOutput">
|
||||
<Platform Name="Win32">
|
||||
<RemoteDir>.\</RemoteDir>
|
||||
<RemoteName>hfs.exe</RemoteName>
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
<DeployFile LocalName="hfs.dpr" Configuration="Release" Class="ProjectFile">
|
||||
<DeployFile LocalName="hfs.dpr" Configuration="Debug" Class="ProjectFile">
|
||||
<Platform Name="Win32">
|
||||
<RemoteDir>.\</RemoteDir>
|
||||
<Enabled>false</Enabled>
|
||||
<Overwrite>true</Overwrite>
|
||||
</Platform>
|
||||
</DeployFile>
|
||||
|
||||
4
main.dfm
4
main.dfm
@ -2963,10 +2963,6 @@ object mainFrm: TmainFrm
|
||||
AutoCheck = True
|
||||
Caption = 'Enable macros.log'
|
||||
end
|
||||
object Appendmacroslog1: TMenuItem
|
||||
AutoCheck = True
|
||||
Caption = 'Append macros.log'
|
||||
end
|
||||
object Runscript1: TMenuItem
|
||||
Caption = 'Run script...'
|
||||
OnClick = Runscript1Click
|
||||
|
||||
6
main.pas
6
main.pas
@ -1,4 +1,4 @@
|
||||
{
|
||||
{
|
||||
Copyright (C) 2002-2020 Massimo Melina (www.rejetto.com)
|
||||
|
||||
This file is part of HFS ~ HTTP File Server.
|
||||
@ -671,7 +671,6 @@ type
|
||||
Speedlimitforsingleaddress1: TMenuItem;
|
||||
macrosLogChk: TMenuItem;
|
||||
Debug1: TMenuItem;
|
||||
Appendmacroslog1: TMenuItem;
|
||||
preventStandbyChk: TMenuItem;
|
||||
titlePnl: TPanel;
|
||||
HTMLtemplate1: TMenuItem;
|
||||
@ -3624,8 +3623,6 @@ begin
|
||||
result:='';
|
||||
if (folder = NIL) or not folder.isFolder() then exit;
|
||||
|
||||
if macrosLogChk.checked and not appendmacroslog1.checked then
|
||||
resetLog();
|
||||
diffTpl:=Ttpl.create();
|
||||
folder.lock();
|
||||
try
|
||||
@ -11871,7 +11868,6 @@ if menu.items.find(logmenu.items.caption) = NIL then
|
||||
SwitchON1.imageIndex:=if_(srv.active, 11, 4);
|
||||
SwitchON1.caption:=if_(srv.active, S_OFF, S_ON);
|
||||
|
||||
Appendmacroslog1.Enabled:=macrosLogChk.checked;
|
||||
stopSpidersChk.Enabled:=not fileExistsByURL('/robots.txt');
|
||||
Showbandwidthgraph1.visible:=not graphBox.visible;
|
||||
if bakShellMenuText='' then
|
||||
|
||||
28
todo.txt
28
todo.txt
@ -34,7 +34,7 @@ document: single line diff templates (file path)
|
||||
document: {.disconnection reason|if=XXX.}
|
||||
document: %url%
|
||||
document: commands returning white space: add folder, save, set account, exec, mkdir, chdir, delete, rename, move copy, set
|
||||
document: base64, base64decode, dir, disk free, filetime, file changed, load tpl, sha256, for line
|
||||
document: pipe, base64, base64decode, dir, disk free, filetime, file changed, load tpl, sha256, for line
|
||||
document {.convert|macros|dec|hex.}
|
||||
document: new event [login]
|
||||
+ event to filter logging http://www.rejetto.com/forum/index.php/topic,9784.0.html
|
||||
@ -92,12 +92,12 @@ document: new event [login]
|
||||
+ an updated hint on virtual folders, to explain how to get upload working
|
||||
- requesting a non-existant file inside an unauthorized folder, apache replies 401, hfs 404. try to comply.
|
||||
+ make %list% available in every page
|
||||
+ support for ALT+F4 with option "Minimize to tray clicking the close button" www.rejetto.com/forum/?topic=6351
|
||||
+ support for ALT+F4 with option "Minimize to tray clicking the close button" www.rejetto.com/forum/?topic=6351
|
||||
+ replace and delete icons http://www.rejetto.com/forum/index.php?topic=6317.msg1038157#msg1038157
|
||||
? currently the delete permission is only inside a folder. you can't mark a file or delete the marked folder. is this ok?
|
||||
+ when a link is protected (no access for this user) it may be displayed as a link to the %item-name%, then 401, and if login is successful provide a redirection
|
||||
+ change folder/link/generic-file icons (via GUI, without editing the template)
|
||||
+ a way to get bigger icons (client side)
|
||||
+ when a link is protected (no access for this user) it may be displayed as a link to the %item-name%, then 401, and if login is successful provide a redirection
|
||||
+ change folder/link/generic-file icons (via GUI, without editing the template)
|
||||
+ a way to get bigger icons (client side)
|
||||
+ be able to produce rss http://www.rejetto.com/forum/index.php?topic=5846.msg1035481#msg1035481
|
||||
* better warning message http://www.rejetto.com/forum/index.php?topic=5795.msg1034406#msg1034406
|
||||
? on the fly files compression www.rejetto.com/forum/?topic=5492
|
||||
@ -105,7 +105,7 @@ document: new event [login]
|
||||
? auto-removing folders www.rejetto.com/forum/?topic=3149
|
||||
+ last-access-time for files www.rejetto.com/forum/?topic=5266
|
||||
+ expiration time for account www.rejetto.com/forum/?topic=5409
|
||||
+ warn the user if there's no useful IP address http://www.rejetto.com/forum/index.php?topic=3193.msg1031371#msg1031371
|
||||
+ warn the user if there's no useful IP address http://www.rejetto.com/forum/index.php?topic=3193.msg1031371#msg1031371
|
||||
+ GUI suggestions www.rejetto.com/forum/?topic=5334
|
||||
+ {.cookie.} http://www.rejetto.com/forum/index.php?topic=5349.0
|
||||
+ restrict access to -> ip mask www.rejetto.com/forum/?topic=5244
|
||||
@ -126,37 +126,37 @@ document: new event [login]
|
||||
+ per-folder no-limit
|
||||
+ windows auth (NLTM? seems to be available in ICS) www.rejetto.com/forum/?topic=3762
|
||||
+ more stats www.rejetto.com/forum/?topic=4968
|
||||
+ to disable single ban rules
|
||||
+ to disable single ban rules
|
||||
+ ban by hostname
|
||||
+ edit comments for real folders www.rejetto.com/forum/?topic=4667
|
||||
+ a way to pass ini commands through the command line
|
||||
+ create folders via command line www.rejetto.com/forum/?topic=3955
|
||||
? support mp3ToIon www.rejetto.com/forum/?topic=4600
|
||||
+ download only for <account-list>
|
||||
+ account: see all transfers in ~progress http://www.rejetto.com/forum/index.php/topic,9325.msg1053416/topicseen.html#msg1053416
|
||||
+ account: see all transfers in ~progress http://www.rejetto.com/forum/index.php/topic,9325.msg1053416/topicseen.html#msg1053416
|
||||
+ limit account to a host mask
|
||||
+ tray icons for uploads
|
||||
+ MAC filter
|
||||
+ if robots.txt does not exist, an option "don't be listed on search engines"
|
||||
+ menu -> limits -> temporarily disable all limits
|
||||
+ menu -> limits -> max speed for each address
|
||||
+ option to display counter for folders as number of accesses instead of total access to files in it
|
||||
+ autodisabling accounts www.rejetto.com/forum/?topic=5379
|
||||
+ option to display counter for folders as number of accesses instead of total access to files in it
|
||||
+ autodisabling accounts www.rejetto.com/forum/?topic=5379
|
||||
+ on update, propose a link to the "what's new" page
|
||||
+ add special folder (expert mode): let you specify a special folder, like documents, or manually enter a path (useful for relative paths), or GUID
|
||||
+ logs rotation (hfs always append)
|
||||
+ double address bar, one for LAN and one for the Internet
|
||||
+ double address bar, one for LAN and one for the Internet
|
||||
+ per user diff-tpl (apply both folder and user diff-tpl.s, and let the user decide priority, default:user,folder)
|
||||
+ "Folder image mask", a file mask indicating the external file that should be used as icon (~img_folder)
|
||||
+ to be able to add icons from multi-icon files (like shell32.dll)
|
||||
+ installer (saving to registry, and making ini-file the new default, don't ask for shell menu)
|
||||
+ support unicode filenames (FindFirstFileW. Cannot be done because widgets don't support unicode)
|
||||
+ support unicode filenames (FindFirstFileW. Cannot be done because widgets don't support unicode)
|
||||
* show "(home)" instead of "/" in VFS
|
||||
+ show updateinfo notice also in autocheck
|
||||
+ top 10 downloaded files
|
||||
+ after the self test fails, and a router problem is detected, prompt a wizard for portforwad.com (extract routers list)
|
||||
+ export vfs map as txt/html
|
||||
+ specific message for each disabled account
|
||||
+ specific message for each disabled account
|
||||
+ search for files including meta information (id3 tag) www.rejetto.com/forum/?topic=5312
|
||||
+ multiupload using flash
|
||||
? support shortcut to folders in real-folders
|
||||
@ -184,7 +184,7 @@ document: new event [login]
|
||||
* stop using /~commands and move all of them in the standard ?name=value form
|
||||
|
||||
VER 3
|
||||
+ new kind of folder (no more real/virtual folders)
|
||||
+ new kind of folder (no more real/virtual folders)
|
||||
|
||||
VER 3.5
|
||||
+ search for files
|
||||
|
||||
Loading…
Reference in New Issue
Block a user