Subversion Repositories Kolibri OS

Rev

Rev 7742 | Rev 7750 | 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
2
#define HISTORY_HEADER "
3
4
	История
5
6
7
	

История

8
	
9
	Посещенные страницы
10
"
11
#else
12
#define HISTORY_HEADER "
13
14
	History
15
16
17
	

History

18
	
19
	Visited pages
20
"
21
#endif
22
 
23
 
4636 leency 24
ShowHistory()
25
{
26
		int i;
27
		static int history_pointer;
4718 leency 28
		int t;
4636 leency 29
 
30
		free(history_pointer);
6021 leency 31
		history_pointer = malloc(history.items.data_size+256);
7743 leency 32
		strcat(history_pointer, HISTORY_HEADER);
6045 leency 33
		for (i=0; i
4636 leency 34
		{
7743 leency 35
			strcat(history_pointer, "\t");
6021 leency 38
			strcat(history_pointer, history.items.get(i));
4636 leency 39
			strcat(history_pointer, "
");
40
		}
7743 leency 41
		/*
7742 leency 42
		strcat(history_pointer, "
Cached images
");
4636 leency 43
		for (i=1; i
44
		{
7742 leency 45
			strcat(history_pointer, "");
48
			strcat(history_pointer, #pics[i].path);
49
			strcat(history_pointer, "
");
7743 leency 50
 
51
			// strcat(history_pointer, "
");
54
			// strcat(history_pointer, #pics[i].path);
4636 leency 55
		}
7743 leency 56
		*/
4692 leency 57
		strcat(history_pointer, "");
5747 leency 58
		WB1.LoadInternalPage(history_pointer, strlen(history_pointer));
4636 leency 59
}