Changes between Version 5 and Version 6 of WikiEditorForEclipsePlugin/FAQ


Ignore:
Timestamp:
Sep 8, 2015, 10:09:03 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • WikiEditorForEclipsePlugin/FAQ

    v5 v6  
    1 = Wiki Editor For Eclipse ~ FAQ =
     1= Wiki Editor For Eclipse - FAQ
    22
    3 These are answers to common situations using  [wiki:WikiEditorForEclipsePlugin WikiEditor4Eclipse]
     3These are answers to common situations using [wiki:WikiEditorForEclipsePlugin WikiEditor4Eclipse]:
    44
    55[[PageOutline(2-3, , inline)]]
    66
    7 == Can I connect to an HTTPS Trac site with self signed SSL certificate? ==
     7== Can I connect to an HTTPS Trac site with self signed SSL certificate?
    88
    99Trying to connect to a Trac site with self signed certificate:
     
    1515}}}
    1616
    17 In order to connect to a Trac site with self signed SSL certificate you need to import the certificate to the java jre keystore.
     17To connect to a Trac site with self signed SSL certificate you need to import the certificate to the Java jre keystore.
    1818
    19 After downloading the certificate to a local file you can import the certificate with java '''keytool''':
     19After downloading the certificate to a local file you can import the certificate with Java's '''keytool''':
    2020
    21 {{{
    22 #!sh
     21{{{#!sh
    2322/usr/lib/jvm/java-6-openjdk/jre/bin/keytool -keystore /usr/lib/jvm/java-6-openjdk/jre/lib/security/cacerts -import -file  <certificate_file> -alias <alias>
    2423}}}
    2524
    26 or in windows:
     25or in Windows:
    2726
    28 {{{
    29 #!sh
     27{{{#!sh
    3028"%JAVA_HOME%\jre\bin\keytool" -keystore "%JAVA_HOME%\jre\lib\security\cacerts" -import -file <certificate_file> -alias <alias>
    3129}}}
    3230
    33 
    34 == Can I use WikiEditorForEclipsePlugin with AccountManager login module? ==
     31== Can I use WikiEditorForEclipsePlugin with the AccountManager login module?
    3532
    3633Currently [wiki:WikiEditorForEclipsePlugin WikiEditor4Eclipse] only supports BASIC authentication.
    3734
    38 If you are using AccountManagerPlugin#LoginModule to use form based login you can still use HttpAuthPlugin to re-enable Http BASIC authentication for /login/xmlrpc path to make it work with XmlRpcPlugin.
     35If you are using AccountManagerPlugin#LoginModule to use form based login, you can still use HttpAuthPlugin to re-enable Http basic authentication for /login/xmlrpc path to make it work with XmlRpcPlugin.
    3936
    4037See also XmlRpcPlugin#ProblemswhenAccountManagerPluginisenabled for more details.
    4138
    42 == MOZILLA_FIVE_HOME not set error ==
     39== MOZILLA_FIVE_HOME not set error
    4340
    44 solution: export MOZILLA_FIVE_HOME=/usr/lib/firefox
    45 see #10959
     41Solution:
     42{{{#!sh
     43export MOZILLA_FIVE_HOME=/usr/lib/firefox
     44}}}
     45
     46See also #10959.