- Mar 24, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
We don't have a use case negative byte values in strings anywhere that I can think of. Created wrapper for MSFT _ui64toa_() - unsigned 64-bit integer to ASCII string. Add Petabyte (actually, Pebibyte) support to byte_count_to_str() and byte_estimate_to_str(). Removed 'B' suffix from byte_estimate_to_str() output for values < 1024. Callers may display this returned string followed by "bytes" (or similar) and thus the 'B' suffix is redundant in that case. If the caller needs a 'B' suffix, they can detect no suffix and add it.
-
- Mar 21, 2022
-
-
Rob Swindell authored
warning: invalid suffix on literal; C++11 requires a space between literal and string macro
-
Rob Swindell authored
-
Rob Swindell authored
To fully support files > 4GB in size in file bases, credit values larger than 32-bits must be supported too. There's a couple of todo comments/items included in this commit, but that's mainly to do with messages (which don't really have costs anyway). The main thing to deal with now is the fact that users can't have more than 4GB in credits in the first place! That's got to be fixed next.
-
Rob Swindell authored
comparison of integer expressions of different signedness: ‘off_t’ {aka ‘long int’} and ‘uint64_t’ {aka ‘long unsigned int’}
-
Rob Swindell authored
Used the reserved 16-bits in the file index record to extend the supported index-file-size from 4294967295 (4GB) to 281474976710655 (281TB). I think that's big enough for the foreseeable future. :-)
-
Rob Swindell authored
Size is indexed, so might as well sort by it. This does have an issue with files >= 4GB in length however, so I'm looking at that next.
-
Rob Swindell authored
-
Rob Swindell authored
Query the disk for file's current "size" and "time" values when get_list() or get() method is used with a "detail" level of >= DETAIL.NORMAL and the "check file existence" toggle option is enabled for this directory in SCFG. I pondered and contemplated whether this configuration setting should be checked/applied here or in the various JS scripts (e.g. filelist.js) and decided here was best to provide the most uniform/expected behavior, even though there is a performance impact. If a script doesn't need/use these properties, they should probably be specifying the DETAIL.MIN (minimal) detail level in their queries anyway, which will then bypass these performance-impacting disk queries.
-
Rob Swindell authored
There are lot of places in the code where subnums and dirnums (especially) are compared against total_subs and/or total_dirs or >= 0 without a ton of consistency. We should migrate to use these functions for validity-checking going forward.
-
Rob Swindell authored
This option actually controls whether the disk will be queried for the current file size and modification date/time (when listing) too.
-
- Mar 20, 2022
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
By setting sbbs.ini [web] FileIndexScript to an SSJS or XJS script filename, that script (by default, from your exec directory) will be executed when a file area/base listing has been http[s]-requested. File area/base requests are of the form <vpath_prefix> (for the list of libraries), <vpath_prefix>/<lib-name>/ (for list of directories of a library) or <vpath_prefix>/<lib-name>/<dir-code-suffix>/ (for a list of files in a directory). The new http_request "lib" and "dir" properties indicate that a library or directory listing was requested (if neither are defined, that's a request for the root / list of libs). The same configured script is executed to handle all 3 types of index/list requests. A sample script (webfileindex.ssj) will be committed soon. Authentication (via HTTP-AUTH) will be required if user #0 does not have access to all libraries or all directories within a required library. file_area.lib[].link has been changed from "/<vdir>/" to just "<vdir>" (no slashes) and renamed to "vdir". file_area.dir[].link has been changed from "/<vpath>/" to "<vpath>/" (no leading slash) and renamed to "vpath". Added file_area.dir[].vdir property that contains just the directory's virtual directory name. I don't think anyone was using these "link" properties since the dynamic FTP HTML index scripting feature is no longer supported. Added can_user_access_lib() to insure that the user has access to at least one directory of a library before allowing access to the library (e.g. via JS). Something similar should be created for message groups.
-
Rob Swindell authored
Resolves issue with filelist.js trying to pass 4294967295 (-1) to system.datestr() resulting in: !JavaScript /sbbs/exec/filelist.js line 13: Error: can't convert t to an integer
-
- Mar 19, 2022
-
-
Rob Swindell authored
DDLightarMenu: Numbered mode item refresh fix & new item number colors See merge request !164
-
Rob Swindell authored
DD area choosers: No sub-board/library collapsing if all have the same separator See merge request !165
-
- Mar 18, 2022
-
-
Eric Oulashin authored
DD area choosers: For message sub-board/file directory collapsing, if there's only one sub-group/sub-library, then it won't be collapsed DD area choosers v1.23: For message sub-board/file directory collapsing, if there's only one sub-group/sub-library, then it won't be collapsed, as that wouldn't be very useful.
-
- Mar 17, 2022
-
-
Eric Oulashin authored
menu after the user types an item number to select/highlight it. Also, added 2 new color settings to specify the color to use for writing the item numbers: itemNumColor (for non-highlighted items) and highlightedItemNumColor (for the current highlighted item).
-
Rob Swindell authored
-
Rob Swindell authored
for Andre
-
- Mar 16, 2022
-
-
Rob Swindell authored
So you have multiple IRC servers configured in modopts.ini and you want different channel list per server? Just add more keys to the modopts.ini [chat_sec] section of the form: <server>=<channel_list> Where <server> is the IRC server's host name (e.g. irc.synchro.net) and <channel_list> is a comma-separated list of channels to override the default list of channels (set with the "irc_channel" key). For DesotoFireflite (VALHALLA)
-
- Mar 15, 2022
-
-
Rob Swindell authored
LORD: Fix daily bank transfer count not being reset properly See merge request !163
-
Rob Swindell authored
LORD: Fix online duel event See merge request !162
-
Rob Swindell authored
DDMsgReader: Added back a few functions that were accidentally removed See merge request !161
-
Rob Swindell authored
Removed references to old files See merge request !160
-
Eugene So authored
-
Eric Oulashin authored
Added back a few functions that were accidentally removed (which weren't moved to attr_conv.js)
-
Eugene So authored
Fixed broken code when taunting opponent Fixed broken code when aborting after waiting a long time for opponent to respond.
-
Eric Oulashin authored
-
- Mar 14, 2022
-
-
Rob Swindell authored
DDMsgReader can be called directly as a loadable module See merge request !159
-
-
Rob Swindell authored
-
Rob Swindell authored
-
Rob Swindell authored
std::min() requires both arguments be of same type too.
-
Rob Swindell authored
More immediately. I wanted to debug the ETA value here and the action wasn't written to the node file here, but later.
-
Rob Swindell authored
Resolve issues displaying file sizes > 4GB and calculating credit values.
-
Rob Swindell authored
To display (rather than "Searching for Dupes") when calculating file hashes.
-