Changes between Version 7 and Version 8 of InstallLinux

Show
Ignore:
Timestamp:
05/18/11 19:22:38 (2 years ago)
Author:
xkjq (IP: 81.151.149.213)
Comment:

added info about webkit renderer

Legend:

Unmodified
Added
Removed
Modified
  • InstallLinux

    v7 v8  
    1111 
    1212=== Script for a WikidPad launcher === 
    13 To create a launcher that starts WikidPad you need a script. Create a file called wpstart: 
    14 {{{ 
    15 gedit wpstart 
    16 }}} 
    17 Paste this code into the opened dokument (replace /path/to/folderof/WikidPad): 
     13To create a launcher that starts WikidPad you need a script. Create a file called, for example, wikidpad: 
     14{{{ 
     15gedit wikidpad 
     16}}} 
     17Paste this code into the opened document (replace /path/to/folderof/WikidPad): 
    1818{{{ 
    1919#!/bin/bash 
     
    2424Save the file and close it. Open a terminal and make the script executable: 
    2525{{{ 
    26 chmod +x wpstart 
     26chmod +x wikidpad 
    2727}}} 
    2828Finally create a launcher according to the !HowTo on https://help.ubuntu.com/community/HowToAddaLauncher. Use the command 
    2929{{{ 
    30 /path/to/wpstart 
    31 }}} 
     30/path/to/wikidpad 
     31}}} 
     32 
     33If you wish you can also copy the script to one of the paths defined in your $PATH, e.g. /usr/bin/, that way you can launch the program from the command line. 
     34 
     35=== Webkit renderer in preview == 
     36 
     37v2.2beta03 and higher have support for using webkit to render the internal HTML preview. This is much more powerful than the built-in render and brings support for CSS/flash/javascript and all the other features webkit provides. It does however have a few additional dependencies which will need to be met before it can be used: 
     38 
     39 * pygtk 
     40 * pywebkitgtk 
     41 
     42Once installed you should be able to select Webkit as the preview renderer in the HTML preview/export option panel. 
    3243 
    3344