Yes, there is a synchronization process. The wiki pages are exported periodically on the public web site. But, I saw some other mistakes that I'm going to fix very soon.
Clement 2008/10/10 Heiko Seeberger <[EMAIL PROTECTED]> > Clement, > > Wow, fast move ;-) > Maybe there is some caching problem (I flushed mine), because I cannot see > the fixes ... > > Heiko > > Am 09.10.2008 um 19:21 schrieb clement escoffier: > > > Hi, >> >> >> Thank you for this feedback. I just modified the wiki page to be >> consistent >> with the provided archive, as you mentioned. Don't hesitate to send mails >> if >> you have questions or comments. >> >> Regards, >> >> Clement >> >> 2008/10/9 Heiko Seeberger <[EMAIL PROTECTED]> >> >> Hi Felix folks, >>> >>> I am curiously investigating Felix and iPOJO and currently running >>> through >>> "iPOJO in 10 minutes". >>> >>> There seem to be some bugs: >>> >>> -- START BUGS >>> >>> First create the file "src/spell.checker/SpellCheck.java" in the >>> spell.checker directory >>> should be >>> First create the file "src/spell/checker/SpellCheck.java" in the >>> spell.checker directory >>> >>> package spell.check; >>> should be >>> package spell.checker; >>> >>> <ipojo> >>> <component classname="spell.check.SpellCheck"> >>> <requires field="m_dictionary"/> >>> <provides/> >>> </component> >>> <instance component="spell.check.SpellCheck"/> >>> </ipojo> >>> should be >>> <ipojo> >>> <component classname="spell.checker.SpellCheck"> >>> <requires field="m_dictionary"/> >>> <provides/> >>> </component> >>> <instance component="spell.checker.SpellCheck"/> >>> </ipojo> >>> Also in spell.checker.bnd the package name has to be fixed: >>> Private-Package: spell.checker >>> >>> Create the "src\spell.checker.gui\SpellCheckerGui.java" for the following >>> implementation: >>> should be >>> Create the "src/spell/checker/gui/SpellCheckerGui.java" for the following >>> implementation: >>> >>> package spell.gui; >>> should be >>> package spell.checker.gui; >>> >>> As above also fix metadata.xml and the bnd descriptor ... >>> >>> -- END BUGS >>> >>> Now I am through and - hey - I really like it. Great idea to have a >>> "dynamic" UI. >>> >>> Cheers >>> Heiko >>> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >

