Changes between Initial Version and Version 1 of nepomuk/integration


Ignore:
Timestamp:
02/03/09 16:44:08 (15 years ago)
Author:
klinkigt
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • nepomuk/integration

    v1 v1  
     1 
     2== iDocument Nepomuk integration == 
     3 
     4This page describes how to use iDocument in Nepomuk. This covers developing and using it with the nightly builds. 
     5 
     6=== Developing === 
     7 
     8To develop with iDocument and Nepomuk you need a working Nepomuk developing environment. How to read the official [http://dev.nepomuk.semanticdesktop.org/wiki/EclipseDevelopment Nepomuk] page. 
     9 
     10Now you can point to the location https://idocument.opendfki.de/repos/Nepomuk and download the plugin org.semanticdesktop.nepomuk.comp.iDocument. This package contains the needed clue code between iDocument and Nepomuk. 
     11iDocuments needs gate. To provied gate easily this plugin contains an additional jar. This will be extracted during runtime in your local work folder. 
     12 
     13=== Nightly build === 
     14To use iDocument together with Nepomuk download the following [https://idocument.opendfki.de/repos/Nepomuk/Nightly_Build/org.semanticdesktop.nepomuk.comp.iDocument_1.0.0.jar jar] 
     15Put it into the "plugins" folder in your Nepomuk installation folder. To use iDocument open the "config.ini" in your configuration folder. Scroll down where you can see: 
     16 
     17{{{ 
     18############################## 
     19# Bundles to start 
     20############################### 
     21 
     22osgi.bundles=\ 
     23        org.eclipse.equinox.log@1:start,\ 
     24... 
     25        org.semanticdesktop.nepomuk.comp.infointegration@20:start,\ 
     26        org.eclipse.core.runtime@start 
     27 
     28}}} 
     29and add 
     30{{{ 
     31        org.semanticdesktop.nepomuk.comp.iDocument@20:start,\ 
     32}}} 
     33 
     34between 
     35 
     36{{{ 
     37        org.semanticdesktop.nepomuk.comp.infointegration@20:start,\ 
     38}}} 
     39and 
     40{{{ 
     41        org.eclipse.core.runtime@start 
     42}}} 
     43It looks like 
     44{{{ 
     45############################## 
     46# Bundles to start 
     47############################### 
     48 
     49osgi.bundles=\ 
     50        org.eclipse.equinox.log@1:start,\ 
     51        org.semanticdesktop.common.log@1:start,\ 
     52        org.semanticdesktop.common.log.osgi@1:start,\ 
     53        org.eclipse.equinox.common@2:start,\ 
     54        org.eclipse.update.configurator@3:start,\ 
     55        org.eclipse.equinox.http.jetty@4:start,\ 
     56        org.eclipse.equinox.http.servlet@5:start,\ 
     57        org.semanticdesktop.nepomuk.server.app@6:start,\ 
     58        org.openrdf.rdf2go@10:start,\ 
     59        org.semweb4j.rdf2go.impl.base@10:start,\ 
     60        org.semweb4j.rdf2go.api@10:start,\ 
     61        org.semanticdesktop.aperture@11:start,\ 
     62        org.semanticdesktop.aperture.impl@11:start,\ 
     63        org.semanticdesktop.nepomuk.middleware@15:start,\ 
     64        org.semanticdesktop.common.iconservice@16:start,\ 
     65        org.semanticdesktop.nepomuk.server.xmlrpc@17:start,\ 
     66        org.semanticdesktop.nepomuk.comp.datawrapper.aperture@17:start,\ 
     67        org.semanticdesktop.nepomuk.comp.rdfrepository@17:start,\ 
     68        org.semanticdesktop.nepomuk.comp.pimoservice@17:start,\ 
     69        org.semanticdesktop.nepomuk.comp.strucrec@17:start,\ 
     70#   org.semanticdesktop.nepomuk.comp.textanalyticsservice@18:start,\ 
     71        org.semanticdesktop.nepomuk.comp.usercontext@18:start,\ 
     72        org.semanticdesktop.nepomuk.comp.localsearch@18:start,\ 
     73#       org.semanticdesktop.nepomuk.comp.taskservice@18:start,\ 
     74#       org.semanticdesktop.nepomuk.comp.schemarecommender@18:start,\ 
     75        org.opendfki.pimoeditor@18:start,\ 
     76#       org.semanticdesktop.nepomuk.comp.messagingservice@18:start,\ 
     77        org.semanticdesktop.nepomuk.comp.configgui@18:start,\ 
     78        org.semanticdesktop.nepomuk.comp.datawrapper.aperture.ui@18:start,\ 
     79        org.semanticdesktop.nepomuk.comp.localdataalignment@19:start,\ 
     80#       org.semanticdesktop.nepomuk.comp.sememailservice@19:start,\ 
     81#       org.semanticdesktop.nepomuk.comp.social@19:start,\ 
     82        org.semanticdesktop.nepomuk.comp.tagrecommender@20:start,\ 
     83        org.semanticdesktop.nepomuk.comp.recommender@20:start,\ 
     84        org.semanticdesktop.nepomuk.comp.phasealignment@20:start,\ 
     85        org.semanticdesktop.nepomuk.comp.infointegration@20:start,\ 
     86        org.semanticdesktop.nepomuk.comp.iDocument@20:start,\ 
     87        org.eclipse.core.runtime@start 
     88 
     89}}} 
     90 
     91To see iDocument is running, point to your console and type "ss". You will find an entry naming .....iDocument. This must have the status "ACTIVE". To start it type "start" SPACE followd by he number left to the package name.