Skip to content
Snippets Groups Projects
Commit 9d59dd74 authored by deuce's avatar deuce
Browse files

padfname() is no longer required... remove from the nasty hacks section.

parent 83ea571d
No related branches found
No related tags found
No related merge requests found
......@@ -816,7 +816,6 @@ file_transfers:
console.putmsg(bbs.text(R_Download));
continue file_transfers;
}
str=todo_padfname(str);
if(!bbs.list_file_info(file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number, str, FI_DOWNLOAD)) {
var s=0;
console.putmsg(bbs.text(SearchingAllDirs));
......@@ -862,7 +861,6 @@ file_transfers:
str=bbs.get_filespec();
if(str==null)
continue file_transfers;
str=todo_padfname(str);
if(!bbs.list_file_info(file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number, str, FI_INFO)) {
var s=0;
console.putmsg(bbs.text(SearchingAllDirs));
......@@ -1019,7 +1017,6 @@ file_transfers:
str=bbs.get_filespec();
if(str==null)
continue file_transfers;
str=todo_padfname(str);
if(!bbs.list_file_info(file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number, str, FI_REMOVE)) {
var s=0;
console.putmsg(bbs.text(SearchingAllDirs));
......@@ -1089,7 +1086,6 @@ file_transfers:
str=bbs.get_filespec();
if(str==null)
continue file_transfers;
str=todo_padfname(str);
if(!bbs.list_files(file_area.lib_list[bbs.curlib].dir_list[bbs.curdir].number, str, FL_VIEW)) {
console.putmsg(bbs.text(SearchingAllDirs));
for(i=0; i<file_area.lib_list[bbs.curlib].dir_list.length; i++) {
......@@ -1266,30 +1262,6 @@ function file_info()
}
//############################ Nasty Hacks #######################
function todo_padfname(fname)
{
var name='';
var ext='';
var dotpos=fname.lastIndexOf('.');
if(dotpos > -1) {
name=fname.substr(0,dotpos);
ext=fname.substr(dotpos+1);
}
else {
name=fname;
}
if(name.length > 8) {
/* Hack... make long specs match */
name=name.substr(0,7)+'*';
}
if(ext.length > 3) {
/* Hack... make long specs match */
ext=ext.substr(0,2)+'*';
}
return(format("%-8.8s-3.3s",name,ext));
}
function todo_getfiles(lib, dir)
{
var path=format("%s%s.ixb", file_area.lib_list[lib].dir_list[dir].data_dir, file_area.lib_list[lib].dir_list[dir].code);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment