Subversion Repositories Kolibri OS

Rev

Rev 8016 | Rev 8396 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8016 Rev 8330
1
#ifdef LANG_RUS
1
#ifdef LANG_RUS
2
#define HISTORY_HEADER "
2
#define HISTORY_HEADER "
3
 
3
 
4
	ˆáâ®à¨ï
4
	ˆáâ®à¨ï
5
 
5
 
6
 
6
 
7
	

ˆáâ®à¨ï

7
	

ˆáâ®à¨ï

8
	
8
	
9
	®á¥é¥­­ë¥ áâà ­¨æë
9
	®á¥é¥­­ë¥ áâà ­¨æë
10
"
10
"
11
#else
11
#else
12
#define HISTORY_HEADER "
12
#define HISTORY_HEADER "
13
 
13
 
14
	History
14
	History
15
 
15
 
16
 
16
 
17
	

History

17
	

History

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








53
}