/jEdit/tags/jedit-4-3-pre18/macros/Properties/Create_Plugin_Announcement.bsh

# · Unknown · 335 lines · 310 code · 25 blank · 0 comment · 0 complexity · 5bc3ad2d1d618e05d096e42e8f192c46 MD5 · raw file

  1. /*
  2. * Create_plugin_release_text.bsh - a BeanShell macro script for the
  3. * jEdit text editor - Parses a plugin's properties file to create the
  4. * text for a plugin submission
  5. * Copyright ( C ) 2006 Jeffrey Hoyt
  6. * jchoyt@jedit.org
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. *
  22. */
  23. // import statements
  24. import javax.swing.border.*;
  25. // main routine
  26. void pluginTextDialog( View view, Buffer buffer )
  27. {
  28. this.view = view;
  29. this.buffer=buffer;
  30. File propsFile = new File( buffer.getPath() );
  31. Properties props = new Properties();
  32. InputStream in = new FileInputStream( propsFile );
  33. try
  34. {
  35. props.load( in );
  36. }
  37. finally
  38. {
  39. in.close();
  40. }
  41. //setup the strings we are interested in and can get from the props file
  42. String fileName = propsFile.getName();
  43. String pluginName = fileName.substring( 0, fileName.indexOf( '.' ) );
  44. String version = null;
  45. String jEditDependency = null;
  46. String javaDependency = null;
  47. String activate = null;
  48. ArrayList pluginDependencies = new ArrayList();
  49. ArrayList optionalPluginDependencies = new ArrayList();
  50. String announcement, shortDescription, source;
  51. String longDescription="";
  52. String classname=null;
  53. String longDescriptionFileName=null;
  54. //extract the properties we care about
  55. String start = "plugin.";
  56. for ( Enumeration e = props.keys(); e.hasMoreElements() ; )
  57. {
  58. String key = ( String ) e.nextElement();
  59. // Log.log( Log.DEBUG, this, "Parsing key: " + key );
  60. if( key.startsWith( start ) )
  61. {
  62. if( key.endsWith( ".activate" ) )
  63. {
  64. activate = props.getProperty( key );
  65. }
  66. else if( key.endsWith( ".version" ) )
  67. {
  68. version = props.getProperty( key );
  69. }
  70. else if( key.indexOf( ".depend." ) != -1 )
  71. {
  72. String value = props.getProperty( key ).trim();
  73. String[] parts = value.split( " " );
  74. if( parts.length < 2 )
  75. {
  76. Macros.error( view, "Badly constructed dependency ( " + value + " ). All dependencies must have at least 2 parts" );
  77. }
  78. if( parts[0].equals( "jedit" ) )
  79. {
  80. jEditDependency = parts[1];
  81. }
  82. else if( parts[0].equals( "jdk" ) )
  83. {
  84. javaDependency = parts[1];
  85. }
  86. else if( parts[0].equals( "plugin" ) )
  87. {
  88. pluginDependencies.add( parts[1] + " " + parts[2] );
  89. }
  90. else if( parts[0].equals( "optional" ) && parts[1].equals( "plugin" ) )
  91. {
  92. optionalPluginDependencies.add( parts[2] + " " + parts[3] );
  93. }
  94. else
  95. {
  96. Macros.error( view, "Unexpected dependency ( " + value + " ). See the javadoc of org.gjt.sp.jedit.EditPlugin" );
  97. }
  98. }
  99. else if(key.endsWith(".longdescription") )
  100. {
  101. longDescriptionFileName = props.getProperty( key );
  102. }
  103. else if(key.endsWith(".description") )
  104. {
  105. shortDescription = props.getProperty( key );
  106. }
  107. else if(key.endsWith(".name") )
  108. {
  109. if (props.getProperty( key ).equals(pluginName))
  110. {
  111. classname = key.substring( start.length(), key.length() - 5 );
  112. // Macros.error( view, "Classname is " + classname );
  113. }
  114. }
  115. }
  116. }
  117. // Macros.error( view, "Parsing complete" );
  118. if( javaDependency==null )
  119. {
  120. Macros.error( view, "You must supply a JDK dependency. Please add it and rerun the macro." );
  121. return;
  122. }
  123. if( jEditDependency==null )
  124. {
  125. Macros.error( view, "You must supply a jEdit dependency. Please add it and rerun the macro." );
  126. return;
  127. }
  128. if( shortDescription==null )
  129. {
  130. Macros.error( view, "You must supply a short description in the plugin." + classname + ".description property. Please add it and rerun the macro." );
  131. return;
  132. }
  133. if( longDescriptionFileName==null )
  134. {
  135. longDescriptionFileName = "description.html";
  136. // Macros.error(view, "setting default long description file");
  137. }
  138. //load the long description
  139. File descriptionFile = new File( new File(buffer.getPath()).getParent(), longDescriptionFileName );
  140. if(!descriptionFile.exists())
  141. {
  142. Macros.error( view, "You must supply a long description in a file located at " + descriptionFile.getPath() + ". Please create it and rerun the macro." );
  143. return;
  144. }
  145. BufferedReader reader = new BufferedReader( new FileReader( descriptionFile ) );
  146. try
  147. {
  148. String line;
  149. while( (line = reader.readLine())!=null )
  150. {
  151. longDescription = longDescription + line + "\n";
  152. }
  153. }
  154. finally
  155. {
  156. reader.close();
  157. }
  158. // create dialog object and set its features
  159. title = "Create Plugin Announcement";
  160. dialog = new JDialog( view, title, false );
  161. content = new JPanel( new BorderLayout() );
  162. content.setBorder( new EmptyBorder( 12, 12, 12, 12 ) );
  163. dialog.setContentPane( content );
  164. // add to the dialog a panel containing the text fields for
  165. // entry of the prefix and suffix text
  166. propsPanel = new JPanel( new GridLayout( 5 + pluginDependencies.size() + optionalPluginDependencies.size() , 2, 2, 6 ) );
  167. propsPanel.add( new JLabel( "Plugin name" ) );
  168. propsPanel.add( new JLabel( pluginName ) );
  169. propsPanel.add( new JLabel( "Plugin version" ) );
  170. propsPanel.add( new JLabel( version ) );
  171. propsPanel.add( new JLabel( "Activates" ) );
  172. propsPanel.add( new JLabel( activate ) );
  173. propsPanel.add( new JLabel( "jEdit Dependency" ) );
  174. propsPanel.add( new JLabel( jEditDependency ) );
  175. propsPanel.add( new JLabel( "JDK Dependency" ) );
  176. propsPanel.add( new JLabel( javaDependency ) );
  177. for( int i=0; i<pluginDependencies.size(); i++ )
  178. {
  179. propsPanel.add( new JLabel( "Depends on" ) );
  180. propsPanel.add( new JLabel( pluginDependencies.get( i ).toString() ) );
  181. }
  182. for( int i=0; i<optionalPluginDependencies.size(); i++ )
  183. {
  184. propsPanel.add( new JLabel( "Optional" ) );
  185. propsPanel.add( new JLabel( optionalPluginDependencies.get( i ).toString() ) );
  186. }
  187. content.add( propsPanel, "Center" );
  188. //add areas for source location, Announcement, Short Description, and Long Description
  189. descriptionPanel = new JPanel();
  190. descriptionPanel.setLayout( new BoxLayout( descriptionPanel, BoxLayout.Y_AXIS ) );
  191. descriptionPanel.setBorder(new EmptyBorder(12, 5, 0, 5));
  192. descriptionPanel.add( new JLabel( "Source Code Location (SVN and tag, or URL): " ) );
  193. sourceArea = new JEditorPane();
  194. sourceArea.setText("Source code is in SVN with the tag XXXX (no SVN release numbers, please)");
  195. sourceArea.setPreferredSize( new Dimension( 250, 36 ) );
  196. descriptionPanel.add( new JScrollPane( sourceArea ) );
  197. descriptionPanel.add( new JLabel( "Announcement: " ) );
  198. announcementArea = new JEditorPane();
  199. announcementArea.setPreferredSize( new Dimension( 250, 120 ) );
  200. descriptionPanel.add( new JScrollPane( announcementArea ) );
  201. descriptionPanel.add( new JLabel( "Short Description ( for new plugins or updated descriptions only ): " ) );
  202. shortDescriptionArea = new JEditorPane("text/plain", shortDescription);
  203. shortDescriptionArea.disable();
  204. shortDescriptionArea.setPreferredSize( new Dimension( 250, 72 ) );
  205. descriptionPanel.add( new JScrollPane( shortDescriptionArea ) );
  206. descriptionPanel.add( new JLabel( "Long Description ( for new plugins or updated descriptions only ): " ) );
  207. longDescriptionArea = new JEditorPane("text/plain", longDescription);
  208. longDescriptionArea.disable();
  209. longDescriptionArea.setPreferredSize( new Dimension( 250, 120 ) );
  210. descriptionPanel.add( new JScrollPane( longDescriptionArea ) );
  211. //add buttons to description panel
  212. buttonPanel = new JPanel();
  213. buttonPanel.setLayout( new BoxLayout( buttonPanel, BoxLayout.X_AXIS ) );
  214. ok = new JButton( "Create Announcement" );
  215. buttonPanel.add( ok );
  216. cancel = new JButton( "Cancel" );
  217. buttonPanel.add( cancel );
  218. descriptionPanel.add( buttonPanel );
  219. content.add( descriptionPanel, "South" );
  220. // register this method as an ActionListener for
  221. // the buttons and text fields
  222. ok.addActionListener( this );
  223. cancel.addActionListener( this );
  224. // locate the dialog in the center of the
  225. // editing pane and make it visible
  226. dialog.pack();
  227. dialog.setLocationRelativeTo( view );
  228. dialog.setDefaultCloseOperation( JDialog.DISPOSE_ON_CLOSE );
  229. dialog.setVisible( true );
  230. // this method will be called when a button is clicked
  231. // or when ENTER is pressed
  232. void actionPerformed( e )
  233. {
  234. if( e.getSource() != cancel )
  235. {
  236. createAnnouncement();
  237. }
  238. dialog.dispose();
  239. }
  240. void createAnnouncement()
  241. {
  242. announcement = announcementArea.getText();
  243. shortDescription = shortDescriptionArea.getText();
  244. longDescription = longDescriptionArea.getText();
  245. source = sourceArea.getText();
  246. StringBuffer ret = new StringBuffer();
  247. ret.append( "Paste the text below into the Plugin Central Submission Tracker at https://sourceforge.net/tracker/?group_id=588&atid=625093\n" );
  248. ret.append( "\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n" );
  249. ret.append( "\n{{{ " );
  250. ret.append( pluginName );
  251. ret.append( " " );
  252. ret.append( version );
  253. ret.append( "\n Source: " );
  254. ret.append( source );
  255. ret.append( "\n Announcement: " + announcement.replaceAll("\n", "\n " ) );
  256. ret.append( "\n Requires Java " );
  257. ret.append( javaDependency );
  258. ret.append( "\n Requires jEdit " );
  259. ret.append( jEditDependency );
  260. if( pluginDependencies.size() > 0 )
  261. {
  262. ret.append( "\n Required plugins: " );
  263. for( int i=0; i<pluginDependencies.size(); i++ )
  264. {
  265. ret.append( "\n " );
  266. ret.append( pluginDependencies.get( i ) );
  267. }
  268. }
  269. if( optionalPluginDependencies.size() > 0 )
  270. {
  271. ret.append( "\n Optional plugins: " );
  272. for( int i=0; i<optionalPluginDependencies.size(); i++ )
  273. {
  274. ret.append( "\n " );
  275. ret.append( optionalPluginDependencies.get( i ) );
  276. }
  277. }
  278. if( shortDescription!=null && !shortDescription.equals( "" ) )
  279. {
  280. ret.append( "\n \n Short Description: " + shortDescription );
  281. }
  282. if( longDescription!=null && !longDescription.equals( "" ) )
  283. {
  284. ret.append( "\n \n Long Description: " + longDescription );
  285. }
  286. ret.append( " }}}" );
  287. newbuf = jEdit.newFile( view );
  288. newbuf.insert( 0, ret.toString() );
  289. }
  290. }
  291. // this single line of code is the script's main routine
  292. // it calls the methods and exits
  293. if( buffer.getMode().toString().equals( "properties" ) )
  294. pluginTextDialog( view, buffer );
  295. else
  296. Macros.error( view, "This must be run on a jEdit plugin's properties file. \nOpen your Plugin's props file and rerun this macro." );
  297. /*
  298. Macro index data ( in DocBook format )
  299. <listitem>
  300. <para><filename>Create_Plugin_Announcement.bsh</filename></para>
  301. <abstract><para>
  302. Creates a machine-parsable version of the release announcement from the source files and minimal user input.
  303. The wiz can then read this file and do the release automatically.
  304. </para></abstract>
  305. <para>
  306. Creates a machine-parsable version of the release announcement from the source files and minimal user input.
  307. The wiz can then read this file and do the release automatically.
  308. </para>
  309. </listitem>
  310. */