author | mickeyl <mickeyl> | 2004-03-08 19:45:09 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-03-08 19:45:09 (UTC) |
commit | 2f001327f5087dfe9d0625490e9835c3fafb05e4 (patch) (unidiff) | |
tree | ef323e0629da2fd208f346f902f008dfa0f46fcb | |
parent | 744ae6786d248e6c71b951bdbe5a13091ba8c460 (diff) | |
download | opie-2f001327f5087dfe9d0625490e9835c3fafb05e4.zip opie-2f001327f5087dfe9d0625490e9835c3fafb05e4.tar.gz opie-2f001327f5087dfe9d0625490e9835c3fafb05e4.tar.bz2 |
catch up with logo change
fix some typos
-rw-r--r-- | core/applets/aboutapplet/about.cpp | 2 | ||||
-rw-r--r-- | core/applets/aboutapplet/dialog.ui | 30 |
2 files changed, 10 insertions, 22 deletions
diff --git a/core/applets/aboutapplet/about.cpp b/core/applets/aboutapplet/about.cpp index e909d0f..bbdc1b1 100644 --- a/core/applets/aboutapplet/about.cpp +++ b/core/applets/aboutapplet/about.cpp | |||
@@ -1,89 +1,89 @@ | |||
1 | #include "about.h" | 1 | #include "about.h" |
2 | #include "dialog.h" | 2 | #include "dialog.h" |
3 | 3 | ||
4 | #include <qpe/resource.h> | 4 | #include <qpe/resource.h> |
5 | #include <qpe/qcopenvelope_qws.h> | 5 | #include <qpe/qcopenvelope_qws.h> |
6 | 6 | ||
7 | #include <qapplication.h> | 7 | #include <qapplication.h> |
8 | #include <qlabel.h> | 8 | #include <qlabel.h> |
9 | 9 | ||
10 | AboutApplet::AboutApplet ( ) | 10 | AboutApplet::AboutApplet ( ) |
11 | : QObject ( 0, "AboutApplet" ) | 11 | : QObject ( 0, "AboutApplet" ) |
12 | {} | 12 | {} |
13 | 13 | ||
14 | AboutApplet::~AboutApplet ( ) | 14 | AboutApplet::~AboutApplet ( ) |
15 | {} | 15 | {} |
16 | 16 | ||
17 | int AboutApplet::position ( ) const | 17 | int AboutApplet::position ( ) const |
18 | { | 18 | { |
19 | return 1; | 19 | return 1; |
20 | } | 20 | } |
21 | 21 | ||
22 | QString AboutApplet::name ( ) const | 22 | QString AboutApplet::name ( ) const |
23 | { | 23 | { |
24 | return tr( "About shortcut" ); | 24 | return tr( "About shortcut" ); |
25 | } | 25 | } |
26 | 26 | ||
27 | QString AboutApplet::text ( ) const | 27 | QString AboutApplet::text ( ) const |
28 | { | 28 | { |
29 | return tr( "About" ); | 29 | return tr( "About" ); |
30 | } | 30 | } |
31 | 31 | ||
32 | QString AboutApplet::tr( const char* s ) const | 32 | QString AboutApplet::tr( const char* s ) const |
33 | { | 33 | { |
34 | return qApp->translate( "AboutApplet", s, 0 ); | 34 | return qApp->translate( "AboutApplet", s, 0 ); |
35 | } | 35 | } |
36 | 36 | ||
37 | QString AboutApplet::tr( const char* s, const char* p ) const | 37 | QString AboutApplet::tr( const char* s, const char* p ) const |
38 | { | 38 | { |
39 | return qApp->translate( "AboutApplet", s, p ); | 39 | return qApp->translate( "AboutApplet", s, p ); |
40 | } | 40 | } |
41 | 41 | ||
42 | QIconSet AboutApplet::icon ( ) const | 42 | QIconSet AboutApplet::icon ( ) const |
43 | { | 43 | { |
44 | QPixmap pix; | 44 | QPixmap pix; |
45 | QImage img = Resource::loadImage ( "about" ); | 45 | QImage img = Resource::loadImage ( "logo/opielogo" ); |
46 | 46 | ||
47 | if ( !img. isNull ( ) ) | 47 | if ( !img. isNull ( ) ) |
48 | pix. convertFromImage ( img. smoothScale ( 14, 14 ) ); | 48 | pix. convertFromImage ( img. smoothScale ( 14, 14 ) ); |
49 | return pix; | 49 | return pix; |
50 | } | 50 | } |
51 | 51 | ||
52 | QPopupMenu *AboutApplet::popup ( QWidget * ) const | 52 | QPopupMenu *AboutApplet::popup ( QWidget * ) const |
53 | { | 53 | { |
54 | return 0; | 54 | return 0; |
55 | } | 55 | } |
56 | 56 | ||
57 | void AboutApplet::activated() | 57 | void AboutApplet::activated() |
58 | { | 58 | { |
59 | AboutDialog* d = new AboutDialog( qApp->mainWidget(), "aboutDialog", true ); | 59 | AboutDialog* d = new AboutDialog( qApp->mainWidget(), "aboutDialog", true ); |
60 | if ( qApp->desktop()->width() == 240 ) | 60 | if ( qApp->desktop()->width() == 240 ) |
61 | { | 61 | { |
62 | d->logo->hide(); | 62 | d->logo->hide(); |
63 | d->setFixedWidth( qApp->desktop()->width() - 5 ); | 63 | d->setFixedWidth( qApp->desktop()->width() - 5 ); |
64 | d->setFixedHeight( qApp->desktop()->height() - 50 ); | 64 | d->setFixedHeight( qApp->desktop()->height() - 50 ); |
65 | } | 65 | } |
66 | d->exec(); | 66 | d->exec(); |
67 | } | 67 | } |
68 | 68 | ||
69 | QRESULT AboutApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **iface ) | 69 | QRESULT AboutApplet::queryInterface ( const QUuid &uuid, QUnknownInterface **iface ) |
70 | { | 70 | { |
71 | *iface = 0; | 71 | *iface = 0; |
72 | if ( uuid == IID_QUnknown ) | 72 | if ( uuid == IID_QUnknown ) |
73 | * iface = this; | 73 | * iface = this; |
74 | else if ( uuid == IID_MenuApplet ) | 74 | else if ( uuid == IID_MenuApplet ) |
75 | * iface = this; | 75 | * iface = this; |
76 | else | 76 | else |
77 | return QS_FALSE; | 77 | return QS_FALSE; |
78 | 78 | ||
79 | if ( *iface ) | 79 | if ( *iface ) |
80 | ( *iface ) -> addRef ( ); | 80 | ( *iface ) -> addRef ( ); |
81 | return QS_OK; | 81 | return QS_OK; |
82 | } | 82 | } |
83 | 83 | ||
84 | Q_EXPORT_INTERFACE( ) | 84 | Q_EXPORT_INTERFACE( ) |
85 | { | 85 | { |
86 | Q_CREATE_INSTANCE( AboutApplet ) | 86 | Q_CREATE_INSTANCE( AboutApplet ) |
87 | } | 87 | } |
88 | 88 | ||
89 | 89 | ||
diff --git a/core/applets/aboutapplet/dialog.ui b/core/applets/aboutapplet/dialog.ui index 6dca1ce..5c3a23b 100644 --- a/core/applets/aboutapplet/dialog.ui +++ b/core/applets/aboutapplet/dialog.ui | |||
@@ -1,62 +1,62 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>AboutDialog</class> | 2 | <class>AboutDialog</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>AboutDialog</cstring> | 7 | <cstring>AboutDialog</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>414</width> | 14 | <width>410</width> |
15 | <height>201</height> | 15 | <height>201</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>About</string> | 20 | <string>About</string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <grid> | 28 | <grid> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>2</number> | 31 | <number>2</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>1</number> | 35 | <number>1</number> |
36 | </property> | 36 | </property> |
37 | <widget row="0" column="0" rowspan="1" colspan="2" > | 37 | <widget row="0" column="0" rowspan="1" colspan="2" > |
38 | <class>QLabel</class> | 38 | <class>QLabel</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>TextLabel1</cstring> | 41 | <cstring>TextLabel1</cstring> |
42 | </property> | 42 | </property> |
43 | <property stdset="1"> | 43 | <property stdset="1"> |
44 | <name>text</name> | 44 | <name>text</name> |
45 | <string><center><b>The Open Palmtop Integrated Environment V1.1.2</b></center></string> | 45 | <string><center><b>The Open Palmtop Integrated Environment V1.1.2</b></center></string> |
46 | </property> | 46 | </property> |
47 | </widget> | 47 | </widget> |
48 | <widget row="1" column="0" > | 48 | <widget row="1" column="0" > |
49 | <class>QLabel</class> | 49 | <class>QLabel</class> |
50 | <property stdset="1"> | 50 | <property stdset="1"> |
51 | <name>name</name> | 51 | <name>name</name> |
52 | <cstring>logo</cstring> | 52 | <cstring>logo</cstring> |
53 | </property> | 53 | </property> |
54 | <property stdset="1"> | 54 | <property stdset="1"> |
55 | <name>palette</name> | 55 | <name>palette</name> |
56 | <palette> | 56 | <palette> |
57 | <active> | 57 | <active> |
58 | <color> | 58 | <color> |
59 | <red>0</red> | 59 | <red>0</red> |
60 | <green>0</green> | 60 | <green>0</green> |
61 | <blue>0</blue> | 61 | <blue>0</blue> |
62 | </color> | 62 | </color> |
@@ -292,194 +292,182 @@ | |||
292 | <name>pixmap</name> | 292 | <name>pixmap</name> |
293 | <pixmap>image0</pixmap> | 293 | <pixmap>image0</pixmap> |
294 | </property> | 294 | </property> |
295 | <property stdset="1"> | 295 | <property stdset="1"> |
296 | <name>scaledContents</name> | 296 | <name>scaledContents</name> |
297 | <bool>false</bool> | 297 | <bool>false</bool> |
298 | </property> | 298 | </property> |
299 | </widget> | 299 | </widget> |
300 | <widget row="1" column="1" > | 300 | <widget row="1" column="1" > |
301 | <class>QTabWidget</class> | 301 | <class>QTabWidget</class> |
302 | <property stdset="1"> | 302 | <property stdset="1"> |
303 | <name>name</name> | 303 | <name>name</name> |
304 | <cstring>tab</cstring> | 304 | <cstring>tab</cstring> |
305 | </property> | 305 | </property> |
306 | <property> | 306 | <property> |
307 | <name>layoutMargin</name> | 307 | <name>layoutMargin</name> |
308 | </property> | 308 | </property> |
309 | <property> | 309 | <property> |
310 | <name>layoutSpacing</name> | 310 | <name>layoutSpacing</name> |
311 | </property> | 311 | </property> |
312 | <widget> | 312 | <widget> |
313 | <class>QWidget</class> | 313 | <class>QWidget</class> |
314 | <property stdset="1"> | 314 | <property stdset="1"> |
315 | <name>name</name> | 315 | <name>name</name> |
316 | <cstring>tab</cstring> | 316 | <cstring>tab</cstring> |
317 | </property> | 317 | </property> |
318 | <attribute> | 318 | <attribute> |
319 | <name>title</name> | 319 | <name>title</name> |
320 | <string>About</string> | 320 | <string>About</string> |
321 | </attribute> | 321 | </attribute> |
322 | <vbox> | 322 | <vbox> |
323 | <property stdset="1"> | 323 | <property stdset="1"> |
324 | <name>margin</name> | 324 | <name>margin</name> |
325 | <number>1</number> | 325 | <number>1</number> |
326 | </property> | 326 | </property> |
327 | <property stdset="1"> | 327 | <property stdset="1"> |
328 | <name>spacing</name> | 328 | <name>spacing</name> |
329 | <number>1</number> | 329 | <number>1</number> |
330 | </property> | 330 | </property> |
331 | <widget> | 331 | <widget> |
332 | <class>QTextBrowser</class> | 332 | <class>QTextBrowser</class> |
333 | <property stdset="1"> | 333 | <property stdset="1"> |
334 | <name>name</name> | 334 | <name>name</name> |
335 | <cstring>TextBrowser1</cstring> | 335 | <cstring>TextBrowser1</cstring> |
336 | </property> | 336 | </property> |
337 | <property stdset="1"> | 337 | <property stdset="1"> |
338 | <name>text</name> | 338 | <name>text</name> |
339 | <string><p> | 339 | <string><p> |
340 | The <b>Open Palmtop Desktop Environment</b> is written and maintained by the Opie Team, a world-wide network of software engineers committed to free software development. | 340 | The <b>Open Palmtop Integrated Environment</b> is written and maintained by the Opie Team, a world-wide network of software engineers committed to free software development. |
341 | </p> | 341 | </p> |
342 | <p> | 342 | <p> |
343 | No single group, company or organization controls the Opie source code. Everyone is welcome to contribute to Opie. | 343 | No single group, company or organization controls the Opie source code. Everyone is welcome to contribute to Opie. |
344 | </p> | 344 | </p> |
345 | <p> | 345 | <p> |
346 | Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org</a> for more information on the Opie Project. | 346 | Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org</a> for more information on the Opie Project. |
347 | </p></string> | 347 | </p></string> |
348 | </property> | 348 | </property> |
349 | <property stdset="1"> | 349 | <property stdset="1"> |
350 | <name>textFormat</name> | 350 | <name>textFormat</name> |
351 | <enum>RichText</enum> | 351 | <enum>RichText</enum> |
352 | </property> | 352 | </property> |
353 | </widget> | 353 | </widget> |
354 | </vbox> | 354 | </vbox> |
355 | </widget> | 355 | </widget> |
356 | <widget> | 356 | <widget> |
357 | <class>QWidget</class> | 357 | <class>QWidget</class> |
358 | <property stdset="1"> | 358 | <property stdset="1"> |
359 | <name>name</name> | 359 | <name>name</name> |
360 | <cstring>tab</cstring> | 360 | <cstring>tab</cstring> |
361 | </property> | 361 | </property> |
362 | <attribute> | 362 | <attribute> |
363 | <name>title</name> | 363 | <name>title</name> |
364 | <string>Authors</string> | 364 | <string>Authors</string> |
365 | </attribute> | 365 | </attribute> |
366 | <hbox> | 366 | <hbox> |
367 | <property stdset="1"> | 367 | <property stdset="1"> |
368 | <name>margin</name> | 368 | <name>margin</name> |
369 | <number>1</number> | 369 | <number>1</number> |
370 | </property> | 370 | </property> |
371 | <property stdset="1"> | 371 | <property stdset="1"> |
372 | <name>spacing</name> | 372 | <name>spacing</name> |
373 | <number>1</number> | 373 | <number>1</number> |
374 | </property> | 374 | </property> |
375 | <widget> | 375 | <widget> |
376 | <class>QTextBrowser</class> | 376 | <class>QTextBrowser</class> |
377 | <property stdset="1"> | 377 | <property stdset="1"> |
378 | <name>name</name> | 378 | <name>name</name> |
379 | <cstring>TextBrowser2</cstring> | 379 | <cstring>TextBrowser2</cstring> |
380 | </property> | 380 | </property> |
381 | <property stdset="1"> | 381 | <property stdset="1"> |
382 | <name>text</name> | 382 | <name>text</name> |
383 | <string><p> | 383 | <string><p> |
384 | <b>Rajko 'alwin' Albrecht</b> (alwin@handhelds.org)<br/> | 384 | <b>Rajko 'alwin' Albrecht</b> (alwin@handhelds.org)<br/> |
385 | <b>Holger 'Zecke' Freyther</b> (zecke@handhelds.org)<br/> | 385 | <b>Holger 'Zecke' Freyther</b> (zecke@handhelds.org)<br/> |
386 | <b>Chris 'Kergoth' Larson</b> (kergoth@handhelds.org)<br/> | 386 | <b>Chris 'Kergoth' Larson</b> (kergoth@handhelds.org)<br/> |
387 | <b>Michael 'Mickey' Lauer</b> (mickeyl@handhelds.org)<br/> | 387 | <b>Michael 'Mickey' Lauer</b> (mickeyl@handhelds.org)<br/> |
388 | <b>Lorn 'ljp' Potter</b> (ljp@handhelds.org)<br/> | 388 | <b>Lorn 'ljp' Potter</b> (ljp@handhelds.org)<br/> |
389 | <b>Max 'Harlekin' Reiss</b> (harlekin@handhelds.org)<br/> | 389 | <b>Max 'Harlekin' Reiss</b> (harlekin@handhelds.org)<br/> |
390 | <b>Dan 'drw' Williams</b> (drw@handhelds.org)</tt><br/> | 390 | <b>Dan 'drw' Williams</b> (drw@handhelds.org)</tt><br/> |
391 | </p></string> | 391 | </p></string> |
392 | </property> | 392 | </property> |
393 | </widget> | 393 | </widget> |
394 | </hbox> | 394 | </hbox> |
395 | </widget> | 395 | </widget> |
396 | <widget> | 396 | <widget> |
397 | <class>QWidget</class> | 397 | <class>QWidget</class> |
398 | <property stdset="1"> | 398 | <property stdset="1"> |
399 | <name>name</name> | 399 | <name>name</name> |
400 | <cstring>tab</cstring> | 400 | <cstring>tab</cstring> |
401 | </property> | 401 | </property> |
402 | <attribute> | 402 | <attribute> |
403 | <name>title</name> | 403 | <name>title</name> |
404 | <string>Report</string> | 404 | <string>Report</string> |
405 | </attribute> | 405 | </attribute> |
406 | <hbox> | 406 | <hbox> |
407 | <property stdset="1"> | 407 | <property stdset="1"> |
408 | <name>margin</name> | 408 | <name>margin</name> |
409 | <number>1</number> | 409 | <number>1</number> |
410 | </property> | 410 | </property> |
411 | <property stdset="1"> | 411 | <property stdset="1"> |
412 | <name>spacing</name> | 412 | <name>spacing</name> |
413 | <number>1</number> | 413 | <number>1</number> |
414 | </property> | 414 | </property> |
415 | <widget> | 415 | <widget> |
416 | <class>QTextBrowser</class> | 416 | <class>QTextBrowser</class> |
417 | <property stdset="1"> | 417 | <property stdset="1"> |
418 | <name>name</name> | 418 | <name>name</name> |
419 | <cstring>TextBrowser3</cstring> | 419 | <cstring>TextBrowser3</cstring> |
420 | </property> | 420 | </property> |
421 | <property stdset="1"> | 421 | <property stdset="1"> |
422 | <name>text</name> | 422 | <name>text</name> |
423 | <string><p> | 423 | <string><p>Software can always be improved, and the Opie Team is ready to do so. However, you - the user - must tell us when something does not work as expected or could be done better.</p> |
424 | Software can always be improved, and the KDE Team is ready to do so. However, you - the user - must tell us when something does not work as expected or could be done better. | 424 | <p>The Open Palmtop Integrated Environment has a bug tracking system. Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> to report bugs.</p> |
425 | </p> | 425 | <p>If you have a suggestion for improvement then you are welcome to use the bug tracking system to register your wish. Make sure you use the severity called "Feature Wish".</p></string> |
426 | <p> | ||
427 | The Open Palmtop Desktop Environment has a bug tracking system. Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> to report bugs. | ||
428 | </p> | ||
429 | <p> | ||
430 | If you have a suggestion for improvement then you are welcome to use the bug tracking system to register your wish. Make sure you use the severity called "Wishlist". | ||
431 | </p></string> | ||
432 | </property> | 426 | </property> |
433 | </widget> | 427 | </widget> |
434 | </hbox> | 428 | </hbox> |
435 | </widget> | 429 | </widget> |
436 | <widget> | 430 | <widget> |
437 | <class>QWidget</class> | 431 | <class>QWidget</class> |
438 | <property stdset="1"> | 432 | <property stdset="1"> |
439 | <name>name</name> | 433 | <name>name</name> |
440 | <cstring>tab</cstring> | 434 | <cstring>tab</cstring> |
441 | </property> | 435 | </property> |
442 | <attribute> | 436 | <attribute> |
443 | <name>title</name> | 437 | <name>title</name> |
444 | <string>Join</string> | 438 | <string>Join</string> |
445 | </attribute> | 439 | </attribute> |
446 | <vbox> | 440 | <vbox> |
447 | <property stdset="1"> | 441 | <property stdset="1"> |
448 | <name>margin</name> | 442 | <name>margin</name> |
449 | <number>1</number> | 443 | <number>1</number> |
450 | </property> | 444 | </property> |
451 | <property stdset="1"> | 445 | <property stdset="1"> |
452 | <name>spacing</name> | 446 | <name>spacing</name> |
453 | <number>1</number> | 447 | <number>1</number> |
454 | </property> | 448 | </property> |
455 | <widget> | 449 | <widget> |
456 | <class>QTextBrowser</class> | 450 | <class>QTextBrowser</class> |
457 | <property stdset="1"> | 451 | <property stdset="1"> |
458 | <name>name</name> | 452 | <name>name</name> |
459 | <cstring>TextBrowser4</cstring> | 453 | <cstring>TextBrowser4</cstring> |
460 | </property> | 454 | </property> |
461 | <property stdset="1"> | 455 | <property stdset="1"> |
462 | <name>text</name> | 456 | <name>text</name> |
463 | <string><p> | 457 | <string><p>You don't have to be a software developer to be a member of the Opie Team. You can join the national teams that translate program interfaces. You can provide graphics, themes, sounds and improved documentation. You decide!</p> |
464 | You don't have to be a software developer to be a member of the Opie Team. You can join the national teams that translate program interfaces. You can provide graphics, themes, sounds and improved documentation. You decide! | 458 | <p>Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> for information on some projects in which you can participate.</p> |
465 | </p> | 459 | <p>If you need more information or documentation, then a visit to <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> will provide you with what you need.</p></string> |
466 | <p> | ||
467 | Visit <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> for information on some projects in which you can participate. | ||
468 | </p> | ||
469 | <p> | ||
470 | If you need more information or documentation, then a visit to <a href="http://opie.handhelds.org/">http://opie.handhelds.org/</a> will provide you with what you need. | ||
471 | </p></string> | ||
472 | </property> | 460 | </property> |
473 | </widget> | 461 | </widget> |
474 | </vbox> | 462 | </vbox> |
475 | </widget> | 463 | </widget> |
476 | </widget> | 464 | </widget> |
477 | </grid> | 465 | </grid> |
478 | </widget> | 466 | </widget> |
479 | <images> | 467 | <images> |
480 | <image> | 468 | <image> |
481 | <name>image0</name> | 469 | <name>image0</name> |