Subversion Repositories Kolibri OS

Rev

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

Rev 6978 Rev 6985
Line 28... Line 28...
28
#include "..\lib\patterns\http_downloader.h"
28
#include "..\lib\patterns\http_downloader.h"
Line 29... Line 29...
29
 
29
 
Line 30... Line 30...
30
char homepage[] = FROM "html\\homepage.htm""\0";
30
char homepage[] = FROM "html\\homepage.htm""\0";
31
 
31
 
32
#ifdef LANG_RUS
32
#ifdef LANG_RUS
33
char version[]="’¥ªáâ®¢ë© ¡à ã§¥à 1.61";
33
char version[]="’¥ªáâ®¢ë© ¡à ã§¥à 1.62";
34
?define IMAGES_CACHE_CLEARED "Šíè ª à⨭®ª ®ç¨é¥­"
34
?define IMAGES_CACHE_CLEARED "Šíè ª à⨭®ª ®ç¨é¥­"
35
?define T_LAST_SLIDE "â® ¯®á«¥¤­¨© á« ©¤"
35
?define T_LAST_SLIDE "â® ¯®á«¥¤­¨© á« ©¤"
36
char loading[] = "‡ £à㧪  áâà ­¨æë...
";
36
char loading[] = "‡ £à㧪  áâà ­¨æë...
";
Line 41... Line 41...
41
¥¤ ªâ¨à®¢ âì ¨á室­¨ª
41
¥¤ ªâ¨à®¢ âì ¨á室­¨ª
42
ˆáâ®à¨ï
42
ˆáâ®à¨ï
43
Žç¨áâ¨âì ªíè ª à⨭®ª
43
Žç¨áâ¨âì ªíè ª à⨭®ª
44
Œ¥­¥¤¦¥à § £à㧮ª";
44
Œ¥­¥¤¦¥à § £à㧮ª";
45
#else
45
#else
46
char version[]="Text-based Browser 1.61";
46
char version[]="Text-based Browser 1.62";
47
?define IMAGES_CACHE_CLEARED "Images cache cleared"
47
?define IMAGES_CACHE_CLEARED "Images cache cleared"
48
?define T_LAST_SLIDE "This slide is the last"
48
?define T_LAST_SLIDE "This slide is the last"
49
char loading[] = "Loading...
";
49
char loading[] = "Loading...
";
50
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
50
char page_not_found[] = FROM "html\\page_not_found_en.htm""\0";
51
char accept_language[]= "Accept-Language: en\n";
51
char accept_language[]= "Accept-Language: en\n";
Line 213... Line 213...
213
									$stosb;
213
									$stosb;
214
								} while (AL != 0) && (AL != 13) && (AL != 10);
214
								} while (AL != 0) && (AL != 13) && (AL != 10);
215
								DSBYTE[EDI-1]='\0';
215
								DSBYTE[EDI-1]='\0';
216
								if (!strncmp(#URL,"https://",8))
216
								if (!strncmp(#URL,"https://",8))
217
								{
217
								{
-
 
218
									history.back();
-
 
219
									strcpy(#editURL, history.current());
-
 
220
									strcpy(#URL, history.current());
218
									ShowErrorMessageThatHttpsIsNotSupportedYet();
221
									ShowErrorMessageThatHttpsIsNotSupportedYet();
219
									StopLoading();
222
									StopLoading();
220
									break;	
223
									break;	
221
								}
224
								}
222
							}
225
							}
Line 542... Line 545...
542
	}
545
	}
Line 543... Line 546...
543
 
546
 
544
	if (!strncmp(#URL,"https://",8))
547
	if (!strncmp(#URL,"https://",8))
545
	{
548
	{
-
 
549
		ShowErrorMessageThatHttpsIsNotSupportedYet();
-
 
550
		strcpy(#editURL, history.current());
-
 
551
		strcpy(#URL, history.current());
546
		ShowErrorMessageThatHttpsIsNotSupportedYet();
552
		return;
Line 547... Line 553...
547
	}
553
	}
Line 548... Line 554...
548
	
554