Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[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

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	11 Jun 2004 14:03:04 -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	11 Jun 2004 14:03:04 -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: 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++ 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 docs 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++ 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&amp;class=org.eclipse.pde.ui.internal.samples.ShowSampleAction&amp;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&amp;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,12 @@
+<?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="CDT" url="http://org.eclipse.ui.intro/showHelpTopic?id=/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm"; id="new-and-noteworthy">
+      <img id="overview_img" style-id="content-img" src="css/graphics/icons/etool/overview72.gif" alt="Overview"></img>
+      <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-&gt;Open Perspective-&gt;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-&gt;New-&gt;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-&gt;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 @@
+GIF89a44÷ÎÔÔºººÌÌÌÚàâ5f–?s¡···¦¦¦www¤¤¤???ÂÂÂ???áââüþÿæ÷ÿÒñÿã÷ÿèøÿØóÿÝõÿÛôÿßõÿÔòÿêùÿáöÿÐñÿÖóÿïï‡úýÿìùÿ÷ýÿñûÿóûÿõüÿîúÿ¯¯¯ÏÏÏÎðÿíõõÍðÿŸŸŸßßßÇÇÇ÷÷÷4kœ×××2i›Íïþg”¹8g–E~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 ¿ÜãâÝäå?©«”®¸èð¾çò÷Éëúîùþ ¼Ç£½ÉØßÞÀÂÃäöþœ·Ãùýþúüý²Ðݤª­´ÍØ´ÓàãïõÕÝáÜôþ¼ÜêÌíüïúüøûý·»½0b”0e–“±ÉÆæõâöþòûüÛëñÈÊÊÝíöÍØÜÅåô×èïÄåöËßèÇçö¶¿ÂÖÜÜç÷þÈéøÏâêÊëúéøþéñðêòñÒØ×ÔÚÚ£¯±íùû·Å̹ÑÜ«·ºáöþàæçåçèßõþãåæìùþåììæîíçïî·Ö䫲µ©´¶¬±³ÓåíÅÇÈ.c•:oŸ½Õßñøû?ož>o?ëôøª»Â®½Ä³»¿N}©«ÈÕÿÿÿÿÿÿ!ùÿ,44þý	H° Áƒ*\Ȱ¡Ã‡#JœH±¢Å‹3j”ø¯£Ç? CŠR¡Ç(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â™çt˜yè¡Jþ¹TGjtbM˜fªi‰Rã馠fꊖ¼Á©¨¦A¢ª¶Úê‰þ’^Ց
+~8óÀ­¸æú@¢ºöÚ«!ðI2kì±$Šì²Ë
+‚áÌ‚Á´ÔV‹A¢Ô2*ƒµÜ
+ƒ¡ŒìòÁ¸ä–ûA¢ä.¢¹ævñ†ðÂ
+	ôÖk/	‰ÖKæ½üV‚!ÜÂÀB¢“ið²`ˆÆ)¢ˆ ñÄ‹ð
+™ß,¡±ˆw¼	†7ŒCÏ$—\ò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 @@
+GIF89a44÷ÎÔÔºººÌÌÌÚàâ5f–?s¡···¦¦¦www¤¤¤???ÂÂÂ???áââüþÿæ÷ÿÒñÿã÷ÿèøÿØóÿÝõÿÛôÿßõÿÔòÿêùÿáöÿÐñÿÖóÿïï‡úýÿìùÿ÷ýÿñûÿóûÿõüÿîúÿ¯¯¯ÏÏÏÎðÿíõõÍðÿŸŸŸßßßÇÇÇ÷÷÷4kœ×××2i›Íïþg”¹8g–E~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 ¿ÜãâÝäå?©«”®¸èð¾çò÷Éëúîùþ ¼Ç£½ÉØßÞÀÂÃäöþœ·Ãùýþúüý²Ðݤª­´ÍØ´ÓàãïõÕÝáÜôþ¼ÜêÌíüïúüøûý·»½0b”0e–“±ÉÆæõâöþòûüÛëñÈÊÊÝíöÍØÜÅåô×èïÄåöËßèÇçö¶¿ÂÖÜÜç÷þÈéøÏâêÊëúéøþéñðêòñÒØ×ÔÚÚ£¯±íùû·Å̹ÑÜ«·ºáöþàæçåçèßõþãåæìùþåììæîíçïî·Ö䫲µ©´¶¬±³ÓåíÅÇÈ.c•:oŸ½Õßñøû?ož>o?ëôøª»Â®½Ä³»¿N}©«ÈÕÿÿÿÿÿÿ!ùÿ,44þÿ	ø?ú)\Ȱ¡Ã‡
+;¨`Á? Å?Jô+ñ¢âÅ? Ar0¡±„Ç?&:h²¥Ë‹-t0?²ÃŠ—8sþ[1ÓbJ:ƒºäÑS ›B“†ä鱄¥P?(Q°˨X¶èg?ªÅ(ŠK¶¬Y³,–8øââ
+pãÊ?K·®]ŸOœs ¯ß¿€lñh¿??(^̸±ãÇ?/*ü
+?å˘3kÞÌYòá‹>ž,Mº´éÓ¨OOòüQ€°c˞M»6m¬/Fym»7íü!	$H$þ¢ä¶èÚ·óØ8pøË‚ãÈYüá¶8Ùm?çà{þßXNÍ%¶q›k€©Sã<]¹‚.?:UÙ´éу2(( €>?7Ш¤²
+-¯pò?‡Ü¢Ë:˜øRD£,òÆ­Q†\p‘ˆ$’(??‰¡,ETQ)ÍÍÕ1Ä5@xø‹JÄ@)$?'èƒâ?stó…L6é$“lÀϔS>ie“™i(‰ée”œä!æ˜ü|9dGÊÑN.´éæ›lð͘tæç?°s¤ဳÁŸ€ºA˜cÊ0嘂&ºÇ‘Tà3Ï?F*é2阓fjƑpä“F †*j•Š)ƒ¨Ž9ꪸYBþDP 무RPj2̢똵öº)wŸYDÅ7Рj챨ޚ«®KÐq*²È.
+ìGjtbMØf«mÊRãí¶àfëNš–¼Á¹è¦?²ê¶Û.šÓ^dƒÎ<`ï½ø> l¾üòkȑ|’Œl°Ê¬°Â‚ù3„` ñÄc ìÄÍÊPñÆÂ)#»| òÈ$ ìÈKˆYrÉ]<qä¼°BÂÌ4×L‚²4—jóΕ	Æ÷„ ôÐD‡ ìÐ¥­´,G¢qŠ("D-õÔ"|Sê7Kd=&Õ\orä
+ãÐ3ÂØd“}ÆÁÜZçe·}Æð‰D!n€`÷Ýxƒà?¡ÕuâÚBހ+ã39Áx`øáˆ{à?-VËà¸-8à@â”È]z	dƒ9¶Hîù砇.zè6&Q[Á!À
+´îúë°Ç.;ìiôÂD^@¼÷îûïÀ/¼ZY•UV[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 @@
+GIF89a44÷9ŒB”Jœ)R­Z¥)c¥1c­!c­Zcµ)c½ks9kŒ1kµ1kÆ)kÖss„s{cs„Rsœ1sµks½BsÆ)sÆ1sÆJsÖ9sç{RB{ZB{ŒR{Œk{”J{”R{¥B{µB{µZ{Æ9{ÆZ{Æs{Î1{Î9{Þ!„RB„ZB„ZJ„„{„­s„µk„ÆJ„ÎB„ÎJ„Ö1„ÖcŒZBŒZJŒcJŒcRŒsRŒsŒŒ{µŒ{½Œ”RŒœcŒ­cŒµZŒÎJŒÎRŒÎsŒÖBŒï)”Z9”c9”cB”kR”„½”Œ­”ŒÆ””Œ”½””ÎŒ”ÖZ”Öc”ÞBœsZœscœ”Zœ”¥œ”Æœ­{œµsœÎcœÎ­œÖcœÖk¥sZ¥{k¥„{¥œÆ¥œÎ¥µ”¥½{¥Æ{¥Öc¥Ös¥Þs¥ï9­k9­„k­œÎ­¥Î­­œ­µŒ­Þ{­Þ„­Þε{Jµ„Rµ„cµŒsµ”Œµ¥Öµ­Îµ­ÖµµÆµ½œµÖŒµÞŒµïR½„R½„Z½ŒR½ŒZ½Œk½”s½¥œ½­œ½µÞ½çŒ½ç”½çœ½ïsƌcƔcƔkƜkƜsƜ{Æ¥{Æ­{Æ­¥Æµ­Æ½ÞÆÆÞÆÎµÆç¥Æ÷kΜsÎ¥sÎ¥{Î¥„νµÎÆçÎç­ÎïœÎï¥Îï­ÎïµÎ÷„Î÷ŒÖ­„Ö­ŒÖµŒÖ½œÖƵÖÎÆÖÎçÖÖÖÖÖçÖÖïÖï­ÖïµÖï½Ö÷ŒÖ÷œÞµ”Þ½”Þ½œÞÆœÞÆ¥ÞÖïÞÞÎÞÞÞÞÞïÞÞ÷ÞïÆÞïÎÞ÷½Þÿ­çÆ¥çΜçÎ¥çνçÖ½çÞÞçÞïççÞçç÷ç÷Æç÷Îç÷Öç÷ÞçÿÆïÎ¥ïÖ¥ïÖ­ïçÞïç÷ïïçïï÷ï÷Þï÷çïÿÎïÿÖïÿÞ÷Þµ÷çµ÷ç½÷çÞ÷ï½÷ï÷÷÷÷÷÷ÿ÷ÿÞ÷ÿç÷ÿï÷ÿ÷ÿ÷Æÿ÷ïÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ,44þß	H° Áƒ*\Ȱ¡Ã‡#JœH±¢Å‹3Ndê‹!m_î£1"(*°îpt…cYI…í®ÉœYé•
+_p€ZƳ§»—¯yR¥jÕ'UŸ’~¡bG’S;…Ùù"	è»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\*ÃG1S0æœãÎ9ö"y´ÑFL(?̋ǀeÌH"œi?<2‡
+™£D̘¢@æ”ø
+&
+Z±Dl:L‘8°°Á”Sª°Â
+6Øpƒ–!ÂD,jsÎ;#–CÙ/ntð?YüBäà^LáLa§ž|>¹?€Î`C ?çÉÌ?a
+1ÏC-¥ôñC”˜•?’G\$Žˆ
+
+Å¢Ä+‚ƒ?6fšKe˜?7þÑxã
+4Ï3Ê(q€P^4ڑÊ$}=âÈ t¬ ?WÃL(Ê:³,ôñÌ«ÛpÀµ×ÒrK"‰Ñƒ*_l@_‘<ò!ƒÌjBWyä+Ê2mÓ~c-¶øÖ¢	#qQÅ*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]qŠW„!A«w‡ëù
+S‹(rç…
+T0,?ILJqÅò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ˆå¶à‚dB•QG&Þàô| .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 @@
+GIF89a44÷9ŒB”Jœ)R­Z¥)c¥1c­!c­Zcµ)c½ks9kŒ1kµ1kÆ)kÖss„s{cs„Rsœ1s½Bs½ksÆ)sÆ1sÆJsÖ9sç{RB{{{{ŒR{Œk{”J{”R{¥B{µZ{Æ9{ÆZ{Î1{Î9{Þ!„RB„ZB„ZJ„„{„„„„­s„µk„ÆJ„ÎB„ÎJ„Ö1„ÖcŒZBŒZJŒcJŒcRŒsRŒsŒŒ{µŒ{½Œ”RŒœcŒ­cŒµZŒÎJŒÎRŒÎsŒÖBŒï)”Z9”c9”cB”kR”„½”Œ­”ŒÆ””Œ”½””ÎŒ”ÖZ”Öc”ÞBœsZœscœ”Zœ”¥œ”Æœœœœ­{œµsœÎcœÎ­œÖcœÖk¥sZ¥{k¥„{¥œÆ¥œÎ¥µ”¥½{¥Æ{¥Öc¥Ös¥Þs¥ï9­k9­„k­œÎ­¥Î­­œ­­­­µŒ­Þ{­Þ„­Þε{Jµ„RµŒcµŒsµ”Œµ¥Öµ­Îµ­ÖµµµµµÆµ½œµÖŒµÞŒµïR½„R½„Z½ŒR½ŒZ½”s½¥œ½µÞ½çŒ½ç”½çœ½ïsƌcƔcƔkƜkƜsƜ{Æ¥{Æ­{Æ­¥Æµ­Æ½ÞÆÆÆÆÆÞÆÎµÆç¥Æ÷kΜsÎ¥sÎ¥{Î¥„νµÎÆçÎÎÎÎç­ÎïœÎï¥Îï­ÎïµÎ÷„Ö­„Ö­ŒÖµŒÖ½œÖƵÖÎÆÖÎçÖÖÖÖÖçÖÖïÖï­ÖïµÖï½Ö÷ŒÖ÷œÞµ”Þ½”Þ½œÞÆœÞÆ¥ÞÖïÞÞÎÞÞÞÞÞïÞÞ÷ÞïÆÞïÎÞ÷½Þÿ­çÆ¥çΜçÎ¥çνçÖ½çÞïççÞççççç÷ç÷Æç÷Îç÷Öç÷ÞçÿÆïÎ¥ïÖ¥ïÖ­ïçÞïç÷ïïçïïïïï÷ï÷Þï÷çïÿÎïÿÖïÿÞ÷Þµ÷çµ÷ç½÷çÞ÷ï½÷ï÷÷÷÷÷÷ÿ÷ÿÞ÷ÿç÷ÿï÷ÿ÷ÿ÷Æÿ÷ïÿÿ÷ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ,44þã	o¦+,8$TÈ?¡Ã…FdÈâ
+¦m3Üö†Ã›X5Š9rÛ¨ŽoBŠł:’0cjDLJŨ•,€ÉÜÉ30›Y:ëI4¦3 ·å,ʔäÏ?oø4…©"ԗCܾà9f$Ÿ7Y¼œ:2ԔXxR„zu£Ù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$‘Ä€—¼dšpñ™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´Á:Æè °ˆbhJ˜ƒHÜpƒ
+þÄ+
+)¤P
+5ØPƒž!²„,`r“Ž¨éœ“0ntðAYøBààÅ^HáÅ
+Ha­¶Ü¶Ê«@]>“Í—‚Ê
+3c|@*Å@3L1µœò‡<PB›.‘J^x‘8ÒH(|+K°ŒL6Ü‹N,”?J4àH8Ñ@cL)¥ÈFz‡?·9bG)|»‡Á0#JÊÏüË@#q7Þ`³Íµà’
+ ?ð°ÊÒ$?<âH!t¬é@Vx
+K&°¤ÌÌËr@M85߬µ-›0"ÇTmˆxEÛq4|kÅÌdbÔ²ô -ԀÓM;ZçMÊþ"qœñØq›Ñ…2Új·Œ™™@íF©Ð-MÖ6³C9{ËqÆ^öу¢FÚKÔ´/{ìqÉêpq‹1µ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[?bzšƒB@?	Äþ2ñ?@‚±†Á
+?A†„3Ȱv7¬ßâЅ ¼À
+˜À/v"D?ˆ!	,\‚F@„(\¯g Ÿ5WÅ ÐIµDt,jQ+8`0‚<AZ“C´+`
+`Oº(th	0À	Np>¾@k·ÓÚ`ЀÀX$7õE+0à¸ÀF0­Å Zc¥'`?ˆ&°XBð€¨²•7ã£Ö.P€ÐÆ-cŒSZ@°À0/ µS€CO)?„ P@?·›@:pŽmŽ&XÁ0ðÌrÚ̘­ÁܲM?ž-p‚H€?¼
+à 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."’€;

Back to the top