summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-11-25 00:11:24 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-11-25 00:11:24 +0000
commitd7907bfe4ca4180dd926dbe4088e9b2be477c2bc (patch)
tree8f0cefb13799cb90cd0c7e9d34d9f2087ff11e3d /amiga
parent80e14dce527cc0b276a3a1082e95c20ed38c389d (diff)
downloadnetsurf-d7907bfe4ca4180dd926dbe4088e9b2be477c2bc.tar.gz
netsurf-d7907bfe4ca4180dd926dbe4088e9b2be477c2bc.tar.bz2
Allow specifying location of the users directories on the commandline
Arg USERSDIR/K
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/dist/NetSurf.guide9
-rw-r--r--amiga/gui.c24
2 files changed, 19 insertions, 14 deletions
diff --git a/amiga/dist/NetSurf.guide b/amiga/dist/NetSurf.guide
index 4c1d34862..a1c3941df 100755
--- a/amiga/dist/NetSurf.guide
+++ b/amiga/dist/NetSurf.guide
@@ -109,12 +109,13 @@ This section contains options for exporting to PDF. It is not enabled in curren
@endnode
@node cli "Command line options"
-NetSurf URL/K,FORCE/S,NSOPTS/M
+NetSurf NSOPTS/M,URL/K,USERSDIR/K,FORCE/S
Where:
-URL = Address of page to open on startup
-FORCE = Force new instance of NetSurf to open (has some limitations, use for debugging only)
-NSOPTS = Catches everything else and passes it to the NetSurf core command line parser
+URL = Address of page to open on startup
+USERSDIR = Locations of user directories (see @{"tooltypes" link tooltypes})
+FORCE = Force new instance of NetSurf to open (has some limitations, use for debugging only)
+NSOPTS = Catches everything else and passes it to the NetSurf core command line parser
@endnode
@node tooltypes "ToolTypes"
diff --git a/amiga/gui.c b/amiga/gui.c
index c9bca6f19..dbcc2f3ff 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -797,12 +797,13 @@ static struct RDArgs *ami_gui_commandline(int *argc, char **argv, int *nargc, ch
{
int new_argc = 1;
struct RDArgs *args;
- CONST_STRPTR template = "NSOPTS/M,URL/K,FORCE/S";
- long rarray[] = {0,0,0};
+ CONST_STRPTR template = "NSOPTS/M,URL/K,USERSDIR/K,FORCE/S";
+ long rarray[] = {0,0,0,0};
enum
{
A_NSOPTS, /* ignored */
A_URL,
+ A_USERSDIR,
A_FORCE
};
@@ -814,6 +815,11 @@ static struct RDArgs *ami_gui_commandline(int *argc, char **argv, int *nargc, ch
temp_homepage_url = ami_to_utf8_easy((char *)rarray[A_URL]);
}
+ if(rarray[A_USERSDIR]) {
+ LOG("USERSDIR %s specified on command line", rarray[A_USERSDIR]);
+ users_dir = ASPrintf("%s", rarray[A_USERSDIR]);
+ }
+
if(rarray[A_FORCE]) {
LOG("FORCE specified on command line");
cli_force = true;
@@ -5419,6 +5425,8 @@ int main(int argc, char** argv)
BPTR lock = 0;
int32 user = 0;
nserror ret;
+ int nargc = 0;
+ char *nargv = NULL;
struct netsurf_table amiga_table = {
.browser = &amiga_browser_table,
@@ -5470,9 +5478,6 @@ int main(int argc, char** argv)
return RETURN_FAIL;
}
- int nargc;
- char *nargv;
-
ami_gui_read_all_tooltypes(argc, argv);
struct RDArgs *args = ami_gui_commandline(&argc, argv, &nargc, &nargv);
@@ -5493,8 +5498,8 @@ int main(int argc, char** argv)
}
}
-#ifdef __amigaos4__
if(LIB_IS_AT_LEAST((struct Library *)DOSBase, 51, 96)) {
+#ifdef __amigaos4__
struct InfoData *infodata = AllocDosObject(DOS_INFODATA, 0);
if(infodata == NULL) {
ami_misc_fatal_error("Failed to allocate memory");
@@ -5515,13 +5520,12 @@ int main(int argc, char** argv)
return RETURN_FAIL;
}
FreeDosObject(DOS_INFODATA, infodata);
- } else {
#else
-//FIXME for OS3 and older OS4
+#warning FIXME for OS3 and older OS4
#endif
-#ifdef __amigaos4__
+ } else {
+//TODO: check volume write status using old API
}
-#endif
int len = strlen(current_user);
len += strlen(users_dir);