Subversion Repositories Kolibri OS

Rev

Rev 9436 | Rev 9602 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9436 Rev 9585
Line 74... Line 74...
74
dword shared_url;
74
dword shared_url;
75
dword http_get_type=PAGE;
75
dword http_get_type=PAGE;
76
dword render_start_time;
76
dword render_start_time;
77
int menu_id=NULL;
77
int menu_id=NULL;
Line 78... Line 78...
78
 
78
 
79
char default_dir[] = "/rd/1";
79
char default_dir[] = "/sys";
Line 80... Line 80...
80
od_filter filter2 = { 22, "TXT\0HTM\0HTML\0DOCX\0\0" };
80
od_filter filter2 = { 22, "TXT\0HTM\0HTML\0DOCX\0\0" };
81
 
81
 
82
char editURL[URL_SIZE+1];
82
char editURL[URL_SIZE+1];
Line 459... Line 459...
459
}
459
}
Line 460... Line 460...
460
 
460
 
461
void EventEditSource()
461
void EventEditSource()
462
{
462
{
463
	if (check_is_the_adress_local(history.current())) {
463
	if (check_is_the_adress_local(history.current())) {
464
		RunProgram("/rd/1/develop/cedit", history.current());
464
		RunProgram("/sys/develop/cedit", history.current());
465
	} else {
465
	} else {
466
		CreateFile(WB1.bufsize, WB1.bufpointer, "/tmp0/1/WebView_tmp.htm");
466
		CreateFile(WB1.bufsize, WB1.bufpointer, "/tmp0/1/WebView_tmp.htm");
467
		if (!EAX) RunProgram("/rd/1/develop/cedit", "/tmp0/1/WebView_tmp.htm");
467
		if (!EAX) RunProgram("/sys/develop/cedit", "/tmp0/1/WebView_tmp.htm");
468
	}
468
	}
Line 469... Line 469...
469
}
469
}
470
 
470