2012-11-26 16:26:15 +01:00
|
|
|
|
//HTML Viewer in C--
|
2013-10-08 19:27:18 +02:00
|
|
|
|
//Copyright 2007-2013 by Veliant & Leency
|
2012-12-15 01:16:06 +01:00
|
|
|
|
//Asper, lev, Lrz, Barsuk, Nable...
|
2012-11-26 16:26:15 +01:00
|
|
|
|
//home icon - rachel fu, GPL licence
|
|
|
|
|
|
2013-10-24 23:45:17 +02:00
|
|
|
|
#ifndef AUTOBUILD
|
|
|
|
|
#include "lang.h--"
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-12-15 01:16:06 +01:00
|
|
|
|
//libraries
|
2016-11-22 15:04:10 +01:00
|
|
|
|
#define MEMSIZE 4096 * 200
|
2015-03-05 21:55:28 +01:00
|
|
|
|
#include "..\lib\gui.h"
|
2014-01-22 01:08:47 +01:00
|
|
|
|
#include "..\lib\draw_buf.h"
|
|
|
|
|
#include "..\lib\list_box.h"
|
|
|
|
|
#include "..\lib\cursor.h"
|
2015-12-16 23:44:42 +01:00
|
|
|
|
#include "..\lib\collection.h"
|
2016-01-08 03:19:41 +01:00
|
|
|
|
#include "..\lib\menu.h"
|
2016-12-13 23:08:14 +01:00
|
|
|
|
#include "..\lib\random.h"
|
2015-12-17 20:15:49 +01:00
|
|
|
|
|
2012-12-15 01:16:06 +01:00
|
|
|
|
//*.obj libraries
|
2015-03-05 21:55:28 +01:00
|
|
|
|
#include "..\lib\obj\box_lib.h"
|
|
|
|
|
#include "..\lib\obj\libio_lib.h"
|
|
|
|
|
#include "..\lib\obj\libimg_lib.h"
|
|
|
|
|
#include "..\lib\obj\http.h"
|
2015-08-07 00:37:34 +02:00
|
|
|
|
#include "..\lib\obj\iconv.h"
|
2015-02-15 11:18:26 +01:00
|
|
|
|
//useful patterns
|
|
|
|
|
#include "..\lib\patterns\libimg_load_skin.h"
|
2015-12-16 23:44:42 +01:00
|
|
|
|
#include "..\lib\patterns\history.h"
|
2016-01-15 00:05:51 +01:00
|
|
|
|
#include "..\lib\patterns\http_downloader.h"
|
2015-02-15 11:18:26 +01:00
|
|
|
|
|
2016-11-10 18:48:36 +01:00
|
|
|
|
char homepage[] = FROM "html\\homepage.htm""\0";
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
2013-10-15 00:41:27 +02:00
|
|
|
|
#ifdef LANG_RUS
|
2016-12-13 23:08:14 +01:00
|
|
|
|
char version[]="<EFBFBD><EFBFBD><EFBFBD><EFBFBD>⮢<EFBFBD><EFBFBD> <20><><EFBFBD>㧥<EFBFBD> 1.58";
|
2016-01-08 03:19:41 +01:00
|
|
|
|
?define IMAGES_CACHE_CLEARED "<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>⨭<EFBFBD><E2A8AD> <20><><EFBFBD>饭"
|
|
|
|
|
?define T_LAST_SLIDE "<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><E1ABA5><EFBFBD><EFBFBD> <><E1ABA0>"
|
|
|
|
|
char loading[] = "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>㧪<EFBFBD> <20><>࠭<EFBFBD><E0A0AD><EFBFBD>...<br>";
|
2016-11-10 18:48:36 +01:00
|
|
|
|
char page_not_found[] = FROM "html\\page_not_found_ru.htm""\0";
|
2016-01-08 03:19:41 +01:00
|
|
|
|
char accept_language[]= "Accept-Language: ru\n";
|
|
|
|
|
char rmb_menu[] =
|
|
|
|
|
"<EFBFBD><EFBFBD>ᬮ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>室<EFBFBD><E5AEA4><EFBFBD>
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD>室<EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD>⨭<EFBFBD><EFBFBD>
|
|
|
|
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>㧮<EFBFBD>";
|
2013-10-15 00:41:27 +02:00
|
|
|
|
#else
|
2016-12-13 23:08:14 +01:00
|
|
|
|
char version[]="Text-based Browser 1.58";
|
2016-01-08 03:19:41 +01:00
|
|
|
|
?define IMAGES_CACHE_CLEARED "Images cache cleared"
|
|
|
|
|
?define T_LAST_SLIDE "This slide is the last"
|
|
|
|
|
char loading[] = "Loading...<br>";
|
2016-11-10 18:48:36 +01:00
|
|
|
|
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
|
2016-01-08 03:19:41 +01:00
|
|
|
|
char accept_language[]= "Accept-Language: en\n";
|
|
|
|
|
char rmb_menu[] =
|
|
|
|
|
"View source
|
|
|
|
|
Edit source
|
|
|
|
|
History
|
|
|
|
|
Free image cache
|
|
|
|
|
Download Manager";
|
2013-10-15 00:41:27 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2016-12-13 23:08:14 +01:00
|
|
|
|
char link_menu[] =
|
|
|
|
|
"Copy link
|
|
|
|
|
Download link";
|
|
|
|
|
|
2015-08-27 01:45:56 +02:00
|
|
|
|
#define URL_SERVICE_HISTORY "WebView://history"
|
|
|
|
|
#define URL_SERVICE_HOME "WebView://home"
|
|
|
|
|
#define URL_SERVICE_SOURCE "WebView://source:"
|
2015-07-30 17:49:09 +02:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
proc_info Form;
|
|
|
|
|
|
2015-08-26 21:22:20 +02:00
|
|
|
|
//char search_path[]="http://nigma.ru/index.php?s=";
|
2014-02-05 00:57:32 +01:00
|
|
|
|
int redirected = 0;
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
2013-10-22 23:56:28 +02:00
|
|
|
|
char stak[4096];
|
2015-08-02 00:08:58 +02:00
|
|
|
|
|
2013-10-15 00:41:27 +02:00
|
|
|
|
int action_buf;
|
|
|
|
|
|
2014-02-09 18:00:40 +01:00
|
|
|
|
dword http_transfer = 0;
|
2014-01-27 20:35:41 +01:00
|
|
|
|
dword http_buffer;
|
2014-01-27 03:16:25 +01:00
|
|
|
|
|
2016-11-20 20:34:39 +01:00
|
|
|
|
dword TOOLBAR_H = 40;
|
2015-03-16 15:20:32 +01:00
|
|
|
|
dword STATUSBAR_H = 15;
|
2014-03-30 13:57:13 +02:00
|
|
|
|
dword col_bg;
|
|
|
|
|
dword panel_color;
|
|
|
|
|
dword border_color;
|
2014-03-22 11:29:29 +01:00
|
|
|
|
|
2015-08-13 14:23:35 +02:00
|
|
|
|
progress_bar wv_progress_bar;
|
2014-03-30 13:57:13 +02:00
|
|
|
|
byte souce_mode = false;
|
2014-03-22 11:29:29 +01:00
|
|
|
|
|
2015-08-13 14:23:35 +02:00
|
|
|
|
enum {
|
|
|
|
|
BACK_BUTTON=1000,
|
|
|
|
|
FORWARD_BUTTON,
|
|
|
|
|
REFRESH_BUTTON,
|
|
|
|
|
GOTOURL_BUTTON,
|
2016-12-13 23:08:14 +01:00
|
|
|
|
SANDWICH_BUTTON,
|
2015-08-23 21:59:44 +02:00
|
|
|
|
VIEW_SOURCE=1100,
|
2015-08-13 14:23:35 +02:00
|
|
|
|
EDIT_SOURCE,
|
|
|
|
|
VIEW_HISTORY,
|
|
|
|
|
FREE_IMG_CACHE,
|
2016-12-13 23:08:14 +01:00
|
|
|
|
DOWNLOAD_MANAGER,
|
|
|
|
|
COPY_LINK=1200,
|
|
|
|
|
DOWNLOAD_LINK
|
2015-08-13 14:23:35 +02:00
|
|
|
|
};
|
|
|
|
|
|
2013-12-27 00:36:17 +01:00
|
|
|
|
#include "..\TWB\TWB.c"
|
2014-03-12 23:56:28 +01:00
|
|
|
|
#include "history.h"
|
2014-03-30 13:57:13 +02:00
|
|
|
|
#include "show_src.h"
|
2015-12-22 19:14:35 +01:00
|
|
|
|
#include "download_manager.h"
|
2012-11-26 16:26:15 +01:00
|
|
|
|
|
2014-01-27 03:16:25 +01:00
|
|
|
|
char editURL[sizeof(URL)];
|
|
|
|
|
int mouse_twb;
|
2016-11-20 20:34:39 +01:00
|
|
|
|
edit_box address_box = {250,60,30,0xffffff,0x94AECE,0xffffff,0xffffff,0x10000000,sizeof(URL),#editURL,#mouse_twb,2,19,19};
|
2014-01-27 03:16:25 +01:00
|
|
|
|
|
2014-03-30 13:57:13 +02:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
void main()
|
|
|
|
|
{
|
2014-01-27 20:34:00 +01:00
|
|
|
|
CursorPointer.Load(#CursorFile);
|
2015-07-29 22:43:05 +02:00
|
|
|
|
load_dll(boxlib, #box_lib_init,0);
|
|
|
|
|
load_dll(libio, #libio_init,1);
|
|
|
|
|
load_dll(libimg, #libimg_init,1);
|
|
|
|
|
load_dll(libHTTP, #http_lib_init,1);
|
2015-08-07 00:37:34 +02:00
|
|
|
|
load_dll(iconv_lib, #iconv_open,0);
|
2015-02-15 11:18:26 +01:00
|
|
|
|
Libimg_LoadImage(#skin, abspath("wv_skin.png"));
|
|
|
|
|
SetSkinColors();
|
2015-08-26 21:22:20 +02:00
|
|
|
|
CreateDir("/tmp0/1/downloads");
|
|
|
|
|
if (param) strcpy(#URL, #param); else strcpy(#URL, URL_SERVICE_HOME);
|
2016-01-08 03:19:41 +01:00
|
|
|
|
WB1.list.SetFont(8, 14, 10011000b);
|
2015-08-29 22:14:17 +02:00
|
|
|
|
WB1.list.no_selection = true;
|
2014-01-27 20:34:00 +01:00
|
|
|
|
SetEventMask(0xa7);
|
2015-07-30 17:49:09 +02:00
|
|
|
|
BEGIN_LOOP_APPLICATION:
|
2012-11-26 16:26:15 +01:00
|
|
|
|
WaitEventTimeout(2);
|
|
|
|
|
switch(EAX & 0xFF)
|
|
|
|
|
{
|
|
|
|
|
CASE evMouse:
|
2013-10-24 20:26:04 +02:00
|
|
|
|
if (!CheckActiveProcess(Form.ID)) break;
|
2013-04-12 02:11:49 +02:00
|
|
|
|
edit_box_mouse stdcall (#address_box);
|
2015-08-02 00:08:58 +02:00
|
|
|
|
mouse.get();
|
2015-08-26 21:22:20 +02:00
|
|
|
|
if (WB1.list.MouseOver(mouse.x, mouse.y))
|
2012-11-26 16:26:15 +01:00
|
|
|
|
{
|
2016-12-13 23:08:14 +01:00
|
|
|
|
if (PageLinks.HoverAndProceed(mouse.x, WB1.list.first + mouse.y))
|
|
|
|
|
&& (bufsize) && (mouse.pkm) && (mouse.up) {
|
|
|
|
|
EventShowPageMenu(mouse.x, mouse.y);
|
2016-01-08 03:19:41 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
2015-08-26 21:22:20 +02:00
|
|
|
|
if (WB1.list.MouseScroll(mouse.vert)) WB1.DrawPage();
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
2015-09-01 15:11:07 +02:00
|
|
|
|
scrollbar_v_mouse (#scroll_wv);
|
|
|
|
|
if (WB1.list.first != scroll_wv.position)
|
2012-11-26 16:26:15 +01:00
|
|
|
|
{
|
2015-09-01 15:11:07 +02:00
|
|
|
|
WB1.list.first = scroll_wv.position;
|
|
|
|
|
WB1.DrawPage();
|
|
|
|
|
break;
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
|
|
|
|
break;
|
2015-08-10 17:08:16 +02:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
case evButton:
|
2016-11-10 18:48:36 +01:00
|
|
|
|
ProcessEvent(GetButtonID());
|
2012-11-26 16:26:15 +01:00
|
|
|
|
break;
|
2015-08-10 17:08:16 +02:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
case evKey:
|
2015-08-10 17:08:16 +02:00
|
|
|
|
GetKeys();
|
2015-03-18 23:23:24 +01:00
|
|
|
|
if (address_box.flags & 0b10)
|
2015-03-18 20:40:42 +01:00
|
|
|
|
{
|
2016-11-10 18:48:36 +01:00
|
|
|
|
if (key_ascii == ASCII_KEY_ENTER) ProcessEvent(key_scancode); else {
|
2016-10-31 13:37:22 +01:00
|
|
|
|
EAX = key_editbox;
|
|
|
|
|
edit_box_key stdcall(#address_box);
|
|
|
|
|
}
|
2015-08-10 17:08:16 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-11-10 18:48:36 +01:00
|
|
|
|
if (WB1.list.ProcessKey(key_scancode)) WB1.DrawPage();
|
|
|
|
|
else ProcessEvent(key_scancode);
|
2015-03-18 20:40:42 +01:00
|
|
|
|
}
|
2012-11-26 16:26:15 +01:00
|
|
|
|
break;
|
2015-03-18 20:40:42 +01:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
case evReDraw:
|
2016-01-08 03:19:41 +01:00
|
|
|
|
if (menu.list.cur_y) {
|
2016-11-10 18:48:36 +01:00
|
|
|
|
ProcessEvent(menu.list.cur_y);
|
2016-01-08 03:19:41 +01:00
|
|
|
|
menu.list.cur_y = 0;
|
|
|
|
|
}
|
2016-12-13 23:08:14 +01:00
|
|
|
|
DefineAndDrawWindow(GetScreenWidth()-800/2-random(80),GetScreenHeight()-600/2-random(80),800,600,0x73,col_bg,0,0);
|
2014-03-31 19:14:16 +02:00
|
|
|
|
GetProcessInfo(#Form, SelfInfo);
|
2014-03-31 20:05:04 +02:00
|
|
|
|
if (Form.status_window>2) { DrawTitle(#header); break; }
|
2015-09-06 14:34:30 +02:00
|
|
|
|
if (Form.height<120) { MoveSize(OLD,OLD,OLD,120); break; }
|
|
|
|
|
if (Form.width<280) { MoveSize(OLD,OLD,280,OLD); break; }
|
2012-11-26 16:26:15 +01:00
|
|
|
|
Draw_Window();
|
|
|
|
|
break;
|
2014-01-27 21:16:33 +01:00
|
|
|
|
|
2014-01-27 20:34:00 +01:00
|
|
|
|
case evNetwork:
|
2014-01-27 21:16:33 +01:00
|
|
|
|
if (http_transfer > 0) {
|
2015-03-20 13:04:14 +01:00
|
|
|
|
http_receive stdcall (http_transfer);
|
2014-03-22 11:29:29 +01:00
|
|
|
|
$push EAX
|
|
|
|
|
ESI = http_transfer;
|
2015-03-16 15:20:32 +01:00
|
|
|
|
wv_progress_bar.max = ESI.http_msg.content_length;
|
|
|
|
|
if (wv_progress_bar.value != ESI.http_msg.content_received)
|
2014-03-23 18:12:21 +01:00
|
|
|
|
{
|
2015-03-16 15:20:32 +01:00
|
|
|
|
wv_progress_bar.value = ESI.http_msg.content_received;
|
2014-03-23 18:12:21 +01:00
|
|
|
|
DrawProgress();
|
|
|
|
|
}
|
2014-03-22 11:29:29 +01:00
|
|
|
|
$pop EAX
|
|
|
|
|
if (EAX == 0) {
|
2014-02-05 00:57:32 +01:00
|
|
|
|
ESI = http_transfer;
|
|
|
|
|
// Handle redirects
|
2014-02-09 16:19:23 +01:00
|
|
|
|
if (ESI.http_msg.status >= 300) && (ESI.http_msg.status < 400)
|
|
|
|
|
{
|
2014-02-05 00:57:32 +01:00
|
|
|
|
redirected++;
|
2014-02-09 16:19:23 +01:00
|
|
|
|
if (redirected<=5)
|
|
|
|
|
{
|
2015-08-27 01:45:56 +02:00
|
|
|
|
http_find_header_field stdcall (http_transfer, "location\0");
|
2014-02-05 00:57:32 +01:00
|
|
|
|
if (EAX!=0) {
|
|
|
|
|
ESI = EAX;
|
|
|
|
|
EDI = #URL;
|
|
|
|
|
do {
|
|
|
|
|
$lodsb;
|
|
|
|
|
$stosb;
|
2016-11-10 18:48:36 +01:00
|
|
|
|
} while (AL != 0) && (AL != 13) && (AL != 10);
|
2014-02-05 00:57:32 +01:00
|
|
|
|
DSBYTE[EDI-1]='\0';
|
2016-11-22 15:04:10 +01:00
|
|
|
|
if (!strncmp(#URL,"https://",8))
|
2016-11-20 12:10:10 +01:00
|
|
|
|
{
|
2016-12-11 23:58:11 +01:00
|
|
|
|
ShowErrorMessageThatHttpsIsNotSupportedYet();
|
2016-11-22 15:04:10 +01:00
|
|
|
|
StopLoading();
|
|
|
|
|
break;
|
2016-11-20 12:10:10 +01:00
|
|
|
|
}
|
2014-02-05 00:57:32 +01:00
|
|
|
|
}
|
2014-02-09 16:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-08-26 21:22:20 +02:00
|
|
|
|
notify("Too many redirects");
|
|
|
|
|
StopLoading();
|
|
|
|
|
break;
|
2014-02-05 00:57:32 +01:00
|
|
|
|
}
|
2014-02-09 16:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-02-05 00:57:32 +01:00
|
|
|
|
redirected = 0;
|
|
|
|
|
}
|
2014-02-02 20:20:59 +01:00
|
|
|
|
// Loading the page is complete, free resources
|
2014-02-09 16:19:23 +01:00
|
|
|
|
if (redirected>0)
|
|
|
|
|
{
|
2014-03-14 01:07:05 +01:00
|
|
|
|
http_free stdcall (http_transfer);
|
|
|
|
|
http_transfer=0;
|
2015-12-20 16:50:48 +01:00
|
|
|
|
GetAbsoluteURL(#URL);
|
2016-01-01 17:51:53 +01:00
|
|
|
|
history.back();
|
2014-02-05 00:57:32 +01:00
|
|
|
|
strcpy(#editURL, #URL);
|
2016-02-21 22:57:22 +01:00
|
|
|
|
DrawEditBoxWebView();
|
2014-02-05 00:57:32 +01:00
|
|
|
|
OpenPage();
|
2014-02-09 16:19:23 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-01-01 17:51:53 +01:00
|
|
|
|
history.add(#URL);
|
2014-03-14 01:07:05 +01:00
|
|
|
|
ESI = http_transfer;
|
|
|
|
|
bufpointer = ESI.http_msg.content_ptr;
|
|
|
|
|
bufsize = ESI.http_msg.content_received;
|
|
|
|
|
http_free stdcall (http_transfer);
|
|
|
|
|
http_transfer=0;
|
2014-03-14 20:06:48 +01:00
|
|
|
|
SetPageDefaults();
|
2015-08-26 21:22:20 +02:00
|
|
|
|
ShowPage();
|
2014-02-05 00:57:32 +01:00
|
|
|
|
}
|
2014-01-27 20:34:00 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
2015-07-30 17:49:09 +02:00
|
|
|
|
goto BEGIN_LOOP_APPLICATION;
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetElementSizes()
|
|
|
|
|
{
|
2016-11-20 20:34:39 +01:00
|
|
|
|
address_box.top = TOOLBAR_H/2-10;
|
2016-12-11 23:58:11 +01:00
|
|
|
|
basic_line_h = calc(WB1.list.font_h * 130) / 100;
|
2016-11-20 20:34:39 +01:00
|
|
|
|
address_box.width = Form.cwidth - address_box.left - 50;
|
2016-12-21 11:56:06 +01:00
|
|
|
|
WB1.list.SetSizes(0, TOOLBAR_H, Form.width - 10 - scroll_wv.size_x,
|
2016-12-11 23:58:11 +01:00
|
|
|
|
Form.cheight - TOOLBAR_H - STATUSBAR_H, basic_line_h);
|
|
|
|
|
WB1.list.wheel_size = 7 * basic_line_h;
|
2015-08-10 14:45:00 +02:00
|
|
|
|
WB1.list.column_max = WB1.list.w - scroll_wv.size_x / WB1.list.font_w;
|
2016-12-11 23:58:11 +01:00
|
|
|
|
WB1.list.visible = WB1.list.h;
|
2016-01-08 03:19:41 +01:00
|
|
|
|
if (WB1.list.w!=WB1.DrawBuf.bufw) {
|
2016-12-21 11:56:06 +01:00
|
|
|
|
WB1.DrawBuf.Init(WB1.list.x, WB1.list.y, WB1.list.w, 32700);
|
2016-11-10 18:48:36 +01:00
|
|
|
|
ProcessEvent(REFRESH_BUTTON);
|
2016-01-08 03:19:41 +01:00
|
|
|
|
}
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-17 20:19:36 +01:00
|
|
|
|
|
2015-12-17 20:15:49 +01:00
|
|
|
|
|
2012-11-26 16:26:15 +01:00
|
|
|
|
void Draw_Window()
|
|
|
|
|
{
|
2015-08-26 21:22:20 +02:00
|
|
|
|
DrawBar(0,0, Form.cwidth,TOOLBAR_H-2, panel_color);
|
2015-08-13 14:23:35 +02:00
|
|
|
|
DrawBar(0,TOOLBAR_H-2, Form.cwidth,1, 0xD7D0D3);
|
2014-03-22 11:29:29 +01:00
|
|
|
|
DrawBar(0,TOOLBAR_H-1, Form.cwidth,1, border_color);
|
2012-11-26 16:26:15 +01:00
|
|
|
|
SetElementSizes();
|
2016-11-20 20:34:39 +01:00
|
|
|
|
DrawRectangle(address_box.left-3, address_box.top-3, address_box.width+5, 25,border_color);
|
|
|
|
|
DefineButton(address_box.left-52, address_box.top-2, 24, skin.h-2, BACK_BUTTON+BT_HIDE, 0);
|
|
|
|
|
DefineButton(address_box.left-27, address_box.top-2, 24, skin.h-2, FORWARD_BUTTON+BT_HIDE, 0);
|
|
|
|
|
img_draw stdcall(skin.image, address_box.left-53, address_box.top-3, 51, skin.h, 3, 0);
|
2015-08-13 14:23:35 +02:00
|
|
|
|
DefineButton(address_box.left+address_box.width+1, address_box.top-3, 16, skin.h-1, REFRESH_BUTTON+BT_HIDE+BT_NOFRAME, 0);
|
2016-11-20 20:34:39 +01:00
|
|
|
|
DefineButton(Form.cwidth-27, address_box.top-3, 23, skin.h-1, SANDWICH_BUTTON+BT_HIDE, 0);
|
|
|
|
|
img_draw stdcall(skin.image, Form.cwidth-24, address_box.top-3, 17, skin.h, 87, 0);
|
2014-03-22 11:29:29 +01:00
|
|
|
|
DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,STATUSBAR_H, col_bg);
|
|
|
|
|
DrawBar(0,Form.cheight - STATUSBAR_H, Form.cwidth,1, border_color);
|
2016-02-21 22:57:22 +01:00
|
|
|
|
if (!header) OpenPage(); else { WB1.DrawPage(); DrawEditBoxWebView(); }
|
2014-03-23 23:49:49 +01:00
|
|
|
|
DrawRectangle(scroll_wv.start_x, scroll_wv.start_y, scroll_wv.size_x, scroll_wv.size_y-1, scroll_wv.bckg_col);
|
2014-03-24 00:18:01 +01:00
|
|
|
|
DrawProgress();
|
2012-11-26 16:26:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-11-10 18:48:36 +01:00
|
|
|
|
void ProcessEvent(dword id__)
|
2013-12-27 01:33:12 +01:00
|
|
|
|
{
|
2016-11-10 18:48:36 +01:00
|
|
|
|
switch (id__)
|
2013-12-27 01:33:12 +01:00
|
|
|
|
{
|
2016-11-10 18:48:36 +01:00
|
|
|
|
case 1:
|
|
|
|
|
ExitProcess();
|
|
|
|
|
return;
|
2015-08-10 17:08:16 +02:00
|
|
|
|
case SCAN_CODE_BS:
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case BACK_BUTTON:
|
2016-01-01 17:51:53 +01:00
|
|
|
|
if (history.back()) {
|
|
|
|
|
strcpy(#URL, history.current());
|
2015-12-16 23:44:42 +01:00
|
|
|
|
OpenPage();
|
|
|
|
|
}
|
2015-08-10 17:08:16 +02:00
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case FORWARD_BUTTON:
|
2016-01-01 17:51:53 +01:00
|
|
|
|
if (history.forward()) {
|
|
|
|
|
strcpy(#URL, history.current());
|
2015-12-16 23:44:42 +01:00
|
|
|
|
OpenPage();
|
|
|
|
|
}
|
2015-08-10 17:08:16 +02:00
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case GOTOURL_BUTTON:
|
2015-08-26 21:22:20 +02:00
|
|
|
|
case SCAN_CODE_ENTER:
|
2016-11-20 12:10:10 +01:00
|
|
|
|
if (!strncmp(#editURL,"http:",5)) || (editURL[0]=='/')
|
|
|
|
|
|| (!strncmp(#editURL,"https:",6)) || (!strncmp(#editURL,"WebView:",8))
|
2015-08-26 21:22:20 +02:00
|
|
|
|
{
|
|
|
|
|
strcpy(#URL, #editURL);
|
|
|
|
|
}
|
2015-08-10 17:08:16 +02:00
|
|
|
|
else
|
2015-08-26 21:22:20 +02:00
|
|
|
|
{
|
2015-09-05 16:04:04 +02:00
|
|
|
|
strlcpy(#URL,"http://",7);
|
2015-08-26 21:22:20 +02:00
|
|
|
|
strcat(#URL, #editURL);
|
|
|
|
|
}
|
2015-08-10 17:08:16 +02:00
|
|
|
|
OpenPage();
|
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case 063: //F5
|
|
|
|
|
IF(address_box.flags & 0b10) return;
|
|
|
|
|
case REFRESH_BUTTON:
|
2015-08-10 17:59:20 +02:00
|
|
|
|
if (http_transfer > 0)
|
|
|
|
|
{
|
|
|
|
|
StopLoading();
|
|
|
|
|
Draw_Window();
|
|
|
|
|
}
|
|
|
|
|
else OpenPage();
|
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case SANDWICH_BUTTON:
|
2016-12-13 23:08:14 +01:00
|
|
|
|
EventShowPageMenu(Form.cwidth - 215, TOOLBAR_H-6);
|
2014-01-29 01:14:09 +01:00
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case VIEW_SOURCE:
|
2014-03-31 19:14:16 +02:00
|
|
|
|
WB1.list.first = 0;
|
2014-03-30 13:57:13 +02:00
|
|
|
|
ShowSource();
|
2015-08-27 01:45:56 +02:00
|
|
|
|
WB1.LoadInternalPage(bufpointer, bufsize);
|
2014-03-30 13:57:13 +02:00
|
|
|
|
break;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case EDIT_SOURCE:
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!strncmp(#URL,"http:",5))
|
2014-03-12 23:56:28 +01:00
|
|
|
|
{
|
2014-03-30 13:57:13 +02:00
|
|
|
|
WriteFile(bufsize, bufpointer, "/tmp0/1/WebView_tmp.htm");
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!EAX) RunProgram("/rd/1/tinypad", "/tmp0/1/WebView_tmp.htm");
|
2014-03-12 23:56:28 +01:00
|
|
|
|
}
|
2015-07-30 17:49:09 +02:00
|
|
|
|
else RunProgram("/rd/1/tinypad", #URL);
|
2013-12-27 01:33:12 +01:00
|
|
|
|
return;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
case FREE_IMG_CACHE:
|
|
|
|
|
ImgCache.Free();
|
|
|
|
|
notify(IMAGES_CACHE_CLEARED);
|
2015-08-23 12:12:13 +02:00
|
|
|
|
WB1.DrawPage();
|
2015-08-13 14:23:35 +02:00
|
|
|
|
return;
|
|
|
|
|
case VIEW_HISTORY:
|
|
|
|
|
strcpy(#URL, URL_SERVICE_HISTORY);
|
|
|
|
|
OpenPage();
|
|
|
|
|
return;
|
|
|
|
|
case DOWNLOAD_MANAGER:
|
|
|
|
|
if (!downloader_opened) {
|
2015-12-22 19:14:35 +01:00
|
|
|
|
downloader_edit = NULL;
|
2015-08-13 14:23:35 +02:00
|
|
|
|
CreateThread(#Downloader,#downloader_stak+4092);
|
|
|
|
|
}
|
2013-12-27 01:33:12 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-03-12 23:56:28 +01:00
|
|
|
|
void StopLoading()
|
|
|
|
|
{
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (http_transfer)
|
2014-03-15 11:34:28 +01:00
|
|
|
|
{
|
|
|
|
|
EAX = http_transfer;
|
|
|
|
|
EAX = EAX.http_msg.content_ptr; // get pointer to data
|
|
|
|
|
$push EAX // save it on the stack
|
|
|
|
|
http_free stdcall (http_transfer); // abort connection
|
|
|
|
|
$pop EAX
|
2015-07-30 17:49:09 +02:00
|
|
|
|
free(EAX); // free data
|
2014-03-15 11:34:28 +01:00
|
|
|
|
http_transfer=0;
|
|
|
|
|
bufsize = 0;
|
2015-07-30 17:49:09 +02:00
|
|
|
|
bufpointer = free(bufpointer);
|
2014-03-15 11:34:28 +01:00
|
|
|
|
}
|
2015-03-16 15:20:32 +01:00
|
|
|
|
wv_progress_bar.value = 0;
|
2016-11-20 20:34:39 +01:00
|
|
|
|
DrawEditBoxWebView();
|
2014-03-14 20:06:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetPageDefaults()
|
|
|
|
|
{
|
|
|
|
|
strcpy(#header, #version);
|
|
|
|
|
WB1.list.count = WB1.list.first = 0;
|
2015-08-10 09:09:10 +02:00
|
|
|
|
cur_encoding = CH_NULL;
|
2014-03-14 20:06:48 +01:00
|
|
|
|
if (o_bufpointer) o_bufpointer = free(o_bufpointer);
|
2014-03-12 23:56:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 13:30:42 +01:00
|
|
|
|
void OpenPage()
|
|
|
|
|
{
|
2014-03-12 23:56:28 +01:00
|
|
|
|
StopLoading();
|
2014-03-30 13:57:13 +02:00
|
|
|
|
souce_mode = false;
|
2013-12-27 13:30:42 +01:00
|
|
|
|
strcpy(#editURL, #URL);
|
2016-01-01 17:51:53 +01:00
|
|
|
|
history.add(#URL);
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!strncmp(#URL,"WebView:",8))
|
2014-03-23 23:49:49 +01:00
|
|
|
|
{
|
|
|
|
|
SetPageDefaults();
|
2015-08-19 14:54:01 +02:00
|
|
|
|
if (!strcmp(#URL, URL_SERVICE_HOME)) WB1.LoadInternalPage(#homepage, sizeof(homepage));
|
2015-07-30 17:49:09 +02:00
|
|
|
|
else if (!strcmp(#URL, URL_SERVICE_HISTORY)) ShowHistory();
|
2016-02-21 22:57:22 +01:00
|
|
|
|
DrawEditBoxWebView();
|
2014-03-23 23:49:49 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!strncmp(#URL,"http:",5))
|
2013-12-27 13:30:42 +01:00
|
|
|
|
{
|
2015-08-13 14:23:35 +02:00
|
|
|
|
img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, 131, 0);
|
2015-03-20 13:04:14 +01:00
|
|
|
|
http_get stdcall (#URL, 0, 0, #accept_language);
|
2014-03-12 23:56:28 +01:00
|
|
|
|
http_transfer = EAX;
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!http_transfer)
|
2014-03-15 11:23:06 +01:00
|
|
|
|
{
|
|
|
|
|
StopLoading();
|
|
|
|
|
bufsize = 0;
|
2015-07-30 17:49:09 +02:00
|
|
|
|
bufpointer = free(bufpointer);
|
2014-03-15 11:23:06 +01:00
|
|
|
|
ShowPage();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-12-27 13:30:42 +01:00
|
|
|
|
}
|
2014-03-12 23:56:28 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
file_size stdcall (#URL);
|
|
|
|
|
bufsize = EBX;
|
2014-03-15 16:16:08 +01:00
|
|
|
|
if (bufsize)
|
|
|
|
|
{
|
2015-07-30 17:49:09 +02:00
|
|
|
|
free(bufpointer);
|
|
|
|
|
bufpointer = malloc(bufsize);
|
2014-03-15 16:16:08 +01:00
|
|
|
|
SetPageDefaults();
|
2014-03-30 13:57:13 +02:00
|
|
|
|
ReadFile(0, bufsize, bufpointer, #URL);
|
2014-03-15 16:16:08 +01:00
|
|
|
|
}
|
2014-03-14 20:06:48 +01:00
|
|
|
|
ShowPage();
|
2014-03-12 23:56:28 +01:00
|
|
|
|
}
|
2013-12-27 13:30:42 +01:00
|
|
|
|
}
|
2013-12-27 12:15:17 +01:00
|
|
|
|
|
2016-02-21 22:57:22 +01:00
|
|
|
|
DrawEditBoxWebView()
|
2014-01-22 01:08:47 +01:00
|
|
|
|
{
|
2016-11-20 20:34:39 +01:00
|
|
|
|
DrawBar(address_box.left-2, address_box.top-2, address_box.width+3, 2, address_box.color);
|
|
|
|
|
DrawBar(address_box.left-2, address_box.top, 2, 22, address_box.color);
|
2014-03-30 13:57:13 +02:00
|
|
|
|
address_box.size = address_box.pos = address_box.shift = address_box.shift_old = strlen(#editURL);
|
|
|
|
|
address_box.offset = 0;
|
2014-01-22 01:08:47 +01:00
|
|
|
|
edit_box_draw stdcall(#address_box);
|
2016-11-20 20:34:39 +01:00
|
|
|
|
if (http_transfer > 0) EAX = 131; else EAX = 54;
|
2015-08-26 21:22:20 +02:00
|
|
|
|
img_draw stdcall(skin.image, address_box.left+address_box.width+1, address_box.top-3, 17, skin.h, EAX, 0);
|
2014-03-30 13:57:13 +02:00
|
|
|
|
}
|
2014-01-22 01:08:47 +01:00
|
|
|
|
|
2014-03-30 13:57:13 +02:00
|
|
|
|
|
|
|
|
|
void ShowPage()
|
|
|
|
|
{
|
2016-02-21 22:57:22 +01:00
|
|
|
|
DrawEditBoxWebView();
|
2016-12-04 19:51:23 +01:00
|
|
|
|
debugval("bufsize", bufsize);
|
2014-01-27 21:16:33 +01:00
|
|
|
|
if (!bufsize)
|
2014-01-22 01:08:47 +01:00
|
|
|
|
{
|
2015-08-27 01:45:56 +02:00
|
|
|
|
if (http_transfer) WB1.LoadInternalPage(#loading, sizeof(loading));
|
|
|
|
|
else WB1.LoadInternalPage(#page_not_found, sizeof(page_not_found));
|
2014-01-22 01:08:47 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
2015-08-23 21:59:44 +02:00
|
|
|
|
{
|
2015-08-23 12:12:13 +02:00
|
|
|
|
WB1.Prepare();
|
2015-08-23 21:59:44 +02:00
|
|
|
|
}
|
2014-01-22 01:08:47 +01:00
|
|
|
|
}
|
2013-12-27 12:15:17 +01:00
|
|
|
|
|
2015-03-01 22:36:17 +01:00
|
|
|
|
byte UrlExtIs(dword ext)
|
|
|
|
|
{
|
2015-07-30 17:49:09 +02:00
|
|
|
|
if (!strcmpi(#URL + strlen(#URL) - strlen(ext), ext)) return true;
|
|
|
|
|
return false;
|
2015-03-01 22:36:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-26 21:22:20 +02:00
|
|
|
|
int SetSkinColors()
|
|
|
|
|
{
|
|
|
|
|
dword image_data;
|
|
|
|
|
image_data = DSDWORD[skin.image+24];
|
|
|
|
|
col_bg = DSDWORD[image_data];
|
|
|
|
|
panel_color = DSDWORD[skin.w*4*4 + image_data];
|
|
|
|
|
border_color = DSDWORD[skin.w*4*7 + image_data];
|
|
|
|
|
wv_progress_bar.progress_color = DSDWORD[skin.w*4*10 + image_data];
|
|
|
|
|
$and col_bg, 0x00ffffff
|
|
|
|
|
$and panel_color, 0x00ffffff
|
|
|
|
|
$and border_color, 0x00ffffff
|
|
|
|
|
$and wv_progress_bar.progress_color, 0x00ffffff
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DrawProgress()
|
|
|
|
|
{
|
|
|
|
|
unsigned long btn;
|
|
|
|
|
if (http_transfer == 0) return;
|
|
|
|
|
if (wv_progress_bar.max) btn = address_box.width*wv_progress_bar.value/wv_progress_bar.max; else btn = 30;
|
2016-11-20 20:34:39 +01:00
|
|
|
|
DrawBar(address_box.left-2, address_box.top+20, btn, 2, wv_progress_bar.progress_color);
|
2015-08-26 21:22:20 +02:00
|
|
|
|
}
|
2015-08-19 14:48:31 +02:00
|
|
|
|
|
2016-12-21 11:56:06 +01:00
|
|
|
|
char anchor[256];
|
2015-08-27 01:55:33 +02:00
|
|
|
|
void ClickLink()
|
|
|
|
|
{
|
|
|
|
|
if (http_transfer > 0)
|
|
|
|
|
{
|
|
|
|
|
StopLoading();
|
2016-01-01 17:51:53 +01:00
|
|
|
|
history.back();
|
2015-08-27 01:55:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
strcpy(#URL, PageLinks.GetURL(PageLinks.active));
|
|
|
|
|
//#1
|
|
|
|
|
if (URL[0] == '#')
|
|
|
|
|
{
|
2016-11-20 12:10:10 +01:00
|
|
|
|
if (URL[1] == NULL) {
|
|
|
|
|
WB1.list.first = 0;
|
|
|
|
|
strcpy(#URL, history.current());
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
|
|
|
|
|
strcpy(#URL, history.current());
|
|
|
|
|
}
|
|
|
|
|
ShowPage();
|
2015-08-27 01:55:33 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//liner.ru#1
|
2016-11-20 12:10:10 +01:00
|
|
|
|
if (strrchr(#URL, '#')!=0)
|
2015-08-27 01:55:33 +02:00
|
|
|
|
{
|
2016-12-21 11:56:06 +01:00
|
|
|
|
strlcpy(#anchor, #URL+strrchr(#URL, '#'), sizeof(anchor));
|
2015-08-27 01:55:33 +02:00
|
|
|
|
URL[strrchr(#URL, '#')-1] = 0x00;
|
|
|
|
|
}
|
2016-11-20 12:10:10 +01:00
|
|
|
|
|
2015-08-27 01:55:33 +02:00
|
|
|
|
if (!strncmp(#URL,"mailto:", 7))
|
|
|
|
|
{
|
|
|
|
|
notify(#URL);
|
2016-01-01 17:51:53 +01:00
|
|
|
|
strcpy(#editURL, history.current());
|
|
|
|
|
strcpy(#URL, history.current());
|
2015-08-27 01:55:33 +02:00
|
|
|
|
return;
|
|
|
|
|
}
|
2016-11-20 12:10:10 +01:00
|
|
|
|
|
2016-11-20 20:34:39 +01:00
|
|
|
|
if (!strncmp(#URL,"https://",8))
|
2016-11-20 12:10:10 +01:00
|
|
|
|
{
|
2016-12-11 23:58:11 +01:00
|
|
|
|
ShowErrorMessageThatHttpsIsNotSupportedYet();
|
2016-11-20 12:10:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GetAbsoluteURL(#URL);
|
|
|
|
|
|
|
|
|
|
if (strncmp(#URL,"http://",7)!=0)
|
|
|
|
|
{
|
|
|
|
|
if (UrlExtIs(".htm")!=true) && (UrlExtIs(".html")!=true)
|
|
|
|
|
{
|
|
|
|
|
RunProgram("/sys/@open", #URL);
|
|
|
|
|
strcpy(#editURL, history.current());
|
|
|
|
|
strcpy(#URL, history.current());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (UrlExtIs(".png")==true) || (UrlExtIs(".gif")==true) || (UrlExtIs(".jpg")==true)
|
2016-12-11 23:58:11 +01:00
|
|
|
|
|| (UrlExtIs(".zip")==true) || (UrlExtIs(".kex")==true) || (UrlExtIs(".pdf")==true)
|
|
|
|
|
|| (UrlExtIs(".7z")==true) {
|
2016-11-20 12:10:10 +01:00
|
|
|
|
strcpy(#downloader_edit, #URL);
|
|
|
|
|
CreateThread(#Downloader,#downloader_stak+4092);
|
|
|
|
|
strcpy(#editURL, history.current());
|
|
|
|
|
strcpy(#URL, history.current());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-08-27 01:55:33 +02:00
|
|
|
|
OpenPage();
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-13 23:08:14 +01:00
|
|
|
|
void EventShowPageMenu(dword _left, _top)
|
2016-12-04 17:50:34 +01:00
|
|
|
|
{
|
|
|
|
|
menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 220, #rmb_menu, VIEW_SOURCE);
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-13 23:08:14 +01:00
|
|
|
|
void EventShowLinkMenu(dword _left, _top)
|
|
|
|
|
{
|
|
|
|
|
menu.show(Form.left+_left-6,Form.top+_top+skin_height+3, 180, #link_menu, COPY_LINK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-12-11 23:58:11 +01:00
|
|
|
|
void ShowErrorMessageThatHttpsIsNotSupportedYet()
|
|
|
|
|
{
|
|
|
|
|
notify("'HTTPS protocol is not supported yet' -E");
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-13 23:08:14 +01:00
|
|
|
|
DrawStatusBar(dword _status_text)
|
|
|
|
|
{
|
|
|
|
|
status_text.start_x = wv_progress_bar.left + wv_progress_bar.width + 10;
|
|
|
|
|
status_text.start_y = Form.cheight - STATUSBAR_H + 3;
|
|
|
|
|
status_text.area_size_x = Form.cwidth - status_text.start_x -3;
|
|
|
|
|
DrawBar(status_text.start_x, status_text.start_y, status_text.area_size_x, 9, col_bg);
|
|
|
|
|
status_text.text_pointer = _status_text;
|
|
|
|
|
PathShow_prepare stdcall(#status_text);
|
|
|
|
|
PathShow_draw stdcall(#status_text);
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-30 17:49:09 +02:00
|
|
|
|
stop:
|