~ubuntu-branches/ubuntu/karmic/eric/karmic

« back to all changes in this revision

Viewing changes to eric/Documentation/Source/eric3doc-eric3.UI.TaskViewer.html

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-01-28 18:02:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080128180225-6nrox6yrworh2c4v
Tags: 4.0.4-1ubuntu1
* Add python-qt3 to build-depends becuase that's where Ubuntu puts 
  pyqtconfig
* Change maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
2
 
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
3
 
<html><head>
4
 
<title>eric3.UI.TaskViewer</title>
5
 
</head>
6
 
<body bgcolor="#FFFFFF"><a NAME="top" ID="top"></a>
7
 
<h1><font color="#0000FF">eric3.UI.TaskViewer</font></h1>
8
 
<p>
9
 
Module implementing a task viewer and associated classes.
10
 
</p><p>
11
 
Tasks can be defined manually or automatically. Automatically
12
 
generated tasks are derived from a comment with a specially
13
 
introductory text. This text is configurable.
14
 
</p>
15
 
<h3><font color="#FF0000">Classes</font></h3>
16
 
<table>
17
 
<tr>
18
 
<td><a href="#Task">Task</a></td>
19
 
<td>Class implementing the task data structure.</td>
20
 
</tr><tr>
21
 
<td><a href="#TaskViewer">TaskViewer</a></td>
22
 
<td>Class implementing the task viewer.</td>
23
 
</tr>
24
 
</table>
25
 
<h3><font color="#FF0000">Functions</font></h3>
26
 
<table>
27
 
<tr><td>None</td></tr>
28
 
</table>
29
 
<hr /><hr />
30
 
<a NAME="Task" ID="Task"></a>
31
 
<h2><font color="#0000FF">Task</font></h2>
32
 
<p>
33
 
    Class implementing the task data structure.
34
 
</p>
35
 
<h3><font color="#FF0000">Derived from</font></h3>
36
 
QListViewItem
37
 
<h3><font color="#FF0000">Methods</font></h3>
38
 
<table>
39
 
<tr>
40
 
<td><a href="#Task.__init__">Task</a></td>
41
 
<td>Constructor</td>
42
 
</tr><tr>
43
 
<td><a href="#Task.getFilename">getFilename</a></td>
44
 
<td>Public method to retrieve the tasks filename.</td>
45
 
</tr><tr>
46
 
<td><a href="#Task.getLineno">getLineno</a></td>
47
 
<td>Public method to retrieve the tasks linenumber.</td>
48
 
</tr><tr>
49
 
<td><a href="#Task.isCompleted">isCompleted</a></td>
50
 
<td>Public slot to return the completion status.</td>
51
 
</tr><tr>
52
 
<td><a href="#Task.isProjectTask">isProjectTask</a></td>
53
 
<td>Public slot to return the project relation status.</td>
54
 
</tr><tr>
55
 
<td><a href="#Task.paintCell">paintCell</a></td>
56
 
<td>Overwritten class to set a different text color, if bold is true.</td>
57
 
</tr><tr>
58
 
<td><a href="#Task.setCompleted">setCompleted</a></td>
59
 
<td>Public slot to update the completed flag.</td>
60
 
</tr><tr>
61
 
<td><a href="#Task.setDescription">setDescription</a></td>
62
 
<td>Public slot to update the description.</td>
63
 
</tr><tr>
64
 
<td><a href="#Task.setPriority">setPriority</a></td>
65
 
<td>Public slot to update the priority.</td>
66
 
</tr><tr>
67
 
<td><a href="#Task.setProjectTask">setProjectTask</a></td>
68
 
<td>Public method to set the project relation flag.</td>
69
 
</tr>
70
 
</table>
71
 
<p><a NAME="Task.__init__" ID="Task__init__"></a>
72
 
<h3><font color="#0000FF">Task (Constructor)</font></h3>
73
 
<b>Task</b>(<i>parent, description, priority=1, filename="", lineno=0, completed=0, _time=0, isProjectTask=0, isBugfixTask=0, ppath=""</i>)
74
 
<p>
75
 
        Constructor
76
 
</p><dl>
77
 
<dt><i>parent</i></dt>
78
 
<dd>
79
 
parent widget of the task (QWidget)
80
 
</dd><dt><i>description</i></dt>
81
 
<dd>
82
 
descriptive text of the task (string or QString)
83
 
</dd><dt><i>priority</i></dt>
84
 
<dd>
85
 
priority of the task (0=high, 1=normal, 2=low)
86
 
</dd><dt><i>filename</i></dt>
87
 
<dd>
88
 
filename containing the task (string or QString)
89
 
</dd><dt><i>lineno</i></dt>
90
 
<dd>
91
 
line number containing the task (integer)
92
 
</dd><dt><i>completed</i></dt>
93
 
<dd>
94
 
flag indicating completion status (boolean)
95
 
</dd><dt><i>_time</i></dt>
96
 
<dd>
97
 
creation time of the task (float, if 0 use current time)
98
 
</dd><dt><i>isProjectTask</i></dt>
99
 
<dd>
100
 
flag indicating a task related to the current project (boolean)
101
 
</dd><dt><i>isBugfixTask</i></dt>
102
 
<dd>
103
 
flag indicating a bugfix task (boolean)
104
 
</dd><dt><i>ppath</i></dt>
105
 
<dd>
106
 
the project path (string or QString)
107
 
</dd>
108
 
</dl><a NAME="Task.getFilename" ID="TaskgetFilename"></a>
109
 
<h3><font color="#0000FF">Task.getFilename</font></h3>
110
 
<b>getFilename</b>(<i></i>)
111
 
<p>
112
 
        Public method to retrieve the tasks filename.
113
 
</p><dl>
114
 
<dt>Returns:</dt>
115
 
<dd>
116
 
filename (string)
117
 
</dd>
118
 
</dl><a NAME="Task.getLineno" ID="TaskgetLineno"></a>
119
 
<h3><font color="#0000FF">Task.getLineno</font></h3>
120
 
<b>getLineno</b>(<i></i>)
121
 
<p>
122
 
        Public method to retrieve the tasks linenumber.
123
 
</p><dl>
124
 
<dt>Returns:</dt>
125
 
<dd>
126
 
linenumber (integer)
127
 
</dd>
128
 
</dl><a NAME="Task.isCompleted" ID="TaskisCompleted"></a>
129
 
<h3><font color="#0000FF">Task.isCompleted</font></h3>
130
 
<b>isCompleted</b>(<i></i>)
131
 
<p>
132
 
        Public slot to return the completion status.
133
 
</p><dl>
134
 
<dt>Returns:</dt>
135
 
<dd>
136
 
flag indicating the completion status (boolean)
137
 
</dd>
138
 
</dl><a NAME="Task.isProjectTask" ID="TaskisProjectTask"></a>
139
 
<h3><font color="#0000FF">Task.isProjectTask</font></h3>
140
 
<b>isProjectTask</b>(<i></i>)
141
 
<p>
142
 
        Public slot to return the project relation status.
143
 
</p><dl>
144
 
<dt>Returns:</dt>
145
 
<dd>
146
 
flag indicating the project relation status (boolean)
147
 
</dd>
148
 
</dl><a NAME="Task.paintCell" ID="TaskpaintCell"></a>
149
 
<h3><font color="#0000FF">Task.paintCell</font></h3>
150
 
<b>paintCell</b>(<i>p, cg, column, width, alignment</i>)
151
 
<p>
152
 
        Overwritten class to set a different text color, if bold is true.
153
 
</p><dl>
154
 
<dt><i>p</i></dt>
155
 
<dd>
156
 
the painter (QPainter)
157
 
</dd><dt><i>cg</i></dt>
158
 
<dd>
159
 
the color group (QColorGroup)
160
 
</dd><dt><i>column</i></dt>
161
 
<dd>
162
 
the column (int)
163
 
</dd><dt><i>width</i></dt>
164
 
<dd>
165
 
width of the cell (int)
166
 
</dd><dt><i>alignment</i></dt>
167
 
<dd>
168
 
alignment of the cell (int)
169
 
</dd>
170
 
</dl><a NAME="Task.setCompleted" ID="TasksetCompleted"></a>
171
 
<h3><font color="#0000FF">Task.setCompleted</font></h3>
172
 
<b>setCompleted</b>(<i>completed</i>)
173
 
<p>
174
 
        Public slot to update the completed flag.
175
 
</p><dl>
176
 
<dt><i>completed</i></dt>
177
 
<dd>
178
 
flag indicating completion status (boolean)
179
 
</dd>
180
 
</dl><a NAME="Task.setDescription" ID="TasksetDescription"></a>
181
 
<h3><font color="#0000FF">Task.setDescription</font></h3>
182
 
<b>setDescription</b>(<i>description</i>)
183
 
<p>
184
 
        Public slot to update the description.
185
 
</p><dl>
186
 
<dt><i>decsription</i></dt>
187
 
<dd>
188
 
descriptive text of the task (string or QString)
189
 
</dd>
190
 
</dl><a NAME="Task.setPriority" ID="TasksetPriority"></a>
191
 
<h3><font color="#0000FF">Task.setPriority</font></h3>
192
 
<b>setPriority</b>(<i>priority</i>)
193
 
<p>
194
 
        Public slot to update the priority.
195
 
</p><dl>
196
 
<dt><i>priority</i></dt>
197
 
<dd>
198
 
priority of the task (0=high, 1=normal, 2=low)
199
 
</dd>
200
 
</dl><a NAME="Task.setProjectTask" ID="TasksetProjectTask"></a>
201
 
<h3><font color="#0000FF">Task.setProjectTask</font></h3>
202
 
<b>setProjectTask</b>(<i>pt</i>)
203
 
<p>
204
 
        Public method to set the project relation flag.
205
 
</p><dl>
206
 
<dt><i>pt</i></dt>
207
 
<dd>
208
 
flag indicating a project task (boolean)
209
 
</dd>
210
 
</dl></p>
211
 
<div align="right"><a href="#top">Up</a></div>
212
 
<hr /><hr />
213
 
<a NAME="TaskViewer" ID="TaskViewer"></a>
214
 
<h2><font color="#0000FF">TaskViewer</font></h2>
215
 
<p>
216
 
    Class implementing the task viewer.
217
 
</p><h4>Signals</h4>
218
 
<dl>
219
 
<dt>displayFile(string, integer)</dt>
220
 
<dd>
221
 
emitted to go to a file task
222
 
</dd>
223
 
</dl>
224
 
<h3><font color="#FF0000">Derived from</font></h3>
225
 
QListView
226
 
<h3><font color="#FF0000">Methods</font></h3>
227
 
<table>
228
 
<tr>
229
 
<td><a href="#TaskViewer.__init__">TaskViewer</a></td>
230
 
<td>Constructor</td>
231
 
</tr><tr>
232
 
<td><a href="#TaskViewer.addFileTask">addFileTask</a></td>
233
 
<td>Public slot to add a file related task.</td>
234
 
</tr><tr>
235
 
<td><a href="#TaskViewer.addTask">addTask</a></td>
236
 
<td>Public slot to add a task.</td>
237
 
</tr><tr>
238
 
<td><a href="#TaskViewer.clearFileTasks">clearFileTasks</a></td>
239
 
<td>Public slot to clear all task related to a file.</td>
240
 
</tr><tr>
241
 
<td><a href="#TaskViewer.clearProjectTasks">clearProjectTasks</a></td>
242
 
<td>Public slot to clear project related tasks.</td>
243
 
</tr><tr>
244
 
<td><a href="#TaskViewer.clearTasks">clearTasks</a></td>
245
 
<td>Public slot to clear all tasks from display.</td>
246
 
</tr><tr>
247
 
<td><a href="#TaskViewer.contentsMouseDoubleClickEvent">contentsMouseDoubleClickEvent</a></td>
248
 
<td>Protected method of QListView.</td>
249
 
</tr><tr>
250
 
<td><a href="#TaskViewer.getGlobalTasks">getGlobalTasks</a></td>
251
 
<td>Public method to retrieve all non project related tasks.</td>
252
 
</tr><tr>
253
 
<td><a href="#TaskViewer.getProjectTasks">getProjectTasks</a></td>
254
 
<td>Public method to retrieve all project related tasks.</td>
255
 
</tr><tr>
256
 
<td><a href="#TaskViewer.handleCompleted">handleCompleted</a></td>
257
 
<td>Private slot to handle the "Mark Completed" context menu entry.</td>
258
 
</tr><tr>
259
 
<td><a href="#TaskViewer.handleContextMenu">handleContextMenu</a></td>
260
 
<td>Private slot to show the context menu of the listview.</td>
261
 
</tr><tr>
262
 
<td><a href="#TaskViewer.handleCopy">handleCopy</a></td>
263
 
<td>Private slot to handle the "Copy" context menu entry.</td>
264
 
</tr><tr>
265
 
<td><a href="#TaskViewer.handleDelete">handleDelete</a></td>
266
 
<td>Private slot to handle the "Delete Task" context menu entry.</td>
267
 
</tr><tr>
268
 
<td><a href="#TaskViewer.handleDeleteCompleted">handleDeleteCompleted</a></td>
269
 
<td>Private slot to handle the "Delete Completed Tasks" context menu entry.</td>
270
 
</tr><tr>
271
 
<td><a href="#TaskViewer.handleGoTo">handleGoTo</a></td>
272
 
<td>Private slot to handle the "Go To" context menu entry.</td>
273
 
</tr><tr>
274
 
<td><a href="#TaskViewer.handleNewTask">handleNewTask</a></td>
275
 
<td>Private slot to handle the "New Task" context menu entry.</td>
276
 
</tr><tr>
277
 
<td><a href="#TaskViewer.handlePaste">handlePaste</a></td>
278
 
<td>Private slot to handle the "Paste" context menu entry.</td>
279
 
</tr><tr>
280
 
<td><a href="#TaskViewer.handlePreferencesChanged">handlePreferencesChanged</a></td>
281
 
<td>Private slot to react to changes of the preferences.</td>
282
 
</tr><tr>
283
 
<td><a href="#TaskViewer.handleProperties">handleProperties</a></td>
284
 
<td>Private slot to handle the "Properties" context menu entry</td>
285
 
</tr><tr>
286
 
<td><a href="#TaskViewer.setProjectOpen">setProjectOpen</a></td>
287
 
<td>Public slot to set the project status.</td>
288
 
</tr>
289
 
</table>
290
 
<p><a NAME="TaskViewer.__init__" ID="TaskViewer__init__"></a>
291
 
<h3><font color="#0000FF">TaskViewer (Constructor)</font></h3>
292
 
<b>TaskViewer</b>(<i>parent, project</i>)
293
 
<p>
294
 
        Constructor
295
 
</p><dl>
296
 
<dt><i>parent</i></dt>
297
 
<dd>
298
 
the parent (QWidget)
299
 
</dd><dt><i>project</i></dt>
300
 
<dd>
301
 
reference to the project object
302
 
</dd>
303
 
</dl><a NAME="TaskViewer.addFileTask" ID="TaskVieweraddFileTask"></a>
304
 
<h3><font color="#0000FF">TaskViewer.addFileTask</font></h3>
305
 
<b>addFileTask</b>(<i>description, filename, lineno, isBugfixTask=0</i>)
306
 
<p>
307
 
        Public slot to add a file related task.
308
 
</p><dl>
309
 
<dt><i>description</i></dt>
310
 
<dd>
311
 
descriptive text of the task (string or QString)
312
 
</dd><dt><i>filename</i></dt>
313
 
<dd>
314
 
filename containing the task (string or QString)
315
 
</dd><dt><i>lineno</i></dt>
316
 
<dd>
317
 
line number containing the task (integer)
318
 
</dd><dt><i>isBugfixTask</i></dt>
319
 
<dd>
320
 
flag indicating a bugfix task (boolean)
321
 
</dd>
322
 
</dl><a NAME="TaskViewer.addTask" ID="TaskVieweraddTask"></a>
323
 
<h3><font color="#0000FF">TaskViewer.addTask</font></h3>
324
 
<b>addTask</b>(<i>description, priority=1, filename="", lineno=0, completed=0, _time=0, isProjectTask=0, isBugfixTask=0</i>)
325
 
<p>
326
 
        Public slot to add a task.
327
 
</p><dl>
328
 
<dt><i>description</i></dt>
329
 
<dd>
330
 
descriptive text of the task (string or QString)
331
 
</dd><dt><i>priority</i></dt>
332
 
<dd>
333
 
priority of the task (0=high, 1=normal, 2=low)
334
 
</dd><dt><i>filename</i></dt>
335
 
<dd>
336
 
filename containing the task (string or QString)
337
 
</dd><dt><i>lineno</i></dt>
338
 
<dd>
339
 
line number containing the task (integer)
340
 
</dd><dt><i>completed</i></dt>
341
 
<dd>
342
 
flag indicating completion status (boolean)
343
 
</dd><dt><i>_time</i></dt>
344
 
<dd>
345
 
creation time of the task (float, if 0 use current time)
346
 
</dd><dt><i>isProjectTask</i></dt>
347
 
<dd>
348
 
flag indicating a task related to the current project (boolean)
349
 
</dd><dt><i>isBugfixTask</i></dt>
350
 
<dd>
351
 
flag indicating a bugfix task (boolean)
352
 
</dd>
353
 
</dl><a NAME="TaskViewer.clearFileTasks" ID="TaskViewerclearFileTasks"></a>
354
 
<h3><font color="#0000FF">TaskViewer.clearFileTasks</font></h3>
355
 
<b>clearFileTasks</b>(<i>filename</i>)
356
 
<p>
357
 
        Public slot to clear all task related to a file.
358
 
</p><dl>
359
 
<dt><i>filename</i></dt>
360
 
<dd>
361
 
name of the file (string or QString)
362
 
</dd>
363
 
</dl><a NAME="TaskViewer.clearProjectTasks" ID="TaskViewerclearProjectTasks"></a>
364
 
<h3><font color="#0000FF">TaskViewer.clearProjectTasks</font></h3>
365
 
<b>clearProjectTasks</b>(<i></i>)
366
 
<p>
367
 
        Public slot to clear project related tasks.
368
 
</p><a NAME="TaskViewer.clearTasks" ID="TaskViewerclearTasks"></a>
369
 
<h3><font color="#0000FF">TaskViewer.clearTasks</font></h3>
370
 
<b>clearTasks</b>(<i></i>)
371
 
<p>
372
 
        Public slot to clear all tasks from display.
373
 
</p><a NAME="TaskViewer.contentsMouseDoubleClickEvent" ID="TaskViewercontentsMouseDoubleClickEvent"></a>
374
 
<h3><font color="#0000FF">TaskViewer.contentsMouseDoubleClickEvent</font></h3>
375
 
<b>contentsMouseDoubleClickEvent</b>(<i>mouseEvent</i>)
376
 
<p>
377
 
        Protected method of QListView. 
378
 
</p><p>
379
 
        Reimplemented to disable expanding/collapsing
380
 
        of items when double-clicking. Instead the double-clicked entry is opened.
381
 
</p><dl>
382
 
<dt><i>mouseEvent</i></dt>
383
 
<dd>
384
 
the mouse event (QMouseEvent)
385
 
</dd>
386
 
</dl><a NAME="TaskViewer.getGlobalTasks" ID="TaskViewergetGlobalTasks"></a>
387
 
<h3><font color="#0000FF">TaskViewer.getGlobalTasks</font></h3>
388
 
<b>getGlobalTasks</b>(<i></i>)
389
 
<p>
390
 
        Public method to retrieve all non project related tasks.
391
 
</p><dl>
392
 
<dt>Returns:</dt>
393
 
<dd>
394
 
copy of tasks (list of Task)
395
 
</dd>
396
 
</dl><a NAME="TaskViewer.getProjectTasks" ID="TaskViewergetProjectTasks"></a>
397
 
<h3><font color="#0000FF">TaskViewer.getProjectTasks</font></h3>
398
 
<b>getProjectTasks</b>(<i></i>)
399
 
<p>
400
 
        Public method to retrieve all project related tasks.
401
 
</p><dl>
402
 
<dt>Returns:</dt>
403
 
<dd>
404
 
copy of tasks (list of Task)
405
 
</dd>
406
 
</dl><a NAME="TaskViewer.handleCompleted" ID="TaskViewerhandleCompleted"></a>
407
 
<h3><font color="#0000FF">TaskViewer.handleCompleted</font></h3>
408
 
<b>handleCompleted</b>(<i></i>)
409
 
<p>
410
 
        Private slot to handle the "Mark Completed" context menu entry.
411
 
</p><a NAME="TaskViewer.handleContextMenu" ID="TaskViewerhandleContextMenu"></a>
412
 
<h3><font color="#0000FF">TaskViewer.handleContextMenu</font></h3>
413
 
<b>handleContextMenu</b>(<i>itm, coord, col</i>)
414
 
<p>
415
 
        Private slot to show the context menu of the listview.
416
 
</p><dl>
417
 
<dt><i>itm</i></dt>
418
 
<dd>
419
 
the selected listview item (QListViewItem)
420
 
</dd><dt><i>coord</i></dt>
421
 
<dd>
422
 
the position of the mouse pointer (QPoint)
423
 
</dd><dt><i>col</i></dt>
424
 
<dd>
425
 
the column of the mouse pointer (int)
426
 
</dd>
427
 
</dl><a NAME="TaskViewer.handleCopy" ID="TaskViewerhandleCopy"></a>
428
 
<h3><font color="#0000FF">TaskViewer.handleCopy</font></h3>
429
 
<b>handleCopy</b>(<i></i>)
430
 
<p>
431
 
        Private slot to handle the "Copy" context menu entry.
432
 
</p><a NAME="TaskViewer.handleDelete" ID="TaskViewerhandleDelete"></a>
433
 
<h3><font color="#0000FF">TaskViewer.handleDelete</font></h3>
434
 
<b>handleDelete</b>(<i></i>)
435
 
<p>
436
 
        Private slot to handle the "Delete Task" context menu entry.
437
 
</p><a NAME="TaskViewer.handleDeleteCompleted" ID="TaskViewerhandleDeleteCompleted"></a>
438
 
<h3><font color="#0000FF">TaskViewer.handleDeleteCompleted</font></h3>
439
 
<b>handleDeleteCompleted</b>(<i></i>)
440
 
<p>
441
 
        Private slot to handle the "Delete Completed Tasks" context menu entry.
442
 
</p><a NAME="TaskViewer.handleGoTo" ID="TaskViewerhandleGoTo"></a>
443
 
<h3><font color="#0000FF">TaskViewer.handleGoTo</font></h3>
444
 
<b>handleGoTo</b>(<i></i>)
445
 
<p>
446
 
        Private slot to handle the "Go To" context menu entry.
447
 
</p><a NAME="TaskViewer.handleNewTask" ID="TaskViewerhandleNewTask"></a>
448
 
<h3><font color="#0000FF">TaskViewer.handleNewTask</font></h3>
449
 
<b>handleNewTask</b>(<i></i>)
450
 
<p>
451
 
        Private slot to handle the "New Task" context menu entry.
452
 
</p><a NAME="TaskViewer.handlePaste" ID="TaskViewerhandlePaste"></a>
453
 
<h3><font color="#0000FF">TaskViewer.handlePaste</font></h3>
454
 
<b>handlePaste</b>(<i></i>)
455
 
<p>
456
 
        Private slot to handle the "Paste" context menu entry.
457
 
</p><a NAME="TaskViewer.handlePreferencesChanged" ID="TaskViewerhandlePreferencesChanged"></a>
458
 
<h3><font color="#0000FF">TaskViewer.handlePreferencesChanged</font></h3>
459
 
<b>handlePreferencesChanged</b>(<i></i>)
460
 
<p>
461
 
        Private slot to react to changes of the preferences.
462
 
</p><a NAME="TaskViewer.handleProperties" ID="TaskViewerhandleProperties"></a>
463
 
<h3><font color="#0000FF">TaskViewer.handleProperties</font></h3>
464
 
<b>handleProperties</b>(<i></i>)
465
 
<p>
466
 
        Private slot to handle the "Properties" context menu entry
467
 
</p><a NAME="TaskViewer.setProjectOpen" ID="TaskViewersetProjectOpen"></a>
468
 
<h3><font color="#0000FF">TaskViewer.setProjectOpen</font></h3>
469
 
<b>setProjectOpen</b>(<i>o=0</i>)
470
 
<p>
471
 
        Public slot to set the project status.
472
 
</p><dl>
473
 
<dt><i>o</i></dt>
474
 
<dd>
475
 
flag indicating the project status
476
 
</dd>
477
 
</dl></p>
478
 
<div align="right"><a href="#top">Up</a></div>
479
 
<hr />
480
 
</body></html>
 
 
b'\\ No newline at end of file'