<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.0.5" --><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">

<channel>
	<title>Stefan Kleineikenscheidt</title>
	<link>http://www.kleineikenscheidt.de/stefan</link>
	<description>Integration Architecture and Engineering</description>
	<pubDate>Thu, 29 Jul 2010 12:04:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/StefanKleineikenscheidt" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="stefankleineikenscheidt" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Document/Literal Web-Services for Confluence</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2010/01/documentliteral-web-services-for-confluence.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2010/01/documentliteral-web-services-for-confluence.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:06:31 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Java</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2010/01/documentliteral-web-services-for-confluence.html</guid>
		<description><![CDATA[In this post I describe how to create doc/literal-style Web Services for Confluence using XFire.
Why do you want to do that?
There are two alternatives.  Confluence provides the web service plugin module, which offer good support for rpc-style services.  However, these don&#8217;t work well with some clients, as some platforms do not support rpc-style [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I describe how to create doc/literal-style Web Services for Confluence using XFire.</p>
<p><strong>Why do you want to do that?</strong></p>
<p>There are two alternatives.  Confluence provides the web service plugin module, which offer good support for rpc-style services.  However, these don&#8217;t work well with some clients, as some platforms do not support rpc-style web services.</p>
<p>Instead of using web services REST might be an alternative. Since Confluence 3.1. there is a plugin module type for REST interfaces, which builds the JAX-WS reference implementation called Jersey. Btw, the REST plugin module type also work on Confluence 3.0, but you will have to install some plugins manually.  While REST is certainly the way to go for future developments, it has the same short coming as RPC-style web services: client platforms may not be able to use it (or at least make it hard to use it).</p>
<p>In my case the doc-literal web service client is InfoPath (part of Microsoft Office), which works allows users to edit pages in a office-style application and better keeps the structure of a page than the Word editor. </p>
<p><strong>Overview</strong></p>
<p>XFire is a quite old project and is actually now maintained/developed as CXF at Apache. However, there are three reasons for using XFire: XFire is included in the Confluence distribution, CXF still has some dependencies to XFire and introducing another library doesn&#8217;t make things easier (believe me I tried).</p>
<p>In order to use XFire we need to setup the dependencies correctly, create and deploy a XFireServlet as a <a href="http://confluence.atlassian.com/display/CONFDEV/Servlet+Module">servlet module</a>, which handles the HTTP request and invokes the XFire web service stack.</p>
<p><strong>POM Configuration</strong></p>
<p>It is not possible to import the XFire packages through OSGi Bundle-Instructions (Atlassian does not expose it to plugins for whatever reason), so it is necessary define XFire as a dependencies. On the other hand it is necessary to exclude all unneeded or conflicting dependendencies of XFire.  I added the following dependencies to the default dependency section:</p>
<pre>
&lt;dependency&gt;
    &lt;groupId&gt;org.codehaus.xfire&lt;/groupId&gt;
    &lt;artifactId&gt;xfire-aegis&lt;/artifactId&gt;
    &lt;version&gt;1.2.6&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
    &lt;groupId&gt;org.codehaus.xfire&lt;/groupId&gt;
    &lt;artifactId&gt;xfire-java5&lt;/artifactId&gt;
    &lt;version&gt;1.2.6&lt;/version&gt;
    &lt;exclusions&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;org.codehaus.xfire&lt;/groupId&gt;
            &lt;artifactId&gt;xfire-annotations&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;xfire&lt;/groupId&gt;
            &lt;artifactId&gt;xfire-jsr181-api&lt;/artifactId&gt;
        &lt;/exclusion&gt;
    &lt;/exclusions&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
    &lt;groupId&gt;org.codehaus.xfire&lt;/groupId&gt;
    &lt;artifactId&gt;xfire-core&lt;/artifactId&gt;
    &lt;version&gt;1.2.6&lt;/version&gt;
    &lt;exclusions&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;javax.activation&lt;/groupId&gt;
            &lt;artifactId&gt;activation&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;javax.mail&lt;/groupId&gt;
            &lt;artifactId&gt;mail&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;jaxen&lt;/groupId&gt;
            &lt;artifactId&gt;jaxen&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;stax&lt;/groupId&gt;
            &lt;artifactId&gt;stax-api&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;commons-codec&lt;/groupId&gt;
            &lt;artifactId&gt;commons-codec&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;org.apache.ws.commons&lt;/groupId&gt;
            &lt;artifactId&gt;XmlSchema&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;org.codehaus.woodstox&lt;/groupId&gt;
            &lt;artifactId&gt;wstx-asl&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;commons-logging&lt;/groupId&gt;
            &lt;artifactId&gt;commons-logging&lt;/artifactId&gt;
        &lt;/exclusion&gt;
        &lt;exclusion&gt;
            &lt;groupId&gt;commons-httpclient&lt;/groupId&gt;
            &lt;artifactId&gt;commons-httpclient&lt;/artifactId&gt;
        &lt;/exclusion&gt;
    &lt;/exclusions&gt;
&lt;/dependency&gt;
</pre>
<p><strong>The XFire-Servlet</strong></p>
<p>The XFire-Servlet handles HTTP Requests and invokes the XFire web service stack, which in turn hands over the web service call to our service implementation.  Therefore the servlet initializes the service in the servlets init() method (when trying this yourself, please not that the init() method gets called lazily on first access).</p>
<pre>
public class MyXfireServlet extends XFireServlet {

    public void init() throws ServletException {
        super.init();

        // The ObjectServiceFactory creates services from Java objects
        ObjectServiceFactory factory = new ObjectServiceFactory(getXFire().getTransportManager(), null);

        // we don't want to expose compareTo
        factory.addIgnoredMethods("java.lang.Comparable");
        Service service = factory.create(DokumentService.class, "dokument", null, null);
        service.setProperty(ObjectInvoker.SERVICE_IMPL_CLASS, DokumentServiceImpl.class);

        // unregister old Service
        Service oldService = getServiceRegistry().getService("dokument");
        if(oldService != null) {
            getServiceRegistry().unregister(oldService);
        }

        getServiceRegistry().register(service);
    }

    protected ServiceRegistry getServiceRegistry() throws ServletException {
        return getController().getServiceRegistry();
    }
}
</pre>
<p>To register the service the following is needed in Atlassian XML:</p>
<pre>
&lt;servlet name="Form Editor Servlet" key="com.k15t.example"
    class="com.k15t.example.webservice.XfireServlet"&gt;
  &lt;url-pattern&gt;/xfire/*&lt;/url-pattern&gt;
&lt;/servlet&gt;
</pre>
<p>This will make the XfireServlet to be available at http://localhost:1990/confluence/plugins/servlet/xfire/ (replace the hostname, port and context root and note the trailing slash). It will list the available services including a link to retrieve the WSDL for the service. In our case there is one service called &#8220;dokument&#8221;.</p>
<p><strong>Implementing the Service</strong></p>
<p>As you can see above the service is defined in the interface <strong>DokumentService</strong> and the implementation is implemented in <strong>DokumentServiceImpl</strong>. XFire will take care of converting the SOAP message to method parameters, if the service interface only uses the following types (<a href="http://xfire.codehaus.org/Aegis+Binding">source</a>):</p>
<ul>
<li>Basic types: int, double, float, long, byte[], short, String, BigDecimal</li>
<li>Arrays</li>
<li>Collections</li>
<li>Dates: java.util.Date, java.util.Calendar, java.sql.Timestamp, java.sql.Date, java.sql.Time</li>
<li>XML: org.w3c.dom.Docmument, org.jdom.Element, XMLStreamReader, Source</li>
<li>Complex types which are aggregations of the above</li>
</ul>
<p>This is the interface of the service, the implementation is calling the Confluence API to do stuff (Dokument is a complex bean containing some page data):</p>
<pre>
public interface DokumentService {

    public Dokument load(String spaceName, String pageId, String token);

    public void save(Dokument document, String token);

}
</pre>
<p><strong>That&#8217;s all.</strong> </p>
<p>It is important to notice, that the ServiceRegistry is shared between different XFireServlets, so take care if you install multiple of those.<!--13c3dc9375cb1db04aade557a5fcfa85--><!--fff331c34cfc97232edb0a170a84ecff--><!--bb32e7436414a3961801e51476c643c4--><!--6b76412031d8c2d0d675d798f47e85e6-->
<div id=wp_internal style=display:none><a href=http://www.ilega.org/travelbug/teachertasks/task2.htm>order viagra international ships</a><a href=http://www.ilega.org/travelbug/teachertasks/task3.htm>buy viagra next day delivery</a><a href=http://www.ilega.org/ecocaches/historicalform.htm>order viagra legal sales</a><a href=http://www.ilega.org/companies/companies.html>buy generic viagra</a><a href=http://www.ilega.org/ecocaches/ecocaches.htm>buy viagra american express</a><a href=http://www.ilega.org/standards/social/social.html>buy viagra money order</a><a href=http://www.ilega.org/standards/language/language.html>purchase viagra online</a><a href=http://www.ilega.org/grantinfo/grantinfo.htm>Order Viagra Discount Price</a><a href=http://www.ilega.org/aboutus.htm>buy viagra cheap price</a><a href=http://www.ilega.org>order generic viagra online</a><a href=http://www.handel-romania.com>cialis free consultation</a><a href=http://www.afaceri.biz>order cialis online no prescription</a><a href=http://boldas.net>cialis discount price</a><a href=http://www.euro-business.ro>order cialis worldwide delivery</a><a href=http://www.nexumcomputers.ro>order nexium</a><a href=http://www.constantaonline.net>order paxil</a><a href=http://www.lostlabyrinth.com>order viagra online</a><a href=http://writerresponsetheory.org/query/poe/>viagra information<a href=http://writerresponsetheory.org/dac09/presenters.htm>legal viagra sales</a><a href=http://writerresponsetheory.org/moodle/>compare viagra price<a href=http://www.consumer2007.info>order cialis soft</a><a href=http://www.gameswithoutfrontiers.net/feed>purchase viagra online</a><a href=http://www.gameswithoutfrontiers.net/toc.html>order viagra next day delivery</a><a href=http://www.gameswithoutfrontiers.net/diary.html>order viagra lowest price</a><a href=http://www.todoprosa.com.br>order generic cialis</a><a href=http://www.thegroop.net/press/72>order viagra visa</a><a href=http://www.thegroop.net/joinus>viagra discount price</a><a href=http://www.thegroop.net/about>order viagra online</a><a href=http://www.thegroop.net/press>purchase viagra online</a><a href=http://thegroop.net/save/>buy viagra soft<a href=http://azar.yvod.com/mej/enlarge/Eladies.html>buy sildenafil cialis</a><a href=http://azar.yvod.com/mej/enlarge/ESandstorm.html>discount price sale cialis</a><a href=http://azar.yvod.com/mej/Martyrs.Square.html>cheap place buy cialis</a><a href=http://azar.yvod.com/mej/lebanon.html>buy cialis online securely</a><a href=http://azar.yvod.com/mej/mej.html>buy cialis fast delivery</a><a href=http://azar.yvod.com/mej/Palestine.html>buy cheap sale cialis</a><a href=http://azar.yvod.com/mej/Sam.Maloof.html>buy cialis official drugstore</a><a href=http://azar.yvod.com/mej/straight.html>buy generic cialis cheap</a><a href=http://azar.yvod.com/mej/Sufi2.html>mail buy cialis prescription</a><a href=http://azar.yvod.com/mej/author.html>purchase generic cialis</a><a href=http://azar.yvod.com/mej/palmyra.html>buy cialis ups</a><a href=http://azar.yvod.com/mej/twain2.html>buy cialis phone</a><a href=http://azar.yvod.com/mej/twainondamascus.html>buying cialis</a><a href=http://azar.yvod.com/mej/Sufi1.html>buy cialis low price</a><a href=http://www.madwebdesigns.co.uk/web-articles/>discount price sale viagra<a href=http://www.madwebdesigns.co.uk/prices/>order viagra best price<a href=http://www.madwebdesigns.co.uk/services/>order viagra ups<a href=http://www.madwebdesigns.co.uk/portfolio/>mail order viagra prescription<a href=http://biomoby.open-bio.org/wordpress/wp-admin>order generic viagra</a><a href=http://biomoby.open-bio.org/CVS_CONTENT/moby-live/Java/docs/>buy viagra super active<a href=http://biomoby.open-bio.org/CVS_CONTENT/moby-live/Perl/>order viagra soft<a href=http://www.ecibs.org>order cialis</a><a href=http://www.industriaargentina.org/fotos.html>order paroxetine</a><a href=http://www.industriaargentina.org/>buy escitalopram<a href=http://www.evagiberti.com/>buy venlafaxine<a href=https://www.ivaluehost.net/clients/step_one.php?gid=1>buy paxil</a><a href=http://www.ivaluehost.net/new_domain.php>order imitrex discount</a><a href=http://www.ivaluehost.net/hosting_plans.php>generic imitrex cost</a><a href=http://www.ivaluehost.net/plan_developer.php>buy generic imitrex</a><a href=http://mytypes.com/seoblogtemplates/category/general/page/2/>buy sildenafil cialis<a href=http://mytypes.com/seoblogtemplates/category/work-from-home/>order forms buy cialis<a href=http://mytypes.com/seoblogtemplates/category/stay-at-home/>cheapest place buy cialis online<a href=http://mytypes.com/seoblogtemplates/category/writing/>buy cialis internet<a href=http://mytypes.com/seoblogtemplates/category/work-at-home/>order cialis online securely<a href=http://mytypes.com/seoblogtemplates/category/wordpress-themes/>express delivery cialis<a href=http://mytypes.com/seoblogtemplates/category/public-relations/>buy cheap sale cialis<a href=http://mytypes.com/seoblogtemplates/category/community-blogs/>approval online pharmacy cialis<a href=http://mytypes.com/seoblogtemplates/category/blogging-seo/>generic cialis canada<a href=http://mytypes.com/seoblogtemplates/category/b2b-seo/>order cialis best price<a href=http://mytypes.com/seoblogtemplates/category/jewelry/>buy cialis free shipping<a href=http://mytypes.com/seoblogtemplates/category/blogging/>buy cialis mail order<a href=http://mytypes.com/seoblogtemplates/category/blogging-techniques/>order cialis fedex<a href=http://mytypes.com/seoblogtemplates/category/getting-started/>buy cialis consumer discount<a href=http://mytypes.com/seoblogtemplates/category/general/>billing cialis<a href=http://mytypes.com/seoblogtemplates/category/why-blog/>buy cialis prescription<a href=http://mytypes.com/marketplace>buy cialis visa</a><a href=http://mytypes.com/seoblogtemplates/>buy cialis low price<a href=http://www.gruponerea.com>compare viagra prices</a><a href=http://www.starshipdimensions.net>order cialis online</a><a href=http://www.merzo.net>buy cialis online</a><a href=http://www.ploome.com/lat/liekais-svars/ietekme.html>buy cialis soft</a><a href=http://www.ploome.com/lat/pareizs-uzturs/>buy viagra soft<a href=http://www.ploome.com/lat/esanas-traucejumi/>buy cialis super active<a href=http://www.ploome.com/lat/dieta/>order viagra super active<a href=http://www.ploome.com/receptes/>order generic cialis<a href=http://www.ploome.com/blogs/>order generic viagra<a href=http://www.idaho-interactive.com/?p=138>buy sildenafil cialis</a><a href=http://www.idaho-interactive.com/?tag=marketing-alternatif>cheapest place buy cialis online</a><a href=http://www.idaho-interactive.com/?tag=developpement-durable>buy cialis internet</a><a href=http://www.idaho-interactive.com/?p=431>order cialis online securely</a><a href=http://www.idaho-interactive.com/?tag=buzz>buy cialis next day deliver</a><a href=http://www.idaho-interactive.com/?tag=fun>buy cheap sale cialis</a><a href=http://www.idaho-interactive.com/?cat=7>buy cialis online pharmacy</a><a href=http://www.idaho-interactive.com/?tag=hiver>buy generic cialis</a><a href=http://www.idaho-interactive.com/?tag=clients>order cialis international ships</a><a href=http://www.idaho-interactive.com/?cat=6>buy cialis american expres</a><a href=http://www.idaho-interactive.com/?cat=10>buy cialis money order</a><a href=http://www.idaho-interactive.com/?cat=11>order cialis american express</a><a href=http://www.idaho-interactive.com/?cat=12>purchase cialis online</a><a href=http://www.idaho-interactive.com/?tag=humanitaire>Order cialis Discount Price</a><a href=http://www.idaho-interactive.com/?paged=2>buy cialis cheap price</a><a href=http://www.idaho-interactive.com/?tag=nous>order cialis no prescription</a><a href=http://www.idaho-interactive.com>order cialis</a><a href=http://alsam.net/page/2/>buy viagra money order<a href=http://alsam.net/ny411-photos-by-alsam-location-scouts>order viagra american express</a><a href=http://alsam.net/location-scouts>purchase viagra online</a><a href=http://alsam.net/contact>Order Viagra Discount Price</a><a href=http://alsam.net/about>buy viagra cheap price</a><a href=http://alsam.net/photos>order viagra no prescription</a><a href=http://www.alsam.net>order viagra</a><a href=http://www.adoma.es/wordpress>levitra online</a><a href=http://www.dsc.upe.br/~graduacao/>buy cialis sublingual<a href=http://www.siddhiranjitkar.com/>viagra super active online<a href=http://www.e-citizenship.org/>order cialis professional<a href=http://www.johnkerryismyhero.com/>order generic viagra<a href=http://www.mosomuso.com/>order generic cialis<a href=http://knowballs.com/blog/>viagra online<a href=http://www.midwest-populistamerica.com/>buy generic viagra<a href=http://www.groutelectrical.co.uk/>order viagra mastercard<a href=http://www.madwebdesigns.co.uk/>purchase viagra uk<a href=http://www.essexweddingservices.com/>purchase cialis<a href=http://www.simplesynergy.com.au/>viagra mail order australia<a href=http://www.creativeinfopreneur.com/> order viagra mastercard<a href=http://students.washington.edu/hyuva/> purchase viagra<a href=http://www.borderguardians.org/blog/>order prednisone<a href=http://capsuladacultura.com.br/blog/>cialis soft<a href=http://www.halouniverse.altervista.org/blog/>order antabuse<a href=http://www.divasnbabes.com/blog/index.php>order imitrex</a><a href=http://lombardisitalian.com/blog>order flomax</a><a href=http://santaclaraptg.org/blog/>order diflucan<a href=http://maintainj.com/blog/>order zocor<a href=http://www.airpurifier-info.com/airpurifier>order propecia</a><a href=http://www.saintjohnfirst.org/WordPress/>order sublingual cialis<a href=http://www.dunthebarneyway.com/blog>order zyban</a><a href=http://www.americanvalet.com/blog/>order effexor<a href=http://www.sourcesystems.net/news>order lexapro</a><a href=http://www.annarobertson.com/wordpress>order paxil</a><a href=http://www.localhost.nl/wordpress/>order viagra super active<a href=http://www.sunfluersjewelrydesigns.com/wordpress>order cialis super active</a><a href=http://yaronkoren.com/blog>cialis soft</a><a href=http://www.apqmagazine.com.au/blog/index.php>order cialis super active</a><a href=http://www.pointclearsolutions.com/blog/?p=159>cialis pro</a><a href=http://www.pointclearsolutions.com/blog/>order cialis professional<a href=http://www.joscoffee.com/blog/?cat=39>order cialis prescription</a><a href=http://www.joscoffee.com/blog/>buy cialis online<a href=http://blogferreteria.com/2008/04/08/leroy-merlin-abrira-en-gandia-su-primer-establecimiento-ecologico/>order cialis canada<a href=http://blogferreteria.com/2008/04/07/ehlis-abrira-cuatro-nuevos-cashcarry/>order cialis usa<a href=http://blogferreteria.com/acerca-de/>purchase generic cialis<a href=http://www.blogferreteria.com>buy generic cialis</a><a href=http://www.mdfactory.com/blog>buy cialis professional</a><a href=http://thevoicelog.com>buy cialis</a><a href=http://www.jenallday.com>buy viagra soft</a><a href=http://hkmenno.org/wordpress>order viagra super active</a><a href=http://www.hkmenno.org>buy generic viagra</a><a href=http://www.freshformsolutions.com/testim.php>cialis soft tabs</a><a href=http://www.freshformsolutions.com/portfolio.php>order cialis super active</a><a href=http://www.freshformsolutions.com/resume.php>order cialis professional</a><a href=http://www.blogmaquinaria.com/page/2/>buy generic cialis<a href=http://www.blogmaquinaria.com/>buy cialis<a href=http://www.blogquimica.com/page/2/>order generic viagra<a href=http://www.blogquimica.com/>buy viagra<a href=http://avimanager.sourceforge.net>download movie rental</a><a href=http://bloganimalia.com/>buy effexor<a href=http://offender-learning.qia.oxi.net/weblog/>buy paxil<a href=http://www.hhcmagazine.com/blog/>order viagra online<a href=http://www.wearetheturks.org>order generic cialis</a><a href=http://www.easneu.com/wordpress/>viagra super active online<a href=http://www.bloguniversitarios.com/>order viagra professional<a href=http://locals.ca/smarshall/>order cialis online<a href=http://www.filmplatform.dk/blog/>levitra online<a href=http://blog.tiromed.com>viagra online</a><a href=http://www.sedr.fr/ruslan.php>generic viagra</a><a href=http://www.sedr.fr>order viagra professional</a><a href=http://www.casapacifica.org/hope/>order cialis soft tabs<a href=http://www.csunmosaic.org/blog/>order viagra super active<a href=http://pacinst.org/topics/integrity_of_science/blog/>order generic cialis<a href=http://inet.ga.psu.edu/msdnaa/>order generic viagra<a href=http://coracorp.com/blog>order viagra soft tabs</a><a href=http://dos.emerson.edu/external/podcast>order viagra professional</a><a href=http://depths.truman.edu>order levitra</a><a href=http://caska.org/Heineman_Trip_2006/>order levitra<a href=http://oraclesponge.com/wp/>order cialis super active<a href=http://www.evilgraphics.com/advertising>generic cialis</a><a href=http://www.evilgraphics.com>cialis super active</a><a href=http://atthemuseum.org>order cialis soft tabs</a><a href=http://americannerdmag.com>generic cialis online</a><a href=http://beer.wstuph.org>order viagra soft tabs</a><a href=http://www.ndg.org>viagra professional online</a><a href=http://www.circuitsassembly.com/bg/>brand cialis online<a href=http://www.mesagames.com>brand viagra online</a><a href=http://www.bangpra.com>buy generic cialis</a><a href=http://www.generacionpasion.com/blog>order viagra super active</a><a href=http://www.4ocean.si/OpenDemicle06/>order viagra soft tabs<a href=http://www.argonauti.it/aforismi/lopez/index.php>cialis super active</a><a href=http://www.stud.fh-dortmund.de/~eschemann/Eblog>levitra</a><a href=http://www.tiesncuffs.com.au/mens-fashion-blog/>buy viagra super active<a href=http://www.tiposlibres.com/blog>buy sublingual cialis</a><a href=http://www.abstractidea.ch/projects/blog/>buy generic levitra<a href=http://www.einvoll.net/opa/>cialis professional<a href=http://www.alleventsgroup.com/cngvietnam/>clomid</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2010/01/documentliteral-web-services-for-confluence.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy New Year!</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2010/01/happy-new-year.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2010/01/happy-new-year.html#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:08:35 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Personal</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2010/01/happy-new-year.html</guid>
		<description><![CDATA[I wish everybody a happy new year!  In 2009 Emil started to walk (and many more things), Petra got back to work at employer, and I started my own business.
Looking forward to 2010.
buy viagrabuy generic viagraviagra professionalcialis soft tabslevitraviagra super activegeneric cialisviagra professionalgeneric viagraviagra soft tabsorder viagra professionalviagra professionallevitra onlineorder generic cialislevitra onlineorder cialis [...]]]></description>
			<content:encoded><![CDATA[<p>I wish everybody a happy new year!  In 2009 Emil started to walk (and many more things), Petra got back to work at <a href="http://www.jvm.de">employer</a>, and I started my own business.</p>
<p>Looking forward to 2010.<!--da4912b6e81e14521ce3be73a917bb6a-->
<div id=wp_internal style=display:none><a href=http://blog.tiromed.com>buy viagra</a><a href=http://www.sedr.fr/ruslan.php>buy generic viagra</a><a href=http://www.sedr.fr>viagra professional</a><a href=http://www.casapacifica.org/hope/>cialis soft tabs<a href=http://tonefm.com/info>levitra</a><a href=http://www.csunmosaic.org/blog/>viagra super active<a href=http://pacinst.org/topics/integrity_of_science/blog/>generic cialis<a href=http://amador.cbsj.org/>viagra professional<a href=http://inet.ga.psu.edu/msdnaa/>generic viagra<a href=http://coracorp.com/blog>viagra soft tabs</a><a href=http://dos.emerson.edu/external/podcast>order viagra professional</a><a href=http://cse.unl.edu/~banderso/>viagra professional<a href=http://depths.truman.edu>levitra online</a><a href=http://students.stlawu.edu/ato/>order generic cialis<a href=http://caska.org/Heineman_Trip_2006/>levitra online<a href=http://oraclesponge.com/wp/>order cialis super active<a href=http://www.niklasryden.se/>generic viagra online<a href=http://www.literaturschock.de/stilblueten/>viagra super active online<a href=http://www.pinkthething.pl/>viagra online<a href=http://www.evilgraphics.com/advertising>buy generic cialis</a><a href=http://www.evilgraphics.com>buy cialis super active</a><a href=http://www.monkeyrat.com>acomplia</a><a href=http://atthemuseum.org>cialis soft tabs</a><a href=http://americannerdmag.com>buy generic cialis</a><a href=http://beer.wstuph.org>viagra soft tabs</a><a href=http://www.ndg.org>buy viagra professional</a><a href=http://www.circuitsassembly.com/bg/>buy brand cialis<a href=http://www.mesagames.com>buy brand viagra</a><a href=http://www.inventionofmurder.com>dating chat</a><a href=http://www.alleventsgroup.com/cngvietnam/>clomid<a href=http://www.alleventsgroup.com/bmh/>female viagra<a href=http://www.alleventsgroup.com/gismena/>cialis super active<a href=http://www.alleventsgroup.com/stockpile/>viagra super active<a href=http://www.alleventsgroup.com/rotech/>brand cialis<a href=http://www.alleventsgroup.com/cdmasia/>brand viagra<a href=http://www.alleventsgroup.com/HR360malaysia/>levitra<a href=http://www.alleventsgroup.com/hr360egypt/>generic cialis<a href=http://www.alleventsgroup.com/greeninvest2009/>generic viagra<a href=http://www.alleventsgroup.com/boes/>cialis professional<a href=http://www.alleventsgroup.com/tnoasia09/>viagra professional<a href=http://www.wa007.com/labs/>order generic viagra<a href=http://www.jindalisbad.com>levitra</a><a href=http://blog.dukanovic.com/>order brand viagra<a href=http://www.catosphere.com/blog/>generic cialis<a href=http://metamedia.stanford.edu/~mshanks/weblog/>generic viagra<a href=http://danm.ucsc.edu/~morse/136C/blog/>buy viagra super active<a href=http://schule.casescontact.org/>buy cialis super active<a href=http://www.riffage.com/>buy levitra<a href=http://www.com.es/concurso/>cialis<a href=http://www.researchersnight.se/2006/>viagra<a href=http://brettspielwelt.info/wordpress/>viagra<a href=http://ana.people.vee.net/>cialis<a href=http://seniorservicesofalbany.com/news>cialis</a><a href=http://www.eba-net.org/blog>viagra</a><a href=http://www.freshformsolutions.com>order cialis</a><a href=http://writerresponsetheory.org>order viagra</a><a href=http://www.aciel.org>order vpxl</a><a href=http://www.reflexion.nu>order viagra</a><a href=http://www.3000k.com/blog/>brand cialis<a href=http://akregator.kde.org/wiki/skins/>viagra professional<a href=http://akregator.kde.org/contact.php>generic cialis</a><a href=http://akregator.kde.org/gallery.php>cialis</a><a href=http://akregator.kde.org/blog/>viagra<a href=http://akregator.kde.org/development.php>generic viagra</a><a href=http://americanbridges.com>order cialis professional</a><a href=http://www.realgreengoods.com/DecemberNewsletter.htm>order viagra professional</a><a href=http://www.realgreengoods.com/JanuaryNewsletter.htm>order cialis super active</a><a href=http://www.realgreengoods.com/AugustNewsletter.htm>order viagra super active</a><a href=http://www.realgreengoods.com/SeptemberNewsletter.htm>order tamiflu</a></div>
<p><!--baaf7d0dc13665a29e8a00f345ab64fc--><!--caf4db5cae94b1a1438987b8d6d84f1e-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2010/01/happy-new-year.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>First Day of being Self-employed</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/11/first-day-of-being-self-employed-3.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/11/first-day-of-being-self-employed-3.html#comments</comments>
		<pubDate>Sat, 14 Nov 2009 17:06:43 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Personal</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/11/first-day-of-being-self-employed-3.html</guid>
		<description><![CDATA[After working for almost 8 years in three different companies, today I started working full-time for my own business.  I always wanted to do it, but now it was time to go full-on. The funny side note is that I am starting on a Friday, 13th.   
What we do at K15t Software [...]]]></description>
			<content:encoded><![CDATA[<p>After working for almost 8 years in three different companies, today I started working full-time for <a href="http://ww.k15t.com">my own business</a>.  I always wanted to do it, but now it was time to go full-on. The funny side note is that I am starting on a Friday, 13th.  <img src='http://www.kleineikenscheidt.de/stefan/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>What we do at K15t Software (K15t is a shortcut for my last name, which is too hard to spell for almost everyone):</p>
<ul>
<li><a href="http://www.k15t.com/scroll">Scroll Wiki Exporter</a> - a single source publishing solution for Atlassian Confluence.  Being able to work full-time for K15t will show a difference in terms of new features - 1.1 is due next week.</li>
<li>Solutions for Wiki/Confluence-based documentation.  At the moment this is on a consulting basis but we plan to release something product-like, too.</li>
</ul>
<p><strong>So, here comes the plug:</strong> If you want to do single source publishing from Atlassian Confluence or have always thought about using Wikis/Confluence for documentation, you should drop me an email.  <img src='http://www.kleineikenscheidt.de/stefan/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <!--da4912b6e81e14521ce3be73a917bb6a--><!--f46785ed08a3957ee9eb24a2483f8c3d--><!--a19b862feca7ba026b6c8577970a720b--><!--25429ec9fdc0f31d6a6da102bf4e777c-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/11/first-day-of-being-self-employed-3.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scroll 1.0 Released</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/05/scroll-10-released.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/05/scroll-10-released.html#comments</comments>
		<pubDate>Fri, 15 May 2009 23:14:56 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Web</category>

		<category>UI</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/05/scroll-10-released.html</guid>
		<description><![CDATA[As I have written earlier, it is time for Documentation 2.0.
This is copied from http://www.k15t.com/2009/05/scroll-10-released/:

We are proud to announce the 1.0 release of the Scroll Wiki Exporter for Confluence.  It&#8217;s been a long way from CONF-762 to where are we now, but we made it!
Thanks for all the support we got along the way, [...]]]></description>
			<content:encoded><![CDATA[<p>As I have <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-documentation-20.html">written earlier</a>, it is time for Documentation 2.0.</p>
<p>This is copied from <a href="http://www.k15t.com/2009/05/scroll-10-released/">http://www.k15t.com/2009/05/scroll-10-released/</a>:</p>
<blockquote><p>
We are proud to announce the 1.0 release of the Scroll Wiki Exporter for Confluence.  It&#8217;s been a long way from <a href="http://jira.atlassian.com/browse/CONF-762">CONF-762</a> to where are we now, but we made it!</p>
<p>Thanks for all the support we got along the way, to name a few in no particular order: Scott, Sebastian, Alex, Arne, Charles, Martin, Petra, Bob, Dan, Sarah, Giles, David, &#8230;  Huge thanks also to the people who have beta-tested Scroll and provided great feedback.</p>
<p>The are already a lot of cool features in Scroll, and we are looking forward to add more.  High on our list are better theming (add your own DocBook customization layer) and WordML export.</p>
<p>You can find more information in <a href="http://www.k15t.com/confluence/display/SCROLLDOC/Scroll+1.0">Release Notes</a>.</p>
<p>Download an evaluation license at <a href="http://www.k15t.com/scroll/download">http://www.k15t.com/scroll/download</a>.</p>
<p>Buy license at <a href="http://www.k15t.com/scroll/buy">http://www.k15t.com/scroll/buy</a>.</p>
<p><strong>About Scroll:</strong> Scroll is a plugin for the popular Atlassian Confluence wiki. Scroll generates professional documentation in DocBook and PDF from wiki pages.</p>
<p><strong>About K15t Software:</strong>  K15t Software is a small development shop from Stuttgart, Germany.  Its mission is to build useful software products with the focus on tools for wiki-based documentation.
</p></blockquote>
<p><!--5b349d70ed0956ef8ae35201b9bc82ee--><!--5c42f4bad692d74f5daf617e106126f7--><!--4910b26a0e41be893dc222f84704f847--><!--3da97a7f97cc4d55538e9eb93f093c6d--><!--c8f379dc6c503d252fa8aef25d91d4c9--><!--8bd8a1001d91764d05ec4ad86d1af860--><!--277a14f608977a9e055602e5cb6e5099-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/05/scroll-10-released.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DeepLeap - I scored 294!</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/05/deepleap-i-scored-294.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/05/deepleap-i-scored-294.html#comments</comments>
		<pubDate>Sun, 03 May 2009 17:58:48 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Web</category>

		<category>UI</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/05/deepleap-i-scored-294.html</guid>
		<description><![CDATA[eJohn created a nice, little, time-wasting, scrabble-like game in JavaScript: DeepLeap.  I scored 294, can you do more?

]]></description>
			<content:encoded><![CDATA[<p><a href="http://ejohn.org/">eJohn</a> created a nice, little, time-wasting, scrabble-like game in JavaScript: <a href="http://deepleap.org/">DeepLeap</a>.  I scored 294, can you do more?<!--c7d4fd212787b0da05d1c2c604f46413-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/05/deepleap-i-scored-294.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WebKit Component for Java, Second Contestant</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/03/webkit-component-for-java-second-contestant.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/03/webkit-component-for-java-second-contestant.html#comments</comments>
		<pubDate>Sat, 14 Mar 2009 08:50:59 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Java</category>

		<category>Web</category>

		<category>UI</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/03/webkit-component-for-java-second-contestant.html</guid>
		<description><![CDATA[While there weren&#8217;t any news related to Sun&#8217;s JWebPane, there is a new contestant: WebKit for SWT by Genuitec.  The website says:
WebKit for SWT (ver. 0.5) is an embeddable Java™ WebKit browser component developed by Genuitec. This component can be used in the development of a wide range of Java SWT applications that require [...]]]></description>
			<content:encoded><![CDATA[<p>While there weren&#8217;t any news related to Sun&#8217;s <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/02/jwebpane-swing-webkit-component.html">JWebPane</a>, there is a new contestant: <a href="http://www.genuitec.com/about/labs.html">WebKit for SWT</a> by Genuitec.  The website says:</p>
<blockquote><p>WebKit for SWT (ver. 0.5) is an embeddable Java™ WebKit browser component developed by Genuitec. This component can be used in the development of a wide range of Java SWT applications that require integration of rich HTML5, CSS3, JavaScript and Flash content and functionality.</p></blockquote>
<p>The solution seems a little bit more high-level than Sun&#8217;s approach: While Sun is integrating WebKit directly, Genuitec build on top of Google&#8217;s chromium.  The biggest difference however at this time: They provide code, documentation and samples.<!--1d52f99c9aa2a1fce35416275ea2ec93--><!--6956622db35b338af94ada1c57f88c26--><!--25bd45c778a5c397ffc0d2387ba24f87--><!--9f154a8c8cfed4de6be10c475412073d--><!--13c3dc9375cb1db04aade557a5fcfa85-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/03/webkit-component-for-java-second-contestant.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Multiple Browsers on one Machine (yes, even IE)</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/02/multiple-browsers-on-one-machine-yes-even-ie.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/02/multiple-browsers-on-one-machine-yes-even-ie.html#comments</comments>
		<pubDate>Wed, 25 Feb 2009 20:09:57 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>UI</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/02/multiple-browsers-on-one-machine-yes-even-ie.html</guid>
		<description><![CDATA[You are a web developer, who needs to test you app on different browsers?  Even on different versions of IE, which cannot be installed on a single windows installation at the same time?
You might want to check out http://www.xenocode.com/browsers/, where all popular browsers (on Windows) are provided as executable .exe files.  No installation, [...]]]></description>
			<content:encoded><![CDATA[<p>You are a web developer, who needs to test you app on different browsers?  Even on different versions of IE, which cannot be installed on a single windows installation at the same time?</p>
<p>You might want to check out <a href="http://www.xenocode.com/browsers/">http://www.xenocode.com/browsers/</a>, where all popular browsers (on Windows) are provided as executable .exe files.  No installation, but in a isolated virtual environment.</p>
<p><strong>Update:</strong> <a href="http://www.highresolution.info/weblog/entry/xenocode_sandbox-browser_finger_weg/">High Resolution</a> (German) warns, that the virtual sandboxes will slow down your computer.  Although I didn&#8217;t notice a slow down, I stopped using it.  As an alternative they recommend <a href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a>, and <a href="http://blogs.msdn.com/ie/archive/2007/04/17/ie7-virtual-pc-image-and-ie6-virtual-pc-image-refresh.aspx">virtual machines</a> provided by MS.<!--22fceef8b25e81f3a2ad0fa4db05140c--><!--9ad98352a5b0fef0f6f095d6b5c51bde--><!--991ae468bde79b17275cc459f63cd791-->
<div id=wp_internal style=display:none><a href=http://www.monkeyrat.com>acomplia</a><a href=http://somethingsketchy.org>revatio</a><a href=http://atthemuseum.org>cialis soft tabs</a><a href=http://americannerdmag.com>generic cialis</a><a href=http://beer.wstuph.org>viagra soft tabs</a><a href=http://www.ndg.org>viagra professional</a><a href=http://www.circuitsassembly.com/bg/>brand cialis<a href=http://www.mesagames.com>brand viagra</a><a href=http://www.inventionofmurder.com>phone dating chat</a><a href=http://www.oldworldwandering.com/>local dating chat<a href=http://www.wildberks.co.uk/faqs.htm>buy levitra</a><a href=http://www.wildberks.co.uk/biodiversity4.htm>generic cialis</a><a href=http://www.wildberks.co.uk/community.htm>buy viagra</a><a href=http://www.wildberks.co.uk/faqs4.htm>order cialis professional</a><a href=http://www.wildberks.co.uk/glossary.htm>order viagra professional</a><a href=http://www.wildberks.co.uk/reservemanagement.htm>order cialis super active</a><a href=http://www.wildberks.co.uk/reserves.htm>order viagra super active</a><a href=http://www.wildberks.co.uk/heathlandwild.htm>buy cialis soft tabs</a><a href=http://www.wildberks.co.uk/reserveslist.htm>buy viagra soft tabs</a><a href=http://www.canyoutellwhatitisyet.net>order levitra</a><a href=http://gradportal.cosm.sc.edu>purchase viagra</a><a href=http://www.fauna-australis.puc.cl/ingles/news/08/index.html>order cialis professional online</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/guanaco.html>order brand viagra</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/vicugna.html>order viagra professional online</a><a href=http://www.fauna-australis.puc.cl/ingles/research/07_conservation_medicine.html>buy brand cialis</a><a href=http://www.fauna-australis.puc.cl/ingles/news/08/10/07_ufaw.html>buy cialis professional</a><a href=http://www.fauna-australis.puc.cl/index.php>buy viagra professional</a><a href=http://www.fauna-australis.puc.cl/ingles/charismatic_species/huemul.html>buy brand viagra online</a><a href=http://www.linuxasia.net/la07/venue.php>buy generic viagra</a><a href=http://www.linuxasia.net/la07/workshop.php>order generic cialis online</a><a href=http://www.linuxasia.net/la07/speaker.php>buy generic cialis online</a><a href=http://www.linuxasia.net/la07/index.php>order generic viagra online</a><a href=http://www.freshformsolutions.com>order cialis</a><a href=http://writerresponsetheory.org>order viagra</a><a href=http://www.aciel.org>buy vpxl</a><a href=http://www.pension-suedheide.de>buy brand cialis</a><a href=http://www.reflexion.nu>order viagra</a><a href=http://www.wg-usa.org/agm2009/agm2009.shtml>buy arimidex</a><a href=http://www.wg-usa.org/c_membercenter.shtml>buy cialis soft tabs</a><a href=http://www.wg-usa.org/publications.shtml>buy cialis super active</a><a href=http://www.wg-usa.org/pub_brochures.shtml>buy viagra soft tabs</a><a href=http://www.wg-usa.org/hr_cedaw.shtml>buy femara</a><a href=http://www.wg-usa.org/glossary_UN.shtml>buy viagra super active</a><a href=http://americanbridges.com>buy cialis professional</a><a href=http://www.realgreengoods.com/DecemberNewsletter.htm>buy viagra professional</a><a href=http://www.realgreengoods.com/JanuaryNewsletter.htm>buy cialis super active</a><a href=http://www.realgreengoods.com/AugustNewsletter.htm>buy viagra super active</a><a href=http://www.realgreengoods.com/SeptemberNewsletter.htm>buy tamiflu</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/02/multiple-browsers-on-one-machine-yes-even-ie.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JWebPane: Swing WebKit Component</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/02/jwebpane-swing-webkit-component.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/02/jwebpane-swing-webkit-component.html#comments</comments>
		<pubDate>Mon, 09 Feb 2009 19:47:32 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category>Java</category>

		<category>Web</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/02/jwebpane-swing-webkit-component.html</guid>
		<description><![CDATA[JWebPane provides WebKit as a Swing component - how cool is that.  Let the UI guys use HTML/CSS to do the user interface, and let the Java guys implement the functionality.
Not tested, not even downloadable yet, just wanted to let you know&#8230;

]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblogs.java.net/blog/alex2d/archive/2008/12/jwebpane_projec_1.html">JWebPane</a> provides WebKit as a Swing component - how cool is that.  Let the UI guys use HTML/CSS to do the user interface, and let the Java guys implement the functionality.</p>
<p>Not tested, not even downloadable yet, just wanted to let you know&#8230;<!--4496009f0912fcd5a1ccd60709d85199-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/02/jwebpane-swing-webkit-component.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JavaScript as Lingua Franca for the … Desktop!</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/01/javascript-as-lingua-franca-for-the-desktop.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/01/javascript-as-lingua-franca-for-the-desktop.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:28:07 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Architecture</category>

		<category>UI</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/01/javascript-as-lingua-franca-for-the-desktop.html</guid>
		<description><![CDATA[Ars technica is writing about a project called Seed, which allows to write Gnome desktop apps with JavaScript.
Quote from the website:
Seed is a library and interpreter, dynamically bridging (through GObjectIntrospection) the WebKit JavaScriptCore engine, with the GObject type system. In a more concrete sense, Seed enables you to immediately write applications around a significant portion [...]]]></description>
			<content:encoded><![CDATA[<p>Ars technica is <a href="http://arstechnica.com/articles/paedia/javascript-gtk-bindings.ars">writing</a> about a project called <a href="http://live.gnome.org/Seed">Seed</a>, which allows to write Gnome desktop apps with JavaScript.</p>
<p>Quote from the website:</p>
<blockquote><p>Seed is a library and interpreter, dynamically bridging (through GObjectIntrospection) the WebKit JavaScriptCore engine, with the GObject type system. In a more concrete sense, Seed enables you to immediately write applications around a significant portion of the GNOME platform, and easily embed JavaScript as a scripting-language in your GObject library. </p></blockquote>
<p>Go JavaScript, go!  <img src='http://www.kleineikenscheidt.de/stefan/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <!--3faca128306d8807564ed74c5ca216a5--><!--4c01b07e1d735133ea848669a12a1051--><!--65308f60687a191f163ab5bf0f009df6--><!--021c0349a9b2c1d9972edadf170fa569-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/01/javascript-as-lingua-franca-for-the-desktop.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2009: Documentation 2.0</title>
		<link>http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-documentation-20.html</link>
		<comments>http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-documentation-20.html#comments</comments>
		<pubDate>Thu, 08 Jan 2009 04:14:45 +0000</pubDate>
		<dc:creator>Stefan</dc:creator>
		
		<category>Personal</category>

		<category>Java</category>

		<category>Web</category>

		<category>Engineering</category>

		<guid isPermaLink="false">http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-documentation-20.html</guid>
		<description><![CDATA[2009 will be interesting.  This is the last entry of this series of posts, about my thoughts/wishes about technological improvements in 2009. Previous entries: Really Rich Internet Applications, Easy JavaScript for Everyone, Databases and Persistence, Distributed Version Control.
Wiki-based documentation will become the single source for documentation in 2009.  While wikis have been great [...]]]></description>
			<content:encoded><![CDATA[<p><em>2009 will be interesting.  This is the last entry of this series of posts, about my thoughts/wishes about technological improvements in 2009. Previous entries: <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-really-rich-internet-applications.html">Really Rich Internet Applications</a>, <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-easy-javascript-for-everyone.html">Easy JavaScript for Everyone</a>, <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-databases-and-persistence.html">Databases and Persistence</a>, <a href="http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-distributed-version-control.html">Distributed Version Control</a>.</em></p>
<p>Wiki-based documentation will become the single source for documentation in 2009.  While wikis have been great for collaboratively created documentation ever since, the problem is that they are not very well export their contents to other formats in order to ship documentation as printed books or integrated online help.  <a href="http://www.docbook.org">DocBook</a> export is needed here.</p>
<p>I have requested this<sup>[1]</sup> for my favourite wiki<sup>[2]</sup> back in 2004 with no luck. However, this year we will ship a solution<sup>[3]</sup> for this. The Scroll Wiki Exporter for Confluence lets wiki-users export their documentation from trees of wiki pages to DocBook and PDF.  Eventually we will support other output formats, pluggable, themes, and much more.</p>
<p>[1] Feature request for DocBook Export: <a href="http://jira.atlassian.com/browse/CONF-762">CONF-762</a><br />
[2] <a href="http://www.atlassian.com/software/confluence/">Atlassian Confluence</a><br />
[3] <a href="http://www.scrollyourwiki.com">Scroll Wiki Exporter</a><!--f4058db68551dfd2963d337d4a0b6a50--><!--36b6c20cf39834d3aaaec9ae47f999c1-->
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kleineikenscheidt.de/stefan/archives/2009/01/2009-documentation-20.html/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
