[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
Re: [cdt-patch] Patch to add CDT content into the Eclipse 3.0 welcome framework
|
I have updated this patch to clean up
the image on the what's new link, added Dave Williams' "welcome.xml"
removal, and changed "CDT" to "C/C++" in a couple of
places.
Eclipse RC2 has the changes necessary
to see the results of this patch.
-
Dave
David Daoust/Ottawa/IBM@IBMCA
Sent by: cdt-patch-admin@xxxxxxxxxxx
06/11/2004 10:18 AM
Please respond to
cdt-patch |
|
To
| cdt-patch@xxxxxxxxxxx
|
cc
|
|
Subject
| [cdt-patch] Patch to add
CDT content into the Eclipse 3.0 welcome framework |
|
Here is a patch to "org.eclipse.cdt" that creates CDT items in
the Eclipse Welcome framework
Overview
add "CDT Online Docs" -->
link to online help
Tutorials
add "CDT Tutorials" -->
link to online help for tutorials
There is a commented out link to a "cheatsheet"
which is a copy of the Java hello world cheatsheet
Samples
There is a commented out link to a "sample"
this is very broken, but is a framework to show Dave Williams sample
program (eventually)
What's New
add "CDT" --> link to online
help section titled "What's new"
The eclipse base people have added anchor points for me (this morning),
and the functionallity will show up in their next build (maybe RC2?)
https://bugs.eclipse.org/bugs/show_bug.cgi?id=66510
- Dave
[attachment "welcome.txt" deleted by David Daoust/Ottawa/IBM]
Index: about.ini
===================================================================
RCS file: /home/tools/org.eclipse.cdt-releng/org.eclipse.cdt/about.ini,v
retrieving revision 1.1
diff -u -r1.1 about.ini
--- about.ini 16 Jul 2002 01:48:12 -0000 1.1
+++ about.ini 14 Jun 2004 11:43:32 -0000
@@ -19,9 +19,6 @@
# Property "appName" contains name of the application (translated)
# needed for primary features only
-# Property "welcomePage" contains path to welcome page (special XML-based format)
-welcomePage=$nl$/welcome.xml
-
# Property "welcomePerspective" contains the id of the perspective in which the
# welcome page is to be opened.
# optional
Index: plugin.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt-releng/org.eclipse.cdt/plugin.properties,v
retrieving revision 1.1
diff -u -r1.1 plugin.properties
--- plugin.properties 16 Jul 2002 01:48:12 -0000 1.1
+++ plugin.properties 14 Jun 2004 11:43:32 -0000
@@ -1,2 +1,4 @@
pluginName=Eclipse C/C++ Development Tools
-providerName=Eclipse.org
\ No newline at end of file
+providerName=Eclipse.org
+cheatsheet.helloworld.desc=Create a Hello World Program in C++
+cheatsheet.helloworld.name=Hello World
\ No newline at end of file
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt-releng/org.eclipse.cdt/plugin.xml,v
retrieving revision 1.6
diff -u -r1.6 plugin.xml
--- plugin.xml 25 Nov 2003 18:22:37 -0000 1.6
+++ plugin.xml 14 Jun 2004 11:43:32 -0000
@@ -5,7 +5,40 @@
name="%pluginName"
version="2.0.0"
provider-name="%providerName">
+ <requires>
+ <import plugin="org.eclipse.ui.intro"/>
+ <import plugin="org.eclipse.ui.cheatsheets"/>
+ </requires>
+ <extension
+ point="org.eclipse.ui.intro.configExtension">
+ <configExtension
+ configId="org.eclipse.platform.introConfig"
+ content="$nl$/overviewExtensionContent.xml"/>
+
+ <configExtension
+ configId="org.eclipse.platform.introConfig"
+ content="$nl$/tutorialsExtensionContent.xml"/>
+
+ <configExtension
+ configId="org.eclipse.platform.introConfig"
+ content="$nl$/samplesExtensionContent.xml"/>
+
+ <configExtension
+ configId="org.eclipse.platform.introConfig"
+ content="$nl$/whatsNewExtensionContent.xml"/>
+
+ </extension>
+
+ <extension point="org.eclipse.ui.cheatsheets.cheatSheetContent">
+ <cheatsheet
+ name="%cheatsheet.helloworld.name"
+ contentFile="$nl$/cheatsheets/HelloWorld.xml"
+ id="org.eclipse.cdt.helloworld">
+ <description>%cheatsheet.helloworld.desc</description>
+ </cheatsheet>
+
+ </extension>
<runtime>
</runtime>
Index: welcome.xml
===================================================================
RCS file: welcome.xml
diff -N welcome.xml
--- welcome.xml 8 Aug 2003 13:08:37 -0000 1.5
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<welcomePage
- title="Eclipse C/C++ Development Tools (CDT)">
- <intro>The CDT project provides a set of plugins that implement a C/C++ IDE.
-It adds a C/C++ Perspective to the Eclipse Workbench that supports C/C++ development
-with a number of views, wizards, a powerful editor, and a debugger. The CDT is designed
-to provide an extensible architecture, that will provide support for integration of tools
-provided by Independent Software Vendors.
-
-This page will help familiarize you with the Eclipse C/C++ development tooling.
-To get started, read the sections below and click on the related links. </intro>
-
- <item><b>The C/C++ perspective </b>
-To open the C/C++ perspective: Click <b>Window > Open Perspective > C/C++ Development. </b></item>
-
- <item><b>What's new </b>
-Learn about the new features in this version of the CDT.
- <topic href="/org.eclipse.cdt.doc.user/cdt_c_whatsnew.htm">What's new </topic></item>
-
- <item><b>CDT Tutorial </b>
-This quick tutorial guides you through the basic steps to get started.
- <topic href="/org.eclipse.cdt.doc.user/cdt_o_tutorial.htm">Tutorial </topic></item>
-
- <item><b>CppUnit integration and other contributed plugins </b>
-Visit the <topic href="http://www.eclipse.org/cdt/">CDT Community Webpage</topic> to find a list of contributed plugins
-and a CppUnit integration in the CDT.</item>
-
-
-</welcomePage>
Index: overviewExtensionContent.xml
===================================================================
RCS file: overviewExtensionContent.xml
diff -N overviewExtensionContent.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ overviewExtensionContent.xml 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+ <!-- Extension to the SDK Overview Page. -->
+ <extensionContent alt-style="css/swt.properties" style="css/overview.css" path="overview/page-content/overview-links/endAnchor">
+<!--
+ <link label="CDT Overview" url="http://org.eclipse.ui.intro/showPage?id=cdtoverview" id="cdt">
+ <text>Find out what CDT is all about</text>
+ </link>
+-->
+ <link label="C/C++ Online Docs" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.cdt.doc.user/concepts/cdt_o_concepts.htm" id="cdt">
+ <text>Open the online documentation for the CDT</text>
+ </link>
+ </extensionContent>
+<!--
+ <page alt-style="css/swt.properties" style="css/overview.css" id="cdtoverview" style-id="page">
+ <title style-id="intro-header">Welcome to CDT 2.0</title>
+ <group id="links-background">
+ <group id="page-links">
+ <link label="C/C++ development" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.cdt.doc.user/concepts/cdt_o_concepts.htm" id="cdt">
+ <text>Get familiar with developing C++ programs using Eclipse</text>
+ </link>
+ </group>
+ </group>
+ <group id="action-links">
+ <link url="http://org.eclipse.ui.intro/close" label="Workbench" id="workbench">
+ <text>Go to the workbench</text>
+ </link>
+ </group>
+ </page>
+-->
+</introContent>
Index: samplesExtensionContent.xml
===================================================================
RCS file: samplesExtensionContent.xml
diff -N samplesExtensionContent.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ samplesExtensionContent.xml 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+ <!-- Extension to the SDK Samples Page. -->
+ <extensionContent path="samples/page-content/endAnchor">
+ <!--
+ <group label="C/C++" id="workbench" style-id="samples-group">
+ <link label="C/C++ Sample program" url="http://org.eclipse.ui.intro/runAction?pluginId=org.eclipse.pde.ui&class=org.eclipse.pde.ui.internal.samples.ShowSampleAction&id=org.eclipse.sdk.samples.javaeditor" id="java-editor" style-id="sample-link">
+ <text>Demonstrates standard features available to the CDT</text>
+ </link>
+ </group>
+ -->
+ </extensionContent>
+</introContent>
Index: tutorialsExtensionContent.xml
===================================================================
RCS file: tutorialsExtensionContent.xml
diff -N tutorialsExtensionContent.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ tutorialsExtensionContent.xml 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+ <!-- Extension to the SDK Tutorials Page. -->
+ <extensionContent alt-style="css/swt.properties" style="css/overview.css" path="tutorials/page-content/endAnchor">
+ <group label="C/C++ Development" id="java" style-id="tutorials-group">
+ <!--
+ <link
+ url="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&input=org.eclipse.cdt.helloworld"
+ label="CheatSheet to Build a simple C/C++ application"
+ id="hello-world-cdt"
+ style-id="tutorials-link">
+ <text>Create a small C/C++ program that will print "Hello, World" on the console</text>
+ </link>
+ -->
+ <link
+ label="CDT Tutorials"
+ url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.cdt.doc.user/getting_started/cdt_o_tutorial.htm"
+ id="hello-world-cdt"
+ style-id="tutorials-link">
+ <text>Go to the online help to see the tutorials</text>
+ </link>
+ </group>
+ </extensionContent>
+</introContent>
Index: whatsNewExtensionContent.xml
===================================================================
RCS file: whatsNewExtensionContent.xml
diff -N whatsNewExtensionContent.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ whatsNewExtensionContent.xml 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<introContent>
+ <!-- Extension to the SDK Overview Page. -->
+ <extensionContent path="news/page-content/endAnchor">
+ <group id="news-links">
+ <link label="C/C++" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm" id="new-and-noteworthy">
+ <text>What's new with the CDT</text>
+ </link>
+ </group>
+ </extensionContent>
+</introContent>
Index: cheatsheets/HelloWorld.xml
===================================================================
RCS file: cheatsheets/HelloWorld.xml
diff -N cheatsheets/HelloWorld.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ cheatsheets/HelloWorld.xml 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<cheatsheet title="Simple C++ Application">
+
+ <intro
+ href="/org.eclipse.ui.cheatsheets.doc/tasks/tcheatst.htm">
+ <description>
+Welcome to the Hello, World Java tutorial.
+It will help you build the famous "hello world" application and try it out. You will create a java project, and a java class that will print "hello world" in the console when run.
+Let's get started!
+ </description>
+</intro>
+
+ <item
+ href="/org.eclipse.platform.doc.user/concepts/concepts-4.htm"
+ title="Open the Java Perspective">
+ <action
+ pluginId="org.eclipse.ui.cheatsheets"
+ class="org.eclipse.ui.internal.cheatsheets.actions.OpenPerspective"
+ param1="org.eclipse.jdt.ui.JavaPerspective"/>
+ <description>
+Select Window->Open Perspective->Java in the menubar at the top of the workbench.
+This step changes the perspective to set up the Eclipse workbench for Java development.
+You can click the "Click to Perform" button to have the "Java" perspective opened automatically.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/tasks/tasks-12.htm"
+ title="Create a java project"
+ skip="true">
+ <action
+ pluginId="org.eclipse.jdt.ui"
+ class="org.eclipse.jdt.internal.ui.wizards.OpenProjectWizardAction"/>
+ <description>
+The first thing you will need is a Java Project.
+If you already have a java project in your workspace that you would like to use, you may skip this step by pressing the "skip" button. If not, you may press the "click to perform" button to spawn the New Java Project wizard.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/gettingStarted/qs-9.htm"
+ title="Create your HelloWorld class">
+ <action
+ pluginId="org.eclipse.jdt.ui"
+ class="org.eclipse.jdt.internal.ui.wizards.OpenClassWizardAction"/>
+ <description>
+You should now have a Java Project in your workspace.
+The next step in building your hello world application is to create your HelloWorld class. You may do this by either pressing the "click to perform" button below to launch the New Java Class wizard, or you may use the Eclipse tools to do it, by using the File->New->Class action.
+When you use the wizard, make sure that you specify that you would like to have a "main" method added. Name your class "HelloWorld". If you use the button below it will be pre-filled for you.
+If you do not use the "click to perform" button below, press the "click when done" button to advance to the next step in building your hello world app.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/tasks/tasks-54.htm"
+ title="Add a System.out.println line in your main method">
+ <description>
+Now that you have your HelloWorld class,
+In the "public static void main" method, add the following statement: System.out.println("Hello world!"); and save your changes. Press the "click when done" button below when finished.
+ </description>
+</item>
+
+ <item
+ href="/org.eclipse.jdt.doc.user/gettingStarted/qs-12.htm"
+ title="Test your application">
+ <description>
+The final moment has arrived! You are ready to test your HelloWorld class.
+Select your class in the package explorer (the java tree view on the left of the workbench window in the Java Perspective.). When your HelloWorld class is selected, press the down arrow beside the running man icon in the toolbar and select Run As->application. Hello world! should be printed in your "Console" view.
+Congratulations! You have built your hello world application and it worked!
+ </description>
+</item>
+
+</cheatsheet>
Index: css/overview.css
===================================================================
RCS file: css/overview.css
diff -N css/overview.css
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/overview.css 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,9 @@
+a#cdt img { background-image : url(graphics/obj_48/cdtdev_obj.gif); }
+a#cdt:hover img { background-image : url(graphics/obj_48/cdtdevhov_obj.gif); }
+
+a#hello-world-cdt img { background-image : url(graphics/obj_48/capp_obj.gif); }
+a#hello-world-cdt:hover img { background-image : url(graphics/obj_48/capphov_obj.gif); }
+
+body {
+ background-image : url(../../org.eclipse.platform/css/graphics/contentpage/overview_wtr.jpg);
+}
Index: css/swt.properties
===================================================================
RCS file: css/swt.properties
diff -N css/swt.properties
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/swt.properties 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,8 @@
+
+overview.page-content.overview-links.cdt.link-icon = css/graphics/obj_48/cdtdev_obj.gif
+
+tutorials.page-content.cdt.layout.ncolumns = 2
+tutorials.page-content.cdt.hello-world.link-icon = css/graphics/obj_48/cdtdev_obj.gif
+
+overview.subtitle-id = overview/page-content/page-title
+overview.description-id = overview/page-content/page-description
Index: css/graphics/obj_48/capp_obj.gif
===================================================================
RCS file: css/graphics/obj_48/capp_obj.gif
diff -N css/graphics/obj_48/capp_obj.gif
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/graphics/obj_48/capp_obj.gif 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,13 @@
+GIF89a4 4 ÷ ÎÔÔºººÌÌÌÚàâ5f?s¡···¦¦¦www¤¤¤???ÂÂÂ???áââüþÿæ÷ÿÒñÿã÷ÿèøÿØóÿÝõÿÛôÿßõÿÔòÿêùÿáöÿÐñÿÖóÿïïïúýÿìùÿ÷ýÿñûÿóûÿõüÿîúÿ¯¯¯ÏÏÏÎðÿíõõÍðÿßßßÇÇÇ÷÷÷4k×××2iÍïþg¹8gE~7m?¹¹¹ÉÉÉÁÕãBu£9nççç/gÂÃÃ;hÊìûíííGx¥ÉêøÅÛæÀàïîîîáááËËËK|§Ìîý²ÉÜDw¤O~©ÃØå¼½¾R?«ÐÐÐIz¦<m±±±Ããñ;pãêê¿Ö㥥¥Pª=q Ìïþëùþ6i©ÅÑÄÄÄ1f¿¿¿ÄÙæíõôËíü¦¯õüþÆÆÆÂ×ã³³³9l 8tM}¨ôûýÇè÷¯µ¸¶¶¶¼¼¼Z?¨áðõJÀ×äìôô$[?ëó󩯲0h²ÂÈÅÑÖÝôþÐáí«««´¸º3jßîóäèê²¶¸®ÌÙ@p¯ÉÕ ¬®ÄæôÑÚÞðúüÚóþ÷üþÄÙå=n?=r¡´´´?«Ê½ÀÁÀÍÓÆÉǺÙç°¹¼w¾ÃÅÆ¤À̼ÉÏáèçÉÔÙ¦±³îöùÂäòÄäóy ¿ÜãâÝäå?©«®¸èðï²¾çò÷Éëúîùþ ¼Ç£½ÉØßÞÀÂÃäöþ·Ãùýþúüý²Ðݤª´ÍØ´ÓàãïõÕÝáÜôþ¼ÜêÌíüïúüøûý·»½0b0e±ÉÆæõâöþòûüÛëñÈÊÊÝíöÍØÜÅåô×èïÄåöËßèÇçö¶¿ÂÖÜÜç÷þÈéøÏâêÊëúéøþéñðêòñÒØ×ÔÚÚ£¯±íùû·Å̹ÑÜ«·ºáöþàæçåçèßõþãåæìùþåììæîíçïî·Ö䫲µ©´¶¬±³ÓåíÅÇÈ.c:o½Õßñøû?o>o?ëôøª»Â®½Ä³»¿N}©«ÈÕÿÿÿÿÿÿ!ù ÿ , 4 4 þ ý H° Á*\Ȱ¡Ã#JH±¢Å3jø¯£Ç? CR¡Ç(Rª\ɲ¥K:ìxÃÍ8sêÜÉSfB?sJ´¨Ñ£H}"ôH?Ó§P£J?JUéA?¡hÝʵ«×¯`ôèãɳhÓª]Ëví$±=
+0²ñ ¸OÒ½ ?$ Ä_¼å,8ÁÅßÝ3ÿÝR×à
+Ä=¢¹ À6nÓb
+0uj§+WÐ¥S§*6=zðà!C
ïß¿}öçqªT«h½âô
ß¡[ºÖaòU¤È¨Eo´RF .)Âþ/m¸G1`©R
T3cÑÞT2äî¿(ÿÿ úw>æu4G7_h à*ÁüDa.I?ÿØ J"vø 'y("?r´Ë,¶èâ|#ây¼hãì`¨F8àlàã?@n ¢2D(b?Hî?!øÌ3ÁPF9?DB)¢X?!ù¤QÁ`Y!Ê`Á"©&.ÐÄ)ç?³ä)"?|jÙOQñ
+4gjèvâçtyè¡Jþ¹TGjtbMfªiRãé¦ fê¼Á©¨¦A¢ª¶Úêþ^Õ
+~8óÀ¸æú@¢ºöÚ«!ðI2kì±$ì²Ë
+áÌÁ´ÔVA¢Ô2*µÜ
+¡ìòÁ¸äûA¢ä.¢¹ævñðÂ
+ ôÖk/ ÖKæ½üV!ÜÂÀB¢ið²`Æ)¢ ñÄð
+ß,¡±w¼ 7CÏ$\ògc'?Kìò#À!
¸ÂÍ8çÓxg:Ì¿äãÁÑH'í??¶\,ÃÓ2´àJW-\¬cÍj-Swíõ×`
+¶
+[
+pDh§öÚl·½vLXÇÕQ Ôm÷Ýxç÷Þä÷ß$u&øànøá'NQÜ ;
Index: css/graphics/obj_48/capphov_obj.gif
===================================================================
RCS file: css/graphics/obj_48/capphov_obj.gif
diff -N css/graphics/obj_48/capphov_obj.gif
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/graphics/obj_48/capphov_obj.gif 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,8 @@
+GIF89a4 4 ÷ ÎÔÔºººÌÌÌÚàâ5f?s¡···¦¦¦www¤¤¤???ÂÂÂ???áââüþÿæ÷ÿÒñÿã÷ÿèøÿØóÿÝõÿÛôÿßõÿÔòÿêùÿáöÿÐñÿÖóÿïïïúýÿìùÿ÷ýÿñûÿóûÿõüÿîúÿ¯¯¯ÏÏÏÎðÿíõõÍðÿßßßÇÇÇ÷÷÷4k×××2iÍïþg¹8gE~7m?¹¹¹ÉÉÉÁÕãBu£9nççç/gÂÃÃ;hÊìûíííGx¥ÉêøÅÛæÀàïîîîáááËËËK|§Ìîý²ÉÜDw¤O~©ÃØå¼½¾R?«ÐÐÐIz¦<m±±±Ããñ;pãêê¿Ö㥥¥Pª=q Ìïþëùþ6i©ÅÑÄÄÄ1f¿¿¿ÄÙæíõôËíü¦¯õüþÆÆÆÂ×ã³³³9l 8tM}¨ôûýÇè÷¯µ¸¶¶¶¼¼¼Z?¨áðõJÀ×äìôô$[?ëó󩯲0h²ÂÈÅÑÖÝôþÐáí«««´¸º3jßîóäèê²¶¸®ÌÙ@p¯ÉÕ ¬®ÄæôÑÚÞðúüÚóþ÷üþÄÙå=n?=r¡´´´?«Ê½ÀÁÀÍÓÆÉǺÙç°¹¼w¾ÃÅÆ¤À̼ÉÏáèçÉÔÙ¦±³îöùÂäòÄäóy ¿ÜãâÝäå?©«®¸èðï²¾çò÷Éëúîùþ ¼Ç£½ÉØßÞÀÂÃäöþ·Ãùýþúüý²Ðݤª´ÍØ´ÓàãïõÕÝáÜôþ¼ÜêÌíüïúüøûý·»½0b0e±ÉÆæõâöþòûüÛëñÈÊÊÝíöÍØÜÅåô×èïÄåöËßèÇçö¶¿ÂÖÜÜç÷þÈéøÏâêÊëúéøþéñðêòñÒØ×ÔÚÚ£¯±íùû·Å̹ÑÜ«·ºáöþàæçåçèßõþãåæìùþåììæîíçïî·Ö䫲µ©´¶¬±³ÓåíÅÇÈ.c:o½Õßñøû?o>o?ëôøª»Â®½Ä³»¿N}©«ÈÕÿÿÿÿÿÿ!ù ÿ , 4 4 þ ÿ ø?ú)\Ȱ¡Ã
+;¨`Á? Å?Jô+ñ¢âÅ? Ar0¡±Ç?&:h²¥Ë-t0?²Ã8sþ[1ÓbJ:ºäÑS Bäé±¥P?(Q°Ë¨X¶èg?ªÅ(ÂK¶¬Y³,8øââ
+pãÊ?K·®]Os ¯ß¿lñh¿??(^̸±ãÇ?/*ü
+?åË3kÞÌYòá>,Mº´éÓ¨OOòüQ°cËM»6m¬/Fym»7í ü! $H $þ¢ä¶èÚ·óØ8pøËãÈYüá¶8Ùm?çà{þßXNÍ% ¶qk©Sã<]¹.?:UÙ´éÑ2(( >?7Ш¤²
+-¯pò?Ü¢Ë:øRD£,òÆ Q\pÂ$(??¡,ETQ)ÍÍÕ1Ä5@xøJÄ@)$?'èâ?stó
L6é$lÀÏS>iei(éeä!æü|9dGÊÑN.´éælðÍtæç?°s¤á³ÁºAcÊ0å&ºÇTà3Ï?F*é2éfjÆpäF *j)¨9ꪸYBþDP 무RPj2Ì¢ëµöº)wYDÅ7Ð j챨ޫ®KÐq*²È.
+ìGjtbMØf«mÊRãí¶àfëN¼Á¹è¦?²ê¶Û.Ó^dÎ<`ï½ø> l¾üòkÈ|l°Ê¬°Âù3` ñÄc ìÄÍÊPñÆÂ)#»| òÈ$ ìÈKYrÉ]<qä¼°BÂÌ4×L²4jóÎ Æ ÷ ôÐD ìÐ¥´,G¢q("D-õÔ"|Sê7Kd=&Õ\orä
+ãÐ3ÂØd}ÆÁÜZçe·}ÆðD!n`÷Ýxà?¡ÕuâÚBÞ+ã39Áx`øá{à?-VËà¸-8à@âÈ]z d9¶Hîùç .zè6&Q[Á!À
+´îúë°Ç.;ìiôÂD^@¼÷îûïÀ/¼ZYUV[UäÔñXMeRÌ'ÅÔ@?EQ4ÒMÖ¿ÄSö>©tU÷0ÉþEmÔù½PRæDô׿?D} ;
Index: css/graphics/obj_48/cdtdev_obj.gif
===================================================================
RCS file: css/graphics/obj_48/cdtdev_obj.gif
diff -N css/graphics/obj_48/cdtdev_obj.gif
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/graphics/obj_48/cdtdev_obj.gif 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,16 @@
+GIF89a4 4 ÷ 9BJ)RZ¥)c¥1c!cZcµ)c½ks9k1kµ1kÆ)kÖsss{csRs1sµks½BsÆ)sÆ1sÆJsÖ9sç{RB{ZB{R{k{J{R{¥B{µB{µZ{Æ9{ÆZ{Æs{Î1{Î9{Þ!RBZBZJ{sµkÆJÎBÎJÖ1ÖcZBZJcJcRsRs{µ{½RccµZÎJÎRÎsÖBï)Z9c9cBkR½Æ½ÎÖZÖcÞBsZscZ¥Æ{µsÎcÎÖcÖk¥sZ¥{k¥{¥Æ¥Î¥µ¥½{¥Æ{¥Öc¥Ös¥Þs¥ï9k9kΥεÞ{ÞÞε{JµRµcµsµµ¥ÖµÎµÖµµÆµ½µÖµÞµïR½R½Z½R½Z½k½s½¥½½µÞ½ç½ç½ç½ïsÆcÆcÆkÆkÆsÆ{Æ¥{Æ{Æ¥ÆµÆ½ÞÆÆÞÆÎµÆç¥Æ÷kÎsÎ¥sÎ¥{ΥνµÎÆçÎçÎïÎï¥ÎïÎïµÎ÷Î÷ÖÖÖµÖ½ÖÆµÖÎÆÖÎçÖÖÖÖÖçÖÖïÖïÖïµÖï½Ö÷Ö÷ÞµÞ½Þ½ÞÆÞÆ¥ÞÖïÞÞÎÞÞÞÞÞïÞÞ÷ÞïÆÞïÎÞ÷½ÞÿçÆ¥çÎçÎ¥çνçÖ½çÞÞçÞïççÞçç÷ç÷Æç÷Îç÷Öç÷ÞçÿÆïÎ¥ïÖ¥ïÖïçÞïç÷ïïçïï÷ï÷Þï÷çïÿÎïÿÖïÿÞ÷Þµ÷çµ÷ç½÷çÞ÷ï½÷ï÷÷÷÷÷÷ÿ÷ÿÞ÷ÿç÷ÿï÷ÿ÷ÿ÷Æÿ÷ïÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ, 4 4 þ ß H° Á*\Ȱ¡Ã#JH±¢Å3Ndê!m_î£1"(*°îpt
cYI
í®ÉYé
+_pZƳ§»¯yR¥jÕ'U~¡bGS;
Ùù" è»dºÄ?g
+5dÇìPùLW.£ b5¯®á¼~EVÊ$\«T¥¢Ä)Ò ¶@ÝÆk5ºT$±Zµ*'I?þRÔ¬Wes±GÖ¯
L:«×Ó¤Ht ?Öf&W(y} 3Vpá:³f?wò)ÒÚÚ®ðséóXµa²Vk
[;ü{ÒâÆ¦þJâð?0¯9£,Ö+÷Â(ÙÁ·Ü¹vX/?y¯ì 0ÚÈL{¯\ÈL§Ä1Õl÷5am\*ÃG1S0æãÎ9ö"y´ÑFL(?ÌÇeÌH"i?<2
+£DÌ¢@æø
+&
+Z±Dl:L8°°ÁSª°Â
+6Øp!ÂD,jsÎ;#CÙ/ntð?Yü Bäà^LáLa§|>¹?Î`C ?çÉÌ?a
+1ÏC-¥ôñC?G\$
+
+Å¢Ä+?6fKe?7þÑxã
+4Ï3Ê(qP^4ÚÊ$}=âÈ t¬ ?W ÃL(Ê:³,ôñÌ«ÛpÀµ×ÒrK" Ñ*_l@_<ò!ÌjBW yä+Ê2mÓ~c-¶øÖ¢ #q QÅ*R\覻?BWèÁεç³LãÍ6ëàk±(ÀqÆ9lPG¹ç"ò³Û0bÉ+n?H1ÏDsïµêÌ ÆqÅâæ8¬È¨Q2Bíö¢$ݶCÌøÖ/Î]hut*ò ?Ð!´Bb\ñtz ²Ç2(ÂH/76k²HZÀ ÄulMìþs|?Ð%L I*6!Â&$¢I-Ãà»M4ø.âZ I ?o®Â
+9³¯ÀðÇg,"J-øFÓ8¶ôq"ÀÀ!ô~H%bI6]qW!A«wëù
+S(rç
+T0,?IÇqÅòiH!ÄÏOM½ä¶w!40?/¡DòLHpBDØÝc_Îܽ$`¿¨9ZÔ¢ 3?Ý´¯8 [Bx_Ð \ıa?\ÄWÕð4` p@0bû]?0! v/È _Æ;¡ À?¼ 8À`?\ _1 ¾.P ^I~?Ã$Àâ± +
+à o°
+B(@°¶ (UÞ?
Ð P¯eÅàÍØ£@°à'¡°Ø &'t @ð-<Á FI?'¸À Ìä@²?8arå¶àdBQG&Þàô | .2¦aóÈL¦2ÉL ;
Index: css/graphics/obj_48/cdtdevhov_obj.gif
===================================================================
RCS file: css/graphics/obj_48/cdtdevhov_obj.gif
diff -N css/graphics/obj_48/cdtdevhov_obj.gif
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ css/graphics/obj_48/cdtdevhov_obj.gif 1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,17 @@
+GIF89a4 4 ÷ 9BJ)RZ¥)c¥1c!cZcµ)c½ks9k1kµ1kÆ)kÖsss{csRs1s½Bs½ksÆ)sÆ1sÆJsÖ9sç{RB{{{{R{k{J{R{¥B{µZ{Æ9{ÆZ{Î1{Î9{Þ!RBZBZJ{sµkÆJÎBÎJÖ1ÖcZBZJcJcRsRs{µ{½RccµZÎJÎRÎsÖBï)Z9c9cBkR½Æ½ÎÖZÖcÞBsZscZ¥Æ{µsÎcÎÖcÖk¥sZ¥{k¥{¥Æ¥Î¥µ¥½{¥Æ{¥Öc¥Ös¥Þs¥ï9k9kΥεÞ{ÞÞε{JµRµcµsµµ¥ÖµÎµÖµµµµµÆµ½µÖµÞµïR½R½Z½R½Z½s½¥½µÞ½ç½ç½ç½ïsÆcÆcÆkÆkÆsÆ{Æ¥{Æ{Æ¥ÆµÆ½ÞÆÆÆÆÆÞÆÎµÆç¥Æ÷kÎsÎ¥sÎ¥{ΥνµÎÆçÎÎÎÎçÎïÎï¥ÎïÎïµÎ÷ÖÖÖµÖ½ÖÆµÖÎÆÖÎçÖÖÖÖÖçÖÖïÖïÖïµÖï½Ö÷Ö÷ÞµÞ½Þ½ÞÆÞÆ¥ÞÖïÞÞÎÞÞÞÞÞïÞÞ÷ÞïÆÞïÎÞ÷½ÞÿçÆ¥çÎçÎ¥çνçÖ½çÞïççÞççççç÷ç÷Æç÷Îç÷Öç÷ÞçÿÆïÎ¥ïÖ¥ïÖïçÞïç÷ïïçïïïïï÷ï÷Þï÷çïÿÎïÿÖïÿÞ÷Þµ÷çµ÷ç½÷çÞ÷ï½÷ï÷÷÷÷÷÷ÿ÷ÿÞ÷ÿç÷ÿï÷ÿ÷ÿ÷Æÿ÷ïÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ, 4 4 þ ã o¦+,8$TÈ?¡Ã
FdÈâ
+¦m3ÜöÃX59rÛ¨oBÅ:0cjDÇŨ,ÉÜÉ30Y:ëI4¦3 ·å,ÊäÏ?oø4
©"ÔCܾà9f$7Y¼:2ÔXxRzu£ÙHt%+ð¶»x+Ù²áË?PÍýÂ6à±èÆÃöi«Uª@êË;2ß1dèÎIG!T9UÙ.râÈ]w-²;S@%Û¥kr¤G¤lL¨8²^«Å?»Ö:¡)Z=Või¤BS6ìý;õ8rÃ[¤+P"þE*¤{àô?ÜùR?V`uræÌ¡¶fIòåÍÕ)/ð<É`mè°ÃV$ļdpñC\5wÜ J.Þ1'I$¹IÇIÜX±À"¢, ÒÆ: bÚ5×aw
+}NÒdù
+#Á²C°0óÌ6Á#,C^F:´BkÄ%Ì*LBáwáARÇ?æm¨,:ì7`2#$, bæ%'&?5/¶VÍkLÂJ.ª0'^7à3)N:ð¤¦/$"¢Gm±DNºæÚ1kl wàMryf:I´Á:Æè °bhJHÜp
+þÄ+
+)¤P
+5ØP!²,`r¨é0ntðAYø BààÅ^HáÅ
+Ha¶Ü¶Ê«@]>ÍÊ
+3c|@*Å@3L1µò<PB.J^x8ÒH(|+K°L6ÜN,?J4àH8Ñ@cL)¥ÈFz?·9bG)|»Á0#JÊÏüË@#q7Þ `³Íµà
+ ?ð°ÊÒ$?<âH!t¬é@Vx
+K&°¤ÌÌËr@M85߬µ-0"ÇT mxEÛq4|kÅÌdbÔ²ô -ÔÓM;ZçMÊþ"qñØqÑ
2Új·@íF©Ð-MÖ6³C9 {ËqÆ^öÑ¢FÚKÔ´/{ìqÉêpq1µs¹åZgÞ
!¨0È RÇèßa,&î?H0.¤3?ÖÞ\¾É"rhñB¬QèuÐAð¥ÇsÉd¢LPÀ 'lb1Zw#?Ö õ$0ÄEaDÿE@?
+¾õb<ð@â
-´&
+øÝl8C(ð¢ á!a¡/V°¡¬ ÀÀ?]?C·6[?bzB@? Äþ2ñ?@±Á
+?A3Ȱv7¬ßâÐ
¼À
+À/v"D?! ,\F@(\¯g 5WÅ ÐIµDt,jQ+8 `0<AZC´+`
+` Oº(th 0À Np>¾@k·ÓÚ`ÐÀX$7õE+0à¸ÀF0Å Zc¥'` ?&°XBð¨²7ã£Ö.P ÐÆ-cSZ@°À0/ µS CO)? P@?·@ :pm&XÁ0ðÌrÚÌÁܲM?-pH?¼
+à pBøÉ¥\!1<ñ°'Tà¢Èh@[Ð9ö$O´?4asHé¶Ðh¢)ÙÚÃth=è°à-6.ÊTÕ¯$e)½iÊSBÃ&µ'G¹ AXâѧ2)Ai Mº©HU$ñH¸XtÿëA2¶JäykE." ;