Subversion Repositories Kolibri OS

Rev

Rev 8484 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8484 Rev 8996
1
#ifdef LANG_RUS
1
#ifdef LANG_RUS
2
#define HISTORY_HEADER "ˆáâ®à¨ï®á¥é¥­­ë¥ áâà ­¨æë
"
2
#define HISTORY_HEADER "ˆáâ®à¨ï®á¥é¥­­ë¥ áâà ­¨æë
"
3
#else
3
#else
4
#define HISTORY_HEADER "HistoryVisited pages
"
4
#define HISTORY_HEADER "HistoryVisited pages
"
5
#endif
5
#endif
6
 
6
 
7
 
7
 
8
ShowHistory()
8
ShowHistory()
9
{
9
{
10
	int i;
10
	int i;
11
	dword history_pointer = malloc(history.items.data_size+256);
11
	dword history_pointer = malloc(history.items.data_size+256);
12
	strcat(history_pointer, HISTORY_HEADER);
12
	strcat(history_pointer, HISTORY_HEADER);
13
 
13
 
14
	for (i=0; i
14
	for (i=0; i
15
	{
15
	{
16
		strcat(history_pointer, "
17
		strcat(history_pointer, history.items.get(i));
17
		strcat(history_pointer, history.items.get(i));
18
		strcat(history_pointer, "'>");
18
		strcat(history_pointer, "'>");
19
		strcat(history_pointer, history.items.get(i));
19
		strcat(history_pointer, history.items.get(i));
20
		strcat(history_pointer, "
");
20
		strcat(history_pointer, "
");
21
	}
21
	}
-
 
22
 
22
 
23
	/*
23
	strcat(history_pointer, "
Cached images
");
24
	strcat(history_pointer, "
Cached images
");
24
	for (i=1; i
25
	for (i=1; i
25
	{
26
	{
26
		strcat(history_pointer, cache.url.get(i));
27
		strcat(history_pointer, cache.url.get(i));
27
		strcat(history_pointer, " 
28
		strcat(history_pointer, cache.url.get(i));
29
		strcat(history_pointer, cache.url.get(i));
29
		strcat(history_pointer, "'>
");
30
		strcat(history_pointer, "'>
");
30
	}
31
	}
-
 
32
	*/
31
 
33
 
32
	LoadInternalPage(history_pointer, strlen(history_pointer));
34
	LoadInternalPage(history_pointer, strlen(history_pointer));
33
	free(history_pointer);
35
	free(history_pointer);
34
}





36
}