External Programs and Filters

From Bluefish Wiki
Revision as of 12:03, 31 December 2009 by Fal7i (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


 

The External menu provides a quick access to external default or user-added programs and text filters. It is divided into three parts by default (see Chapter VIII, Customising Bluefish for layout change):

  • The Outputbox submenu for text filters. Its name is derived from the output box shown at the bottom of the document window, where you can see the output of the process, when activating it.
  • The Commands submenu for external programs.
  • All other items are browsers. They are launched as subprocesses, hence you need to detach them to avoid freezing bluefish until the external program quits.


Man2 note.gif Typically all programs and filters apply to the current document. Nevertheless it is possible to invoke a program without applying it to the current document. On the contrary, it is not possible to apply text filters to anything but the current document.
Bluefish External Menu

Customization of the External menu is performed in different parts of the Edit Preferences dialog:

  • Items in the Outputbox submenu in the Output parsers tab.
  • Items in the Commands submenu in the Utilities and filters part at the bottom of the External programs tab.
  • Top level items in the Browsers part at the top of the External programs tab.

8.1. Customizing browsers

The Browsers panel in Preferences shows the items in the same order as in the External menu:

File:Man2 preferences browsers panel.png
The Browsers Panel in Preferences


Man2 note.gif The first line in the panel will be the browser selected when clicking on the View in browser button in the main tool bar.

If you want to change the order of the browsers, apply the following steps:

Procedure VII.4. Changing the order of browsers items

  1. Click on the Preferences... icon in the main tool bar to access the Edit preferences panel.
  2. Click on the External programs tab to display the Browsers panel.
  3. Click near the left border of the browser's line you want to move. The whole browser's line will be highlighted:
    File:Man2 order browsers select.png
    Selecting the Browser's Line to be Moved
  4. While maintaining the click, drag the selected line over another line, until you reach the place you want, so that the selected line covers entirely the latter one. The cursor will change its appearance and the dragged line will be shown as a framed line:
    File:Man2 order browsers drag.png
    Dragging the Browser's Line


Man2 note.gif To drag a line to the end of the list, drag it until a thin line appears below the last item:
File:Man2 order browsers drag bottom.png
Dragging the Browser's Line to the Bottom


Man2 tip.gif If you change your mind, drag the line over its original place and release the mouse button. There will be no change.
  1. Release the mouse button to drop the line at the desired place.
  2. Click on the Apply button to save the change if you plan to make further changes in the panel, otherwise click on the OK button to save the change and close the Edit preferences panel.

If you want to customize one of the browsers supplied by default, use the following procedure:

Procedure VII.5. Customizing an existent browser

  1. Click on the Preferences... icon in the main tool bar to access the Edit preferences panel.
  2. Click on the External programs tab to display the Browsers panel.
  3. Click on the Command region of the browser's line you want to change. The line will be hightlighted.
  4. Double-click on the same location to allow editing. The line will be framed.
  5. Make the desired change
  6. Click on the OK button to save and close the panel.

To add a new browser, proceed as follows:

Procedure VII.6. Adding a new browser

  1. Click on the Preferences... icon in the main tool bar to access the Edit preferences panel.
  2. Click on the External programs tab to display the Browsers panel.
  3. Click on the Add button. A new line will be shown, with an Untitled label.
  4. Double-click on the label to allow editing, and enter the string you want to appear in the External menu.
  5. Double-click in the Command zone and enter the command followed by the & sign to detach it from the main bluefish process, for example:
    amaya %s &
  6. Click on the OK button to save and close the panel.

To delete a browser, just click on the Delete button.

Though nothing impedes you to put any command (not necessary a browser) in the panel for quick access, you may want to avoid to put it at the top range, since it will be somewhat strange to click on View in browser to launch abs for example.

8.2. Customizing Commands menu

To add items to the External → Commands submenu, you use the External programs tab of the Edit Preferences panel:

File:Man2 preferences utilities panel.png
Utilities and Filters Panel in Preferences

You add, modify, delete, move commands or text filters the same way as described in Section 8.1, “Customizing browsers”.

Bluefish will apply the supplied command on the current document, while representing the document as it is before the command is applied by %s and the document after the command has been applied by %f. Usage of the %i parameter is not implemented yet. You should embed those parameters into simple quotes to prevent special characters to be interpreted by the shell.

Usage of the parameters depends on the command:

  • If the command does not operate on the file, as xterm, you just supply it as you would in an xterm, detaching it to avoid bluefish freezing with:
    xterm &
  • If the command does operate on the file, but not on the file's contents, as chmod, you supply it as you would in an xterm, using %s as a reference to the current document:
    chmod +x '%s'
  • If the command operates on the standard input device by default, as tidy, you will have to redirect the document's contents, i.e. %s, with cat for example, to the standard output device, pipe the result so that it will be used as standard input device for the command, then redirect the result of the command to the document, i.e. %f, as in:
    cat '%s' | tidy 'someoptions' > '%f'
  • If the command operates on file's contents, as sed, you should use input, i.e. %s and output, i.e. %f redirection to feed the command with the right parameters, as in:
    sed -e 'somesedcommand' < '%s' > '%f'

As those parameters are used internally to create temporary files, you cannot use them to modify the name of the final document for example. But you can redirect the standard output to a named file, if you do not want to override the current document, as in:

sed -e 'somesedcommand' < '%s' 1 > 'namedfile'

Here is an example to get rid of hard-coded /usr in a source file:

Procedure VII.7. Adding a Commands menu item

  1. Click on the Preferences... icon in the main tool bar to access the Edit preferences panel.
  2. Click on the External programs tab to display the Utilities and filters panel.
  3. Click on the Add button. A new line will be shown, with an Untitled label.
  4. Double-click on the label to allow editing, and enter the string you want to appear in the External menu.
  5. Double-click in the Command zone and enter:
    sed -e 's|\/usr|${PREFIX}|g' < '%s' > '%f'.


Man2 note.gif We need to escape the slash in /usr with a backslash to avoid interpretation by the shell.
  1. Click on the OK button to save and close the panel.

8.3. Customizing Ouputbox menu

Items within the External → Outputbox submenu allow for programs to give feedback by opening an output box at the bottom of Bluefish's main window.

Here is an example showing the output box after using the External → Outputbox → tidy HTML validator item on an html file with an on purpose error:

The contents of the resulting output box are based upon scanning the output of the supplied command, as it appears in an xterm, with a given regular expression and filling in the various fields of the output box with the desired parts of that regular expression. The Output parsers tab of the Edit preferences panel provides you with a model to do that:

File:Man2 external outputbox preferences.png
The Output Parsers Tab in Preferences Panel

The Outputbox panel comprises 7 fields:

  • The Name field, a character string which will appear as the item in the Outputbox menu.
  • The Pattern field, a Perl regular expression which describes the command output, so that some of its parts could be used in the following fields.
    Let's use an example: say you have a ruby script named foo.rb with the following line in it:
    put Hello Word
    When executing ruby -d foo.rb in an xterm, the output is:
    Exception `NoMethodError' at foo.rb:1 - undefined method `put' for main:Object
    foo.rb:1: undefined method `put' for main:Object (NoMethodError)
    The second line can be parsed with the following Perl regular expression:
    ([a-zA-Z0-9/_.-]+):([0-9]+):(.*)
    The first part embedded into parentheses will match the script name, i.e. foo.rb; the second part will match the line, i.e. 1: the third part will match the remaining. See Section 5.3, “Find and Replace Using Regular Expressions” for some explanation on using regular expressions within bluefish.
  • The File # field, a part number matching the filename in the Perl regular expression given in the Pattern field. Note that the first part is numbered 1, the second 2, etc. If you do not want that the part be shown, put -1 in it.
  • The Line #, a part number matching the line number in the regular expression, here it will be 2, as same rules apply as in the Filename # field.
  • The Output # field, a part number matching the desired part in the regular expression, typically the remaining of the line, here it will be the third and last part. Again, same rules apply as in the Filename # field.
  • The Command field, the command to execute on the current document, internally named %s. Here it will be: ruby -d '%s'. Notice that you should embed the reference to the current document, if any, within parentheses to avoid interpretation at run time.
  • The Show all output check box, which can be checked to show all output not matching the Perl regular expression. Here it is not needed, since the regular expression matches all output.

You add, modify, delete, move output boxes the same way as described in Section 8.1, “Customizing browsers”.

Procedure VII.8. Adding an Outputbox menu item

  1. Execute the desired command in an xterm with some error either in the command or in the file which it is applied on, in order to know how the errors are outputting.
  2. Build a Perl regular expression based on the output, so that the filename, the line number and the error message be retrieved.
  3. Click on the Preferences... icon in the main tool bar to access the Edit preferences panel.
  4. Click on the Output parsers tab to display the Outputbox panel.
  5. Click on the Add button. A new line will be shown, with an Untitled label.
  6. Click "Add" to add a new item.
  7. Double-click on the Name field to give the command a name.
  8. Double-click on the Pattern field and fill it in with the Perl regular expression you have built previously.
  9. Double-click on the File # field and give the number for the subpattern matching the filename (-1 for none).
  10. Double-click on the Line # field and give the number for the subpattern matching the line number (-1 for none).
  11. Double-click on the Output # field and give the number for the subpattern matching the actual error message (-1 for none).
  12. Double-click on the Command field and enter the command to execute in the form command options '%s', %s being the current filename.
  13. Toggle the "Show all output" check box to show output NOT matching the regular expression, if needed.
Man2 note.gif Of course, it is also possible to add these items by editing the file named ~/.bluefish/rcfile_v2 found in the user's home directory. The fields are delimited by colons and correspond to those found in the GUI.