Subversion Repositories Kolibri OS

Rev

Rev 8396 | Go to most recent revision | 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
 
7750 leency 23
	strcat(history_pointer, "
Cached images
");
8016 leency 24
	for (i=1; i
7750 leency 25
	{
8016 leency 26
		strcat(history_pointer, cache.url.get(i));
8396 leency 27
		strcat(history_pointer, " 
");
7750 leency 30
	}
8016 leency 31
 
7750 leency 32
	LoadInternalPage(history_pointer, strlen(history_pointer));
8484 leency 33
	free(history_pointer);
34
}