Subversion Repositories Kolibri OS

Rev

Rev 7756 | Rev 8330 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7756 Rev 8016
Line 28... Line 28...
28
	int t;
28
	int t;
Line 29... Line 29...
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, #pics[i].path);
46
		strcat(history_pointer, cache.url.get(i));
47
		strcat(history_pointer, "'>");
47
		strcat(history_pointer, "'>");
48
		strcat(history_pointer, #pics[i].path);
48
		strcat(history_pointer, cache.url.get(i));
Line 49... Line 49...
49
		strcat(history_pointer, "
");
49
		strcat(history_pointer, "
");
50
		
50
		
51
		// strcat(history_pointer, "
52
		// strcat(history_pointer, #pics[i].path);
52
		// strcat(history_pointer, #pics[i].path);
53
		// strcat(history_pointer, "'>
");
53
		// strcat(history_pointer, "'>
");
54
		// strcat(history_pointer, #pics[i].path);
54
		// strcat(history_pointer, #pics[i].path);
55
	}
55
	}
56
	*/
56
 
57
	strcat(history_pointer, "");
57
	strcat(history_pointer, "");
58
	LoadInternalPage(history_pointer, strlen(history_pointer));
58
	LoadInternalPage(history_pointer, strlen(history_pointer));