Fix CR/LF problem
This commit is contained in:
parent
ce1e6eadea
commit
2bbcabe2a8
7670
docs/notework.txt
7670
docs/notework.txt
File diff suppressed because it is too large
Load Diff
1118
golded3/gealst.cpp
1118
golded3/gealst.cpp
File diff suppressed because it is too large
Load Diff
2550
golded3/getpls.cpp
2550
golded3/getpls.cpp
File diff suppressed because it is too large
Load Diff
@ -1,168 +1,168 @@
|
||||
// This may look like C code, but it is really -*- C++ -*-
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// The Goldware Library
|
||||
// Copyright (C) 1999 Alexander S. Aganichev
|
||||
// ------------------------------------------------------------------
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Library General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Library General Public
|
||||
// License along with this program; if not, write to the Free
|
||||
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
// MA 02111-1307, USA
|
||||
// ------------------------------------------------------------------
|
||||
// $Id$
|
||||
// ------------------------------------------------------------------
|
||||
// Midnight Commander compatible clipboard.
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <gstrall.h>
|
||||
#include <gmemdbg.h>
|
||||
#include <gutlos.h>
|
||||
#include <gmemi86.h>
|
||||
#include <gfilutil.h>
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#define CLIPDIR "~/.cedit"
|
||||
#define CLIPFILE "~/.cedit/cooledit.clip"
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_init_os(int flags) {
|
||||
|
||||
NW(flags);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_deinit_os(void) {
|
||||
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_init_title(char *tasktitle, int titlestatus) {
|
||||
|
||||
NW(tasktitle); NW(titlestatus);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_increase_priority(void) {
|
||||
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_ostitle(char* title, word dx) {
|
||||
|
||||
NW(title); NW(dx);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_osicon(void) {
|
||||
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
bool g_is_clip_available(void) {
|
||||
|
||||
std::string clipdir = CLIPDIR;
|
||||
strschg_environ(clipdir);
|
||||
return is_dir(clipdir);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
char* g_get_clip_text(void) {
|
||||
|
||||
std::string clipfile = CLIPFILE;
|
||||
strschg_environ(clipfile);
|
||||
size_t size = GetFilesize(clipfile.c_str());
|
||||
|
||||
if(size != -1) {
|
||||
char *text = (char *)throw_malloc(size+1);
|
||||
*text = NUL;
|
||||
|
||||
FILE *f = fopen(clipfile.c_str(), "rt");
|
||||
if(f != NULL) {
|
||||
fread(text, 1, size, f);
|
||||
text[size] = NUL;
|
||||
fclose(f);
|
||||
}
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_put_clip_text(const char* buf) {
|
||||
|
||||
std::string clipfile = CLIPFILE;
|
||||
strschg_environ(clipfile);
|
||||
FILE *f = fopen(clipfile.c_str(), "wt");
|
||||
if(f != NULL) {
|
||||
fwrite(buf, 1, strlen(buf), f);
|
||||
fclose(f);
|
||||
return 0;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_get_ostitle_name(char* title) {
|
||||
|
||||
*title = NUL;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_ostitle_name(char* title, int mode) {
|
||||
|
||||
NW(title); NW(mode);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_send_mci_string(char* str, char* his_buffer) {
|
||||
|
||||
NW(str); NW(his_buffer);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// This may look like C code, but it is really -*- C++ -*-
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// The Goldware Library
|
||||
// Copyright (C) 1999 Alexander S. Aganichev
|
||||
// ------------------------------------------------------------------
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Library General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Library General Public
|
||||
// License along with this program; if not, write to the Free
|
||||
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
// MA 02111-1307, USA
|
||||
// ------------------------------------------------------------------
|
||||
// $Id$
|
||||
// ------------------------------------------------------------------
|
||||
// Midnight Commander compatible clipboard.
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#include <cstdlib>
|
||||
#include <cstdio>
|
||||
#include <gstrall.h>
|
||||
#include <gmemdbg.h>
|
||||
#include <gutlos.h>
|
||||
#include <gmemi86.h>
|
||||
#include <gfilutil.h>
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#define CLIPDIR "~/.cedit"
|
||||
#define CLIPFILE "~/.cedit/cooledit.clip"
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_init_os(int flags) {
|
||||
|
||||
NW(flags);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_deinit_os(void) {
|
||||
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_init_title(char *tasktitle, int titlestatus) {
|
||||
|
||||
NW(tasktitle); NW(titlestatus);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_increase_priority(void) {
|
||||
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_ostitle(char* title, word dx) {
|
||||
|
||||
NW(title); NW(dx);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_osicon(void) {
|
||||
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
bool g_is_clip_available(void) {
|
||||
|
||||
std::string clipdir = CLIPDIR;
|
||||
strschg_environ(clipdir);
|
||||
return is_dir(clipdir);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
char* g_get_clip_text(void) {
|
||||
|
||||
std::string clipfile = CLIPFILE;
|
||||
strschg_environ(clipfile);
|
||||
size_t size = GetFilesize(clipfile.c_str());
|
||||
|
||||
if(size != -1) {
|
||||
char *text = (char *)throw_malloc(size+1);
|
||||
*text = NUL;
|
||||
|
||||
FILE *f = fopen(clipfile.c_str(), "rt");
|
||||
if(f != NULL) {
|
||||
fread(text, 1, size, f);
|
||||
text[size] = NUL;
|
||||
fclose(f);
|
||||
}
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_put_clip_text(const char* buf) {
|
||||
|
||||
std::string clipfile = CLIPFILE;
|
||||
strschg_environ(clipfile);
|
||||
FILE *f = fopen(clipfile.c_str(), "wt");
|
||||
if(f != NULL) {
|
||||
fwrite(buf, 1, strlen(buf), f);
|
||||
fclose(f);
|
||||
return 0;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_get_ostitle_name(char* title) {
|
||||
|
||||
*title = NUL;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
void g_set_ostitle_name(char* title, int mode) {
|
||||
|
||||
NW(title); NW(mode);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
int g_send_mci_string(char* str, char* his_buffer) {
|
||||
|
||||
NW(str); NW(his_buffer);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
@ -1,114 +1,114 @@
|
||||
// This may look like C code, but it is really -*- C++ -*-
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// The Goldware Library
|
||||
// Copyright (C) 2002 Alexander S. Aganichev
|
||||
// ------------------------------------------------------------------
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Library General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Library General Public
|
||||
// License along with this program; if not, write to the Free
|
||||
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
// MA 02111-1307, USA
|
||||
// ------------------------------------------------------------------
|
||||
// $Id$
|
||||
// ------------------------------------------------------------------
|
||||
// Read areas from Synchronet BBS
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#include <cstdlib>
|
||||
#include <gcrcall.h>
|
||||
#include <gstrall.h>
|
||||
#undef GCFG_NOSYNCHRONET
|
||||
#include <gedacfg.h>
|
||||
#include <gs_sync.h>
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Synchronet configuration reader
|
||||
|
||||
void gareafile::ReadSynchronet(char* tag) {
|
||||
|
||||
Path file, path;
|
||||
char options[80];
|
||||
ushort shrt, i;
|
||||
grp_t grp;
|
||||
sub_t sub;
|
||||
|
||||
strcpy(options, tag);
|
||||
char* ptr = strtok(tag, " \t");
|
||||
while(ptr) {
|
||||
if(*ptr != '-') {
|
||||
strcpy(file, ptr);
|
||||
strschg_environ(file);
|
||||
}
|
||||
ptr = strtok(NULL, " \t");
|
||||
}
|
||||
|
||||
if(not fexist(file)) {
|
||||
AddBackslash(file);
|
||||
strcat(file, "msgs.cnf");
|
||||
}
|
||||
|
||||
extractdirname(path, file);
|
||||
|
||||
FILE* in = fsopen(file, "rb", sharemode);
|
||||
if(in) {
|
||||
|
||||
setvbuf(in, NULL, _IOFBF, 8192);
|
||||
|
||||
if(not quiet)
|
||||
std::cout << "* Reading " << file << std::endl;
|
||||
|
||||
// Skip header:
|
||||
// max_qwkmsgs 4
|
||||
// mail_maxcrcs 4
|
||||
// mail_maxage 2
|
||||
// unused (NULL) 512
|
||||
// unused (0xff) 512
|
||||
fseek(in, 1034, SEEK_CUR);
|
||||
|
||||
if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
|
||||
for(i = 0; i < shrt; i++) {
|
||||
if(fread(&grp, sizeof(grp_t), 1, in) != 1)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
|
||||
for(i = 0; i < shrt; i++) {
|
||||
if(fread(&sub, sizeof(sub_t), 1, in) != 1)
|
||||
break;
|
||||
AreaCfg aa;
|
||||
aa.reset();
|
||||
aa.type = GMB_ECHO;
|
||||
aa.attr = attribsecho;
|
||||
aa.msgbase = GMB_SMB;
|
||||
aa.setechoid((sub.misc & SUB_FIDO) ? sub.sname : sub.code);
|
||||
aa.setdesc(sub.lname);
|
||||
aa.groupid = 0x8000 + sub.grp;
|
||||
if(*sub.data_dir)
|
||||
MakePathname(file, sub.data_dir, strlwr(sub.code));
|
||||
else
|
||||
MakePathname(file, path, strlwr(sub.code));
|
||||
aa.setpath(file);
|
||||
aa.aka = primary_aka;
|
||||
aa.aka.set(sub.faddr);
|
||||
if(*sub.origline)
|
||||
aa.setorigin(sub.origline);
|
||||
AddNewArea(aa);
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(in);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// This may look like C code, but it is really -*- C++ -*-
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// The Goldware Library
|
||||
// Copyright (C) 2002 Alexander S. Aganichev
|
||||
// ------------------------------------------------------------------
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Library General Public
|
||||
// License as published by the Free Software Foundation; either
|
||||
// version 2 of the License, or (at your option) any later version.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Library General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Library General Public
|
||||
// License along with this program; if not, write to the Free
|
||||
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
// MA 02111-1307, USA
|
||||
// ------------------------------------------------------------------
|
||||
// $Id$
|
||||
// ------------------------------------------------------------------
|
||||
// Read areas from Synchronet BBS
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
#include <cstdlib>
|
||||
#include <gcrcall.h>
|
||||
#include <gstrall.h>
|
||||
#undef GCFG_NOSYNCHRONET
|
||||
#include <gedacfg.h>
|
||||
#include <gs_sync.h>
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Synchronet configuration reader
|
||||
|
||||
void gareafile::ReadSynchronet(char* tag) {
|
||||
|
||||
Path file, path;
|
||||
char options[80];
|
||||
ushort shrt, i;
|
||||
grp_t grp;
|
||||
sub_t sub;
|
||||
|
||||
strcpy(options, tag);
|
||||
char* ptr = strtok(tag, " \t");
|
||||
while(ptr) {
|
||||
if(*ptr != '-') {
|
||||
strcpy(file, ptr);
|
||||
strschg_environ(file);
|
||||
}
|
||||
ptr = strtok(NULL, " \t");
|
||||
}
|
||||
|
||||
if(not fexist(file)) {
|
||||
AddBackslash(file);
|
||||
strcat(file, "msgs.cnf");
|
||||
}
|
||||
|
||||
extractdirname(path, file);
|
||||
|
||||
FILE* in = fsopen(file, "rb", sharemode);
|
||||
if(in) {
|
||||
|
||||
setvbuf(in, NULL, _IOFBF, 8192);
|
||||
|
||||
if(not quiet)
|
||||
std::cout << "* Reading " << file << std::endl;
|
||||
|
||||
// Skip header:
|
||||
// max_qwkmsgs 4
|
||||
// mail_maxcrcs 4
|
||||
// mail_maxage 2
|
||||
// unused (NULL) 512
|
||||
// unused (0xff) 512
|
||||
fseek(in, 1034, SEEK_CUR);
|
||||
|
||||
if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
|
||||
for(i = 0; i < shrt; i++) {
|
||||
if(fread(&grp, sizeof(grp_t), 1, in) != 1)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(fread(&shrt, sizeof(ushort), 1, in) == 1) {
|
||||
for(i = 0; i < shrt; i++) {
|
||||
if(fread(&sub, sizeof(sub_t), 1, in) != 1)
|
||||
break;
|
||||
AreaCfg aa;
|
||||
aa.reset();
|
||||
aa.type = GMB_ECHO;
|
||||
aa.attr = attribsecho;
|
||||
aa.msgbase = GMB_SMB;
|
||||
aa.setechoid((sub.misc & SUB_FIDO) ? sub.sname : sub.code);
|
||||
aa.setdesc(sub.lname);
|
||||
aa.groupid = 0x8000 + sub.grp;
|
||||
if(*sub.data_dir)
|
||||
MakePathname(file, sub.data_dir, strlwr(sub.code));
|
||||
else
|
||||
MakePathname(file, path, strlwr(sub.code));
|
||||
aa.setpath(file);
|
||||
aa.aka = primary_aka;
|
||||
aa.aka.set(sub.faddr);
|
||||
if(*sub.origline)
|
||||
aa.setorigin(sub.origline);
|
||||
AddNewArea(aa);
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose(in);
|
||||
}
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user