2015-12-20 16:50:48 +01:00
|
|
|
|
|
|
|
void GetAbsoluteURL(dword in_URL)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
dword orig_URL = in_URL;
|
|
|
|
char newurl[sizeof(URL)];
|
|
|
|
|
|
|
|
while (i=strstr(in_URL, "&"))
|
|
|
|
{
|
|
|
|
strcpy(i+1, i+5);
|
|
|
|
}
|
|
|
|
|
2018-05-20 15:40:58 +02:00
|
|
|
if (check_is_the_url_absolute(in_URL)) return;
|
2018-02-18 16:32:11 +01:00
|
|
|
|
|
|
|
IF (!strcmpn(in_URL,"//", 2))
|
|
|
|
{
|
|
|
|
//strcpy(#newurl, "http:");
|
|
|
|
//strcat(#newurl, in_URL);
|
|
|
|
sprintf(#newurl, "http:%s", in_URL);
|
|
|
|
strcpy(orig_URL, #newurl);
|
|
|
|
return;
|
|
|
|
}
|
2015-12-20 16:50:48 +01:00
|
|
|
|
|
|
|
IF (!strcmpn(in_URL,"./", 2)) in_URL+=2;
|
2018-05-18 22:18:10 +02:00
|
|
|
if (!http.transfer)
|
2015-12-20 16:50:48 +01:00
|
|
|
{
|
2016-01-01 17:51:53 +01:00
|
|
|
strcpy(#newurl, history.current());
|
2015-12-20 16:50:48 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-01 17:51:53 +01:00
|
|
|
strcpy(#newurl, history.items.get(history.active-2));
|
2015-12-20 16:50:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ESBYTE[in_URL] == '/') //remove everything after site domain name
|
|
|
|
{
|
|
|
|
i = strchr(#newurl+8, '/');
|
|
|
|
if (i) ESBYTE[i]=0;
|
|
|
|
in_URL+=1;
|
|
|
|
}
|
|
|
|
|
|
|
|
_CUT_ST_LEVEL_MARK:
|
|
|
|
|
|
|
|
if (newurl[strrchr(#newurl, '/')-2]<>'/')
|
|
|
|
{
|
|
|
|
newurl[strrchr(#newurl, '/')] = 0x00;
|
|
|
|
}
|
|
|
|
|
|
|
|
IF (!strncmp(in_URL,"../",3))
|
|
|
|
{
|
|
|
|
in_URL+=3;
|
|
|
|
newurl[strrchr(#newurl, '/')-1] = 0x00;
|
|
|
|
goto _CUT_ST_LEVEL_MARK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newurl[strlen(#newurl)-1]<>'/') strcat(#newurl, "/");
|
|
|
|
|
|
|
|
strcat(#newurl, in_URL);
|
|
|
|
strcpy(orig_URL, #newurl);
|
|
|
|
}
|
|
|
|
|