author | harlekin <harlekin> | 2002-03-21 13:42:18 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-03-21 13:42:18 (UTC) |
commit | c4a117f0d44bb283f516ad3ad7c4df4bdec79c34 (patch) (unidiff) | |
tree | 49fe92f91861525aa648206663fe4c2c9c66aca6 | |
parent | 20fa51b3d38725ca151364a14d8005b4e6c9b415 (diff) | |
download | opie-c4a117f0d44bb283f516ad3ad7c4df4bdec79c34.zip opie-c4a117f0d44bb283f516ad3ad7c4df4bdec79c34.tar.gz opie-c4a117f0d44bb283f516ad3ad7c4df4bdec79c34.tar.bz2 |
THe files are not longer needed, today uses tododb now
-rw-r--r-- | core/pim/today/TodoItem.cpp | 44 | ||||
-rw-r--r-- | core/pim/today/TodoItem.h | 40 | ||||
-rw-r--r-- | core/pim/today/changelog | 5 | ||||
-rw-r--r-- | core/pim/today/minidom.c | 446 | ||||
-rw-r--r-- | core/pim/today/minidom.h | 57 | ||||
-rw-r--r-- | core/pim/today/opie-today.control | 2 |
6 files changed, 6 insertions, 588 deletions
diff --git a/core/pim/today/TodoItem.cpp b/core/pim/today/TodoItem.cpp deleted file mode 100644 index 5654687..0000000 --- a/core/pim/today/TodoItem.cpp +++ b/dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | /* | ||
2 | * TodoItem.h | ||
3 | * | ||
4 | * --------------------- | ||
5 | * | ||
6 | * begin : Sun 10 17:20:00 CEST 2002 | ||
7 | * copyright : (c) 2002 by Maximilian Reiß | ||
8 | * email : max.reiss@gmx.de | ||
9 | * | ||
10 | */ | ||
11 | /*************************************************************************** | ||
12 | * * | ||
13 | * This program is free software; you can redistribute it and/or modify * | ||
14 | * it under the terms of the GNU General Public License as published by * | ||
15 | * the Free Software Foundation; either version 2 of the License, or * | ||
16 | * (at your option) any later version. * | ||
17 | * * | ||
18 | ***************************************************************************/ | ||
19 | |||
20 | |||
21 | #include "TodoItem.h" | ||
22 | |||
23 | TodoItem::TodoItem(const char *description, int completed, int priority) | ||
24 | { | ||
25 | m_description = description; | ||
26 | m_completed = completed; | ||
27 | m_priority = priority; | ||
28 | } | ||
29 | |||
30 | QString TodoItem::getDescription() | ||
31 | { | ||
32 | return m_description; | ||
33 | } | ||
34 | |||
35 | bool TodoItem::getCompleted() | ||
36 | { | ||
37 | return (m_completed == 1); | ||
38 | } | ||
39 | |||
40 | int TodoItem::getPriority() | ||
41 | { | ||
42 | return m_priority; | ||
43 | } | ||
44 | |||
diff --git a/core/pim/today/TodoItem.h b/core/pim/today/TodoItem.h deleted file mode 100644 index abdb215..0000000 --- a/core/pim/today/TodoItem.h +++ b/dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | /* | ||
2 | * TodoItem.h | ||
3 | * | ||
4 | * --------------------- | ||
5 | * | ||
6 | * begin : Sun 10 17:20:00 CEST 2002 | ||
7 | * copyright : (c) 2002 by Maximilian Reiß | ||
8 | * email : max.reiss@gmx.de | ||
9 | * | ||
10 | */ | ||
11 | /*************************************************************************** | ||
12 | * * | ||
13 | * This program is free software; you can redistribute it and/or modify * | ||
14 | * it under the terms of the GNU General Public License as published by * | ||
15 | * the Free Software Foundation; either version 2 of the License, or * | ||
16 | * (at your option) any later version. * | ||
17 | * * | ||
18 | ***************************************************************************/ | ||
19 | |||
20 | |||
21 | #ifndef TODO_ITEM_H | ||
22 | #define TODO_ITEM_H | ||
23 | |||
24 | #include <qstring.h> | ||
25 | |||
26 | class TodoItem | ||
27 | { | ||
28 | public: | ||
29 | TodoItem(const char *description, int completed, int priority); | ||
30 | QString getDescription(); | ||
31 | bool getCompleted(); | ||
32 | int getPriority(); | ||
33 | private: | ||
34 | QString m_description; | ||
35 | int m_priority; | ||
36 | int m_completed; | ||
37 | }; | ||
38 | |||
39 | #endif | ||
40 | |||
diff --git a/core/pim/today/changelog b/core/pim/today/changelog index 8ccff3c..c5d20ce 100644 --- a/core/pim/today/changelog +++ b/core/pim/today/changelog | |||
@@ -1,71 +1,76 @@ | |||
1 | 0.3.1 | ||
2 | |||
3 | |||
4 | * bugfixes in calendar part, now location and note are working again. | ||
5 | |||
1 | 0.3.0 | 6 | 0.3.0 |
2 | 7 | ||
3 | * today uses now tododb from libopie. So major changes in the todo part: | 8 | * today uses now tododb from libopie. So major changes in the todo part: |
4 | - overdue items on top | 9 | - overdue items on top |
5 | - then sorted by date, then by priority | 10 | - then sorted by date, then by priority |
6 | * some cleanups | 11 | * some cleanups |
7 | * speed optimisations | 12 | * speed optimisations |
8 | 13 | ||
9 | 0.2.9 | 14 | 0.2.9 |
10 | 15 | ||
11 | * Many bugfixes. | 16 | * Many bugfixes. |
12 | * Today now apparently sorts the dates _allways_ right, i would assume it | 17 | * Today now apparently sorts the dates _allways_ right, i would assume it |
13 | to be a qt bug | 18 | to be a qt bug |
14 | 19 | ||
15 | 0.2.8 | 20 | 0.2.8 |
16 | 21 | ||
17 | * Appointments are now clickable (connection to datebook still missing) | 22 | * Appointments are now clickable (connection to datebook still missing) |
18 | * autostart support (opie only) | 23 | * autostart support (opie only) |
19 | 24 | ||
20 | 0.2.7 | 25 | 0.2.7 |
21 | 26 | ||
22 | * check if todolist.xml was changed before parsing it | 27 | * check if todolist.xml was changed before parsing it |
23 | * check only every 30 sec for changes. | 28 | * check only every 30 sec for changes. |
24 | * some visual stuff | 29 | * some visual stuff |
25 | * as usual many little improvements .-) | 30 | * as usual many little improvements .-) |
26 | 31 | ||
27 | 0.2.6 | 32 | 0.2.6 |
28 | 33 | ||
29 | * added scrollbars to dates and todo | 34 | * added scrollbars to dates and todo |
30 | * all day detection | 35 | * all day detection |
31 | * some smaller bugfixes | 36 | * some smaller bugfixes |
32 | 37 | ||
33 | 0.2.5 | 38 | 0.2.5 |
34 | 39 | ||
35 | * some other minor fixes regarding autoupdate | 40 | * some other minor fixes regarding autoupdate |
36 | * fixed segfault with todolist > 7 entries | 41 | * fixed segfault with todolist > 7 entries |
37 | * fixed the "ugly grey border around buttons" issue | 42 | * fixed the "ugly grey border around buttons" issue |
38 | * fixed the "empty calendar field" "bug" | 43 | * fixed the "empty calendar field" "bug" |
39 | * shown only later appointments as option | 44 | * shown only later appointments as option |
40 | 45 | ||
41 | 46 | ||
42 | 0.2.4 | 47 | 0.2.4 |
43 | 48 | ||
44 | * added support for email | 49 | * added support for email |
45 | * autoupdates after 1 min | 50 | * autoupdates after 1 min |
46 | * QCopEnvelope instead of system() | 51 | * QCopEnvelope instead of system() |
47 | * starting to use qvbox in gui | 52 | * starting to use qvbox in gui |
48 | 53 | ||
49 | 54 | ||
50 | 0.2.3 | 55 | 0.2.3 |
51 | 56 | ||
52 | * the 4 am release | 57 | * the 4 am release |
53 | * several bugfixes | 58 | * several bugfixes |
54 | 59 | ||
55 | 60 | ||
56 | 0.2.2 | 61 | 0.2.2 |
57 | 62 | ||
58 | * started working on calling other apps | 63 | * started working on calling other apps |
59 | * and finished it | 64 | * and finished it |
60 | 65 | ||
61 | 0.2.1 | 66 | 0.2.1 |
62 | 67 | ||
63 | * images no more inline | 68 | * images no more inline |
64 | * config dialog | 69 | * config dialog |
65 | 70 | ||
66 | 0.1.1 | 71 | 0.1.1 |
67 | 72 | ||
68 | * started changelog. | 73 | * started changelog. |
69 | * fixed segfault on empty/nonexistant todolist.xml | 74 | * fixed segfault on empty/nonexistant todolist.xml |
70 | * better handling for file location | 75 | * better handling for file location |
71 | 76 | ||
diff --git a/core/pim/today/minidom.c b/core/pim/today/minidom.c deleted file mode 100644 index 4155f48..0000000 --- a/core/pim/today/minidom.c +++ b/dev/null | |||
@@ -1,446 +0,0 @@ | |||
1 | /* | ||
2 | * The GGZ Gaming Zone Metaserver Project | ||
3 | * Copyright (C) 2001 Josef Spillner, dr_maux@users.sourceforge.net | ||
4 | * Published under GNU GPL conditions. | ||
5 | */ | ||
6 | |||
7 | #include <stdio.h> | ||
8 | #include <string.h> | ||
9 | #include <stdlib.h> | ||
10 | #include "minidom.h" | ||
11 | |||
12 | /* Remove all line breaks, spaces, tabs, and check/remove XML header */ | ||
13 | char *minidom_cleanstream(const char *stream) | ||
14 | { | ||
15 | static char *cs = NULL; | ||
16 | unsigned int i, j; | ||
17 | int inside; | ||
18 | int spaceprotect; | ||
19 | int spacesonly; | ||
20 | |||
21 | if(!stream) return NULL; | ||
22 | if(cs) | ||
23 | { | ||
24 | free(cs); | ||
25 | cs = NULL; | ||
26 | } | ||
27 | cs = (char*)malloc(strlen(stream) + 1); | ||
28 | |||
29 | j = 0; | ||
30 | inside = 0; | ||
31 | spaceprotect = 0; | ||
32 | spacesonly = 0; | ||
33 | for(i = 0; i < strlen(stream); i++) | ||
34 | { | ||
35 | if(stream[i] == '\t') continue; | ||
36 | if(stream[i] == '\n') | ||
37 | { | ||
38 | if(inside) | ||
39 | { | ||
40 | cs[j] = ' '; | ||
41 | j++; | ||
42 | } | ||
43 | continue; | ||
44 | } | ||
45 | if((!inside) && (!spaceprotect) && (stream[i] == ' ')) continue; | ||
46 | if((stream[i] != ' ') && (stream[i] != '<') && (spacesonly)) spacesonly = 0; | ||
47 | if(stream[i] == '<') | ||
48 | { | ||
49 | if(spacesonly) j = spacesonly; | ||
50 | spacesonly = 0; | ||
51 | inside = 1; | ||
52 | if(stream[i + 1] == '?') inside = 2; | ||
53 | spaceprotect = 0; | ||
54 | if(stream[i + 1] == '/') spaceprotect = -1; | ||
55 | } | ||
56 | if(inside != 2) | ||
57 | { | ||
58 | cs[j] = stream[i]; | ||
59 | j++; | ||
60 | } | ||
61 | if(stream[i] == '>') | ||
62 | { | ||
63 | inside = 0; | ||
64 | spaceprotect++; /* 1 on opening tag, 0 on closing tag */ | ||
65 | if(stream[i - 1] == '/') spaceprotect = 0; | ||
66 | spacesonly = j; | ||
67 | } | ||
68 | } | ||
69 | cs[j] = 0; | ||
70 | |||
71 | /*printf("DEBUG: cleanstream: return %s\n", cs);*/ | ||
72 | return cs; | ||
73 | } | ||
74 | |||
75 | /* Return position of c or -1 if not found */ | ||
76 | int strpos(const char *s, char c) | ||
77 | { | ||
78 | unsigned int i; | ||
79 | |||
80 | if(!s) return -1; | ||
81 | for(i = 0; i < strlen(s); i++) | ||
82 | if(s[i] == c) return i; | ||
83 | return -1; | ||
84 | } | ||
85 | |||
86 | /* Add a complete tag to an element, return the new child */ | ||
87 | ELE *minidom_makechild(ELE *parent, char *tag) | ||
88 | { | ||
89 | char *token; | ||
90 | int i, j, k, l, len, size, count; | ||
91 | ELE *ele; | ||
92 | ATT *att; | ||
93 | int pos; | ||
94 | |||
95 | if(!tag) return parent; | ||
96 | |||
97 | ele = (ELE*)malloc(sizeof(ELE)); | ||
98 | ele->parent = parent; | ||
99 | ele->name = NULL; | ||
100 | ele->value = NULL; | ||
101 | ele->at = NULL; | ||
102 | ele->el = NULL; | ||
103 | ele->elnum = 0; | ||
104 | ele->atnum = 0; | ||
105 | |||
106 | if(parent) | ||
107 | { | ||
108 | parent->elnum++; | ||
109 | parent->el = (ELE**)realloc(parent->el, (parent->elnum + 1) * sizeof(ELE*)); | ||
110 | parent->el[parent->elnum - 1] = ele; | ||
111 | parent->el[parent->elnum] = NULL; | ||
112 | } | ||
113 | |||
114 | /*printf("TAG: %s\n", tag);*/ | ||
115 | i = 0; | ||
116 | k = 0; | ||
117 | l = 0; | ||
118 | count = 0; | ||
119 | token = strdup(tag); | ||
120 | len = strlen(tag); | ||
121 | for(j = 0; j < len; j++) | ||
122 | { | ||
123 | if(tag[j] == '\"') k++; | ||
124 | if(tag[j] == '\'') k++; | ||
125 | if(tag[j] == '=') l++; | ||
126 | if(((tag[j] == ' ') && ((k == 2) || (l == 0))) || (j == len - 1)) | ||
127 | { | ||
128 | size = j - i; | ||
129 | if(j == len - 1) size++; | ||
130 | strncpy(token, tag + i, size); | ||
131 | token[size] = 0; | ||
132 | /*printf("ATTRIBUTE: %s\n", token);*/ | ||
133 | if(count == 0) | ||
134 | { | ||
135 | /* name */ | ||
136 | /*printf(" ** %s\n", token);*/ | ||
137 | ele->name = (char*)malloc(strlen(token) + 1); | ||
138 | strcpy(ele->name, token); | ||
139 | } | ||
140 | else | ||
141 | { | ||
142 | att = (ATT*)malloc(sizeof(ATT)); | ||
143 | pos = strpos(token, '='); | ||
144 | if(pos == -1) | ||
145 | { | ||
146 | att->name = strdup(token); | ||
147 | att->value = NULL; | ||
148 | } | ||
149 | else | ||
150 | { | ||
151 | att->name = (char*)malloc(pos + 1); | ||
152 | att->value = (char*)malloc(strlen(token) - pos + 1); | ||
153 | memcpy(att->name, token, pos); | ||
154 | memcpy(att->value, token + pos + 1 + 1, strlen(token) - pos - 1 - 2); /* exclude "" marks */ | ||
155 | att->name[pos] = 0; | ||
156 | att->value[strlen(token) - pos - 1 - 2] = 0; | ||
157 | } | ||
158 | ele->atnum++; | ||
159 | ele->at = (ATT**)realloc(ele->at, (ele->atnum + 1) * sizeof(ATT*)); | ||
160 | ele->at[ele->atnum - 1] = att; | ||
161 | ele->at[ele->atnum] = NULL; | ||
162 | } | ||
163 | i = j + 1; | ||
164 | k = 0; | ||
165 | l = 0; | ||
166 | count++; | ||
167 | } | ||
168 | } | ||
169 | free(token); | ||
170 | |||
171 | return ele; | ||
172 | } | ||
173 | |||
174 | /* Parses a stream to add its contents to a DOM */ | ||
175 | DOM *minidom_parse(const char *stream) | ||
176 | { | ||
177 | DOM *dom; | ||
178 | char *cs; | ||
179 | unsigned int i; | ||
180 | int mark, lastmark; | ||
181 | char *token; | ||
182 | int error = 0; | ||
183 | ELE *ele, *cp; /* root node and current pointer */ | ||
184 | int endtag; | ||
185 | |||
186 | if(!stream) return NULL; | ||
187 | cs = minidom_cleanstream(stream); | ||
188 | |||
189 | dom = (DOM*)malloc(sizeof(DOM)); | ||
190 | dom->processed = 0; | ||
191 | dom->valid = 0; | ||
192 | dom->el = NULL; | ||
193 | |||
194 | /*ele = (ELE*)malloc(sizeof(ELE));*/ /* memory loss! */ | ||
195 | /*ele->parent = NULL; | ||
196 | ele->name = NULL; | ||
197 | ele->value = NULL; | ||
198 | ele->el = NULL; | ||
199 | ele->at = NULL; | ||
200 | ele->elnum = 0;*/ | ||
201 | ele = NULL; | ||
202 | cp = NULL; | ||
203 | token = NULL; | ||
204 | mark = -1; | ||
205 | error = 0; | ||
206 | lastmark = 0; | ||
207 | endtag = 0; | ||
208 | for(i = 0; i < strlen(cs); i++) | ||
209 | { | ||
210 | if(cs[i] == '<') | ||
211 | { | ||
212 | if(mark == -1) mark = i + 1; | ||
213 | else error = 1; | ||
214 | if((int)i != lastmark) | ||
215 | { | ||
216 | if(token) free(token); | ||
217 | token = (char*)malloc(i - lastmark + 1); | ||
218 | memcpy(token, cs + lastmark, i - lastmark); | ||
219 | token[i - lastmark] = 0; | ||
220 | /*printf(" --> content: %s\n", token);*/ | ||
221 | cp->value = (char*)malloc(strlen(token) + 1); | ||
222 | strcpy(cp->value, token); | ||
223 | } | ||
224 | } | ||
225 | if(cs[i] == '>') | ||
226 | { | ||
227 | if(mark != -1) | ||
228 | { | ||
229 | if(token) free(token); | ||
230 | token = (char*)malloc(i - mark + 1); | ||
231 | memcpy(token, cs + mark, i - mark); | ||
232 | token[i - mark] = 0; | ||
233 | /*printf("--> token: %s\n", token);*/ | ||
234 | if((token[0] == '/') && (cp)) cp = cp->parent; | ||
235 | else | ||
236 | { | ||
237 | if(token[i - mark - 1] == '/') | ||
238 | { | ||
239 | token[i - mark - 1] = 0; | ||
240 | /*cp = cp->parent;*/ | ||
241 | endtag = 1; | ||
242 | } | ||
243 | /*printf("INSERT AT: %i\n", cp);*/ | ||
244 | cp = minidom_makechild(cp, token); | ||
245 | if((cp) && (!ele)) ele = cp; | ||
246 | /*if(cp) cp = cp->parent;*/ /* QUICK HACK?! */ | ||
247 | if(endtag) | ||
248 | { | ||
249 | if(cp) cp = cp->parent; | ||
250 | endtag = 0; | ||
251 | } | ||
252 | } | ||
253 | mark = -1; | ||
254 | lastmark = i + 1; | ||
255 | } | ||
256 | else error = 1; | ||
257 | } | ||
258 | } | ||
259 | |||
260 | dom->valid = !error; | ||
261 | dom->processed = 1; | ||
262 | dom->el = ele; | ||
263 | |||
264 | return dom; | ||
265 | } | ||
266 | |||
267 | /* Loads an XML file and return the DOM */ | ||
268 | DOM *minidom_load(const char *file) | ||
269 | { | ||
270 | DOM *dom; | ||
271 | FILE *f; | ||
272 | char buf[1024]; | ||
273 | char *buffer; | ||
274 | |||
275 | f = fopen(file, "r"); | ||
276 | if(!f) return NULL; | ||
277 | |||
278 | buffer = (char*)malloc(1); | ||
279 | strcpy(buffer, ""); | ||
280 | while(fgets(buf, sizeof(buf), f)) | ||
281 | { | ||
282 | if(strlen(buf) > 0) | ||
283 | { | ||
284 | /*printf("Got: %s\n", buf);*/ | ||
285 | buffer = (char*)realloc(buffer, strlen(buffer) + strlen(buf) + 1); | ||
286 | /*buf[strlen(buf) - 1] = 0;*/ | ||
287 | /*printf("Add: %s", buf);*/ | ||
288 | strcat(buffer, buf); | ||
289 | } | ||
290 | } | ||
291 | fclose(f); | ||
292 | |||
293 | /*printf("DEBUG: ready!\n"); | ||
294 | printf("DEBUG: load: parse %s\n", buffer);*/ | ||
295 | dom = minidom_parse(buffer); | ||
296 | free(buffer); | ||
297 | |||
298 | return dom; | ||
299 | } | ||
300 | |||
301 | void minidom_internal_dump(ELE *ele); /* forward decl */ | ||
302 | |||
303 | /* Dump out the DOM in XML format */ | ||
304 | /* FIXME: return a char* and print this if dump is needed */ | ||
305 | void minidom_dump(DOM *dom) | ||
306 | { | ||
307 | if(!dom) return; | ||
308 | if(!dom->processed) | ||
309 | { | ||
310 | printf("ERROR: DOM is incomplete!\n"); | ||
311 | return; | ||
312 | } | ||
313 | if(!dom->valid) | ||
314 | { | ||
315 | printf("ERROR: DOM is invalid!\n"); | ||
316 | return; | ||
317 | } | ||
318 | if(!dom->el) | ||
319 | { | ||
320 | printf("ERROR: DOM is empty!\n");/* is this really an error? */ | ||
321 | return; | ||
322 | } | ||
323 | minidom_internal_dump(dom->el); | ||
324 | } | ||
325 | |||
326 | void minidom_internal_dump(ELE *ele) | ||
327 | { | ||
328 | int i; | ||
329 | static int indent = 0; | ||
330 | static int start = 0; | ||
331 | |||
332 | if(!ele) return; | ||
333 | if(!start) | ||
334 | { | ||
335 | start = 1; | ||
336 | printf("<?xml version=\"1.0\"?>\n"); | ||
337 | } | ||
338 | indent++; | ||
339 | for(i = 0; i < (indent - 1) * 2; i++) | ||
340 | printf(" "); | ||
341 | printf("<%s", ele->name); | ||
342 | |||
343 | i = 0; | ||
344 | while((ele->at) && (ele->at[i])) | ||
345 | { | ||
346 | if(ele->at[i]->value) | ||
347 | printf(" %s=\"%s\"", ele->at[i]->name, ele->at[i]->value); | ||
348 | else | ||
349 | printf(" %s", ele->at[i]->name); | ||
350 | i++; | ||
351 | } | ||
352 | |||
353 | if((!ele->value) && (!ele->el)) printf("/"); | ||
354 | printf(">\n"); | ||
355 | if(ele->value) | ||
356 | { | ||
357 | for(i = 0; i < (indent - 1) * 2; i++) | ||
358 | printf(" "); | ||
359 | printf(" %s\n", ele->value); | ||
360 | } | ||
361 | |||
362 | i = 0; | ||
363 | while((ele->el) && (ele->el[i])) | ||
364 | { | ||
365 | minidom_internal_dump(ele->el[i]); | ||
366 | i++; | ||
367 | } | ||
368 | |||
369 | if((ele->value) || (ele->el)) | ||
370 | { | ||
371 | for(i = 0; i < (indent -1) * 2; i++) | ||
372 | printf(" "); | ||
373 | printf("</%s>\n", ele->name); | ||
374 | } | ||
375 | indent--; | ||
376 | } | ||
377 | |||
378 | /* Clean up after all operations */ | ||
379 | void minidom_free(DOM *dom) | ||
380 | { | ||
381 | if(!dom) return; | ||
382 | free(dom); | ||
383 | dom = NULL; | ||
384 | } | ||
385 | |||
386 | /* Query a list of elements */ | ||
387 | ELE **MD_querylist(ELE *parent, const char *name) | ||
388 | { | ||
389 | static ELE **elelist = NULL; | ||
390 | int i, j; | ||
391 | |||
392 | if(!parent) return NULL; | ||
393 | /*if(elelist) | ||
394 | { | ||
395 | i = 0; | ||
396 | while(elelist[i]) | ||
397 | { | ||
398 | free(elelist[i]); | ||
399 | i++; | ||
400 | } | ||
401 | free(elelist); | ||
402 | elelist = NULL; | ||
403 | }*/ /* MEMORY HOLE !*/ | ||
404 | |||
405 | i = 0; | ||
406 | j = 1; | ||
407 | while((parent->el) && (parent->el[i])) | ||
408 | { | ||
409 | if(!strcmp(parent->el[i]->name, name)) | ||
410 | { | ||
411 | elelist = (ELE**)malloc((j + 1) * sizeof(ELE*)); | ||
412 | elelist[j - 1] = parent->el[i]; | ||
413 | elelist[j] = NULL; | ||
414 | j++; | ||
415 | } | ||
416 | i++; | ||
417 | } | ||
418 | |||
419 | return elelist; | ||
420 | } | ||
421 | |||
422 | /* Query a single element */ | ||
423 | ELE *MD_query(ELE *parent, const char *name) | ||
424 | { | ||
425 | ELE **elelist; | ||
426 | |||
427 | elelist = MD_querylist(parent, name); | ||
428 | if((elelist) && (elelist[0])) return elelist[0]; | ||
429 | return NULL; | ||
430 | } | ||
431 | |||
432 | /* Get an attribute's value */ | ||
433 | char *MD_att(ELE *element, const char *name) | ||
434 | { | ||
435 | int i; | ||
436 | |||
437 | if((!element) || (!element->at)) return NULL; | ||
438 | i = 0; | ||
439 | while((element->at[i])) | ||
440 | { | ||
441 | if(!strcmp(element->at[i]->name, name)) return element->at[i]->value; | ||
442 | i++; | ||
443 | } | ||
444 | return NULL; | ||
445 | } | ||
446 | |||
diff --git a/core/pim/today/minidom.h b/core/pim/today/minidom.h deleted file mode 100644 index caa4d4a..0000000 --- a/core/pim/today/minidom.h +++ b/dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | /* | ||
2 | * The GGZ Gaming Zone Metaserver Project | ||
3 | * Copyright (C) 2001 Josef Spillner, dr_maux@users.sourceforge.net | ||
4 | * Published under GNU GPL conditions. | ||
5 | */ | ||
6 | |||
7 | #ifndef MINIDOM_H | ||
8 | #define MINIDOM_H | ||
9 | |||
10 | #ifdef __cplusplus | ||
11 | extern "C" { | ||
12 | #endif | ||
13 | |||
14 | struct att_t | ||
15 | { | ||
16 | char *name; /* name of the attribute */ | ||
17 | char *value; /* value of the attribute */ | ||
18 | }; | ||
19 | |||
20 | struct ele_t | ||
21 | { | ||
22 | struct ele_t *parent;/* pointer to the parent */ | ||
23 | struct ele_t **el; /* list of child elements */ | ||
24 | struct att_t **at; /* list of attributes */ | ||
25 | char *name; /* tag identifier */ | ||
26 | char *value; /* value inside the tag*/ | ||
27 | int elnum; /* number of child elements [redundant] */ | ||
28 | int atnum; /* number of attribute pairs [redundant] */ | ||
29 | }; | ||
30 | |||
31 | struct dom_t | ||
32 | { | ||
33 | struct ele_t *el; /* the root node (may be NULL) */ | ||
34 | int valid; /* validity of the DOM */ | ||
35 | int processed; /* indicates whether you can work with it */ | ||
36 | }; | ||
37 | |||
38 | typedef struct dom_t DOM;/* Domain Object Model */ | ||
39 | typedef struct ele_t ELE;/* Elements */ | ||
40 | typedef struct att_t ATT;/* Attributes */ | ||
41 | |||
42 | DOM *minidom_load(const char *file); | ||
43 | DOM *minidom_parse(const char *stream); | ||
44 | void minidom_dump(DOM *dom); | ||
45 | void minidom_free(DOM *dom); | ||
46 | |||
47 | ELE *MD_query(ELE *parent, const char *name); | ||
48 | ELE **MD_querylist(ELE *parent, const char *name); | ||
49 | |||
50 | char *MD_att(ELE *element, const char *name); | ||
51 | |||
52 | #ifdef __cplusplus | ||
53 | } | ||
54 | #endif | ||
55 | |||
56 | #endif | ||
57 | |||
diff --git a/core/pim/today/opie-today.control b/core/pim/today/opie-today.control index 9d8444e..ce2d6b9 100644 --- a/core/pim/today/opie-today.control +++ b/core/pim/today/opie-today.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Files: bin/today apps/Applications/today.desktop pics/today | 1 | Files: bin/today apps/Applications/today.desktop pics/today/* |
2 | Priority: optional | 2 | Priority: optional |
3 | Section: opie/applications | 3 | Section: opie/applications |
4 | Maintainer: Maximilian Reiß <max.reiss@gmx.de> | 4 | Maintainer: Maximilian Reiß <max.reiss@gmx.de> |
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: 0.3.0-$SUB_VERSION | 6 | Version: 0.3.0-$SUB_VERSION |
7 | Depends: opie-base ($QPE_VERSION) | 7 | Depends: opie-base ($QPE_VERSION) |
8 | License: GPL | 8 | License: GPL |
9 | Description: today screen | 9 | Description: today screen |
10 | A short overview over current appointments and tasks. | 10 | A short overview over current appointments and tasks. |