Subversion Repositories Kolibri OS

Rev

Rev 8484 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7743 leency 1
#ifdef LANG_RUS
8484 leency 2
#define HISTORY_HEADER "ИсторияПосещенные страницы
"
7743 leency 3
#else
8484 leency 4
#define HISTORY_HEADER "HistoryVisited pages
"
7743 leency 5
#endif
6
 
7
 
4636 leency 8
ShowHistory()
9
{
7750 leency 10
	int i;
8484 leency 11
	dword history_pointer = malloc(history.items.data_size+256);
7750 leency 12
	strcat(history_pointer, HISTORY_HEADER);
8484 leency 13
 
8016 leency 14
	for (i=0; i
7750 leency 15
	{
8484 leency 16
		strcat(history_pointer, "");
19
		strcat(history_pointer, history.items.get(i));
20
		strcat(history_pointer, "
");
21
	}
8016 leency 22
 
8996 leency 23
	/*
7750 leency 24
	strcat(history_pointer, "
Cached images
");
8016 leency 25
	for (i=1; i
7750 leency 26
	{
8016 leency 27
		strcat(history_pointer, cache.url.get(i));
8396 leency 28
		strcat(history_pointer, " 
");
7750 leency 31
	}
8996 leency 32
	*/
8016 leency 33
 
7750 leency 34
	LoadInternalPage(history_pointer, strlen(history_pointer));
8484 leency 35
	free(history_pointer);
36
}