Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [photran-dev] Question on support for Intel Fortran sourcefiletypes

Attached is a patch that adds the 3 additional Intel file types .i,
.i90, .F90.  It should be applied to plugin.xml in
org.eclipse.photran.core.

Thanks,

Bill

-----Original Message-----
From: photran-dev-bounces@xxxxxxxxxxx
[mailto:photran-dev-bounces@xxxxxxxxxxx] On Behalf Of Ralph Johnson
Sent: Friday, February 03, 2006 2:42 PM
To: photran-dev@xxxxxxxxxxx
Subject: RE: [photran-dev] Question on support for Intel Fortran
sourcefiletypes

>For the additional source file types, would you folks like to add them
>yourselves or would you like me to work on a patch and send it to you?

Patches are wonderful!  It is usually a lot easier to check that a patch
is reasonable than to make it ourselves.

-Ralph Johnson
_______________________________________________
photran-dev mailing list
photran-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/photran-dev
Index: plugin.xml
===================================================================
RCS file: /home/technology/org.eclipse.photran/org.eclipse.photran.core/plugin.xml,v
retrieving revision 1.5
diff -u -r1.5 plugin.xml
--- plugin.xml	25 Jan 2006 21:57:26 -0000	1.5
+++ plugin.xml	16 Feb 2006 18:45:15 -0000
@@ -170,12 +170,12 @@
       <!-- Individual content types for free and fixed format -->
 	  <content-type id="freeFormFortranSource" name="Fortran Source File - Free Format"
 		  base-type="org.eclipse.photran.core.fortranSource"
-		  file-extensions="f77,f90,f95"
+		  file-extensions="f77,f90,f95,i90,F90"
 		  priority="high"/>
 
 	  <content-type id="fixedFormFortranSource" name="Fortran Source File - Fixed Format"
 		  base-type="org.eclipse.photran.core.fortranSource"
-		  file-extensions="f,for,ftn,fix,fpp,F,FOR,FTN,FIX,FPP"
+		  file-extensions="f,for,ftn,fix,fpp,i,F,FOR,FTN,FIX,FPP"
 		  priority="high"/>
   </extension>
 

Back to the top