|
From: Christopher W. <caw...@us...> - 2005-09-21 21:59:17
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32749 Modified Files: plugin.xml Log Message: add more filetypes as text, remove describer (wasn't working as I expected for content types), add cgi and fcgi as ruby content types, also add a bunch of the scripts provided with rails as full filenames to match Index: plugin.xml =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/plugin.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** plugin.xml 21 Sep 2005 20:25:47 -0000 1.34 --- plugin.xml 21 Sep 2005 21:59:05 -0000 1.35 *************** *** 41,44 **** --- 41,56 ---- extension="rbw"> </fileTypes> + <fileTypes + type="text" + extension="cgi"> + </fileTypes> + <fileTypes + type="text" + extension="rhtml"> + </fileTypes> + <fileTypes + type="text" + extension="yml"> + </fileTypes> </extension> *************** *** 78,90 **** <!-- =================================================================================== --> <extension - id="org.rubypeople.rdt.core.rubySource" - name="RubySource" point="org.eclipse.core.runtime.contentTypes"> <!-- declares a content type for Ruby Source files --> <content-type base-type="org.eclipse.core.runtime.text" ! describer="org.rubypeople.rdt.core.runtime.RubyContentDescriber" ! file-extensions="rb,rbw" ! file-names="Rakefile" id="rubySource" name="%rubySourceName" --- 90,99 ---- <!-- =================================================================================== --> <extension point="org.eclipse.core.runtime.contentTypes"> <!-- declares a content type for Ruby Source files --> <content-type base-type="org.eclipse.core.runtime.text" ! file-extensions="rb,rbw,cgi,fcgi" ! file-names="Rakefile,generate,profiler,console,destroy,benchmarker,breakpointer,runner,server,rails,tracker,update,listener,breakpointer_for_gem,switchtower,switchtower_for_gem" id="rubySource" name="%rubySourceName" |