At line 82 I have: ADD_SUBDIRECTORY(doc)
The subdirectory doc exists, with only 3 subfolders in it, no files at all. How should have they come? Marie-Noëlle 2011/8/24 sleepless <[hidden email]>: > If the directory doc exists and is not empty you should check if you have > permission. maybe it has become root only in the former sudo cmake. > > on Ubuntu I should do from console ¨sudo nautilus¨ goto properties and > change permission if needed. > Op 24-08-11 17:14, Marie-Noëlle Augendre schreef: >> >> 2011/8/24 sleepless<[hidden email]>: >> >>>> I am in /home/marie-noelle/digikam-software-compilation, as a regular >>>> user (not root) and I'm trying to run this command: >>>> cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kde4-config >>>> --prefix` .. >>> >>> no, do as dan said, mkdir build and go there cd build and rerun cmake >>> from >>> there >>>> >>>> Is it right? >>>> >> The message remains the same when I am in build! >> >> Marie-Noëlle >> >> > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
2011/8/24 Marie-Noëlle Augendre <[hidden email]>:
> At line 82 I have: ADD_SUBDIRECTORY(doc) > The subdirectory doc exists, with only 3 subfolders in it, no files at > all. How should have they come? > > Marie-Noëlle > And same thing for the extra subfolder. Only the core subfolder has a CMakeLists.txt in it! Marie-Noëlle -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Gilles Caulier-4
Yes please.
Op 24-08-11 17:34, Gilles Caulier schreef: I can create a digiKam.org account to create and maintain a page with this content, if you want. _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by tosca
check first the access rights, you have to get the stuff there if needed
by cloning again Op 24-08-11 17:35, Marie-Noëlle Augendre schreef: > At line 82 I have: ADD_SUBDIRECTORY(doc) > The subdirectory doc exists, with only 3 subfolders in it, no files at > all. How should have they come? > > Marie-Noëlle > > 2011/8/24 sleepless<[hidden email]>: >> If the directory doc exists and is not empty you should check if you have >> permission. maybe it has become root only in the former sudo cmake. >> >> on Ubuntu I should do from console ¨sudo nautilus¨ goto properties and >> change permission if needed. >> Op 24-08-11 17:14, Marie-Noëlle Augendre schreef: >>> 2011/8/24 sleepless<[hidden email]>: >>> >>>>> I am in /home/marie-noelle/digikam-software-compilation, as a regular >>>>> user (not root) and I'm trying to run this command: >>>>> cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kde4-config >>>>> --prefix` .. >>>> no, do as dan said, mkdir build and go there cd build and rerun cmake >>>> from >>>> there >>>>> Is it right? >>>>> >>> The message remains the same when I am in build! >>> >>> Marie-Noëlle >>> >>> >> _______________________________________________ >> Digikam-users mailing list >> [hidden email] >> https://mail.kde.org/mailman/listinfo/digikam-users >> > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
I have all the rights on the digikam-software-compilation subfolder,
but the perl download-repos has no effect now. Marie-Noëlle 2011/8/24 sleepless <[hidden email]>: > check first the access rights, you have to get the stuff there if needed by > cloning again > Op 24-08-11 17:35, Marie-Noëlle Augendre schreef: >> >> At line 82 I have: ADD_SUBDIRECTORY(doc) >> The subdirectory doc exists, with only 3 subfolders in it, no files at >> all. How should have they come? >> >> Marie-Noëlle -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Rinus
Hi
What I did on fedora 15: - download ftp://rpmfind.net/linux/fedora/development/rawhide/source/SRPMS/digikam-2.0.0-4.fc17.src.rpm tp /tmp - run rpm -ivh /tmp/digikam*.src.rpm - run rpmbuild -bb ~/rpmbuild/SPECS/digikam.spec - if it does not complain about missing packages stop building it - if it complains run yum install with the missing packages - (~/rpmbuild can be removed afterwards) - create a directory where to put all stuff into (here /opt/src/) - cd into this directory - run (one line): 'git clone git://anongit.kde.org/digikam-software- compilation digikam-sc' - cd digikam-sc - run 'perl ./gits populate' - create subdirectory build - cd to build sub directory - run 'cmake -DCMAKE_BUILD_TYPE=debugfull - DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..' - run 'make -j4' (depending on you cpu core count) - run 'make install' as root I don't like compiling in home directory as I regularly take an update from my users homes so I use /opt/src for compilations. Next step to try is to create a rpm with beta digikam. Regards Martin Am Mittwoch, 24. August 2011 schrieb sleepless: > ########################################################## > START DOWNLOADING TARBALL > ########################################################## > > Here is your tarball (compressed archive of source code > from the latest official released version) > http://sourceforge.net/projects/digikam/files/digikam > > > If it´s downloaded, extract it your user dir (somthing like > home/my_user_dir) > > Open a terminal window and go to the place where the software > has been extracted. (let´s assume it has been extracted to > home/my_user_dir/digikam-software-compilation) > If you type pwd at the prompt, you will see where you are, > probably in home/my_user_dir > type cd digikam-software-compilation > > NOTA BENE: Go from here to the start building section > > ########################################################## > START DOWNLOADING GIT > ########################################################## > From git you get the latest source code currently worked on > by the programmers. Although you have latest updates and > bugfixes, you may also have a newly introduced bug, in fact > it is for testing purposes, not officially released yet. > > If git is not already installed, install git: > install from synaptec or: > open console > type: > sudo apt-get install git > > To get the source code on your computer: > cd ~ : to go to your home dir > ¨git clone git://anongit.kde.org/digikam-software-compilation > digikam-software-compilation¨ > > Now you havw a directory digikam-software-compilation > go there > cd digikam-software-compilation > > if you type: > ls > you will see in this dir a document called ¨download-repos¨, > this is a runnable PERL script. > > If perl not already is installed, install it from synaptec > or command line. > > Now type: > sudo perl download-repos > Now the git is cloned to your local dir: > /home/¨your_user_dir¨/digikam-software-compilation > > wait while downloading > > > > ########################################################## > START BUILDING > ########################################################## > > > now make a directory to put your build files in > type mkdir build > go there by typing: > cd build > > if you do pwd (present working directory) > you see somthing like > /home/my_user_dir/digikam-software-compilation/build > > Make sure the(pre)compiler is installed named ¨gcc¨ and > ¨cpp¨ the same for ¨make¨ and ¨cmake¨. You can install it > from package manager like synaptec or from command line. > > If cmake is not installed, now type: > sudo apt-get install cmake > Now let cmake do it´s work > cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX= > `kde4-config --prefix` .. > (mind the ¨space dot dot¨ at the end) and make sure NOT to > use ¨sudo¨ in front of ¨cmake¨. > > > Most likely it will complain about missing stuff. like > libkexiv2-dev, libkipi-dev, libkdcraw-dev, etc. > Try to install it from synaptic or in any other way and > retry cmake untill succesful. > > > If all went successful > now run: > make > > if done run: > sudo make install > > ################################################################## > ############## DONE! > > ################################################################## > ############## _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by tosca
Op 24-08-11 17:55, Marie-Noëlle Augendre schreef:
> I have all the rights on the digikam-software-compilation subfolder, > but the perl download-repos has no effect now. > > Marie-Noëlle Maybe here comes this text from Phillip at hand: When you have used the download-repos script to populate the digikam-software-compilation with digikam source code then to update use the gits perl script to pull new updates. "perl gits pull" will pull the recent updates from git into all the parts of digikam-software-compilation directories and just changes and updates in code without downloading it all again as you do with clone. I tried it on my d-s-c dir perl gits pull (mind gits istead of git) got the mssage: already up tu date. I wonder what happens to you with this command Rinus > 2011/8/24 sleepless<[hidden email]>: >> check first the access rights, you have to get the stuff there if needed by >> cloning again >> Op 24-08-11 17:35, Marie-Noëlle Augendre schreef: >>> At line 82 I have: ADD_SUBDIRECTORY(doc) >>> The subdirectory doc exists, with only 3 subfolders in it, no files at >>> all. How should have they come? >>> >>> Marie-Noëlle _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
It seems to have made a few updates ont the core folder:
On: core: From git://anongit.kde.org/digikam gsoc/clone -> origin/gsoc/clone master -> origin/master Fast-forward utilities/cameragui/widgets/filtercombo.cpp | 14 ++- utilities/cameragui/widgets/filtercombo.h | 5 - utilities/setup/importfilters.cpp | 148 +++++++++++++-------------- utilities/setup/importfilters.h | 18 +--- 4 files changed, 82 insertions(+), 103 deletions(-) On: ., extra/libkface, extra/libkgeomap, extra/kipi-plugins, extra/libkexiv2, extra/libkdcraw, extra/libkipi, extra/libksane, extra/libmediawiki, doc/digikam, doc/kipi-plugins: Already up-to-date. But nothing on the others (I run it a second time to be sure, and got the same message as you). And when I re-run the cmake, I got the same error. I have spent plenty of time on the subject to no avail ... I might begin again from scratch tomorrow or the day after, and see what happen. Marie-Noëlle 2011/8/24 sleepless <[hidden email]>: > Op 24-08-11 17:55, Marie-Noëlle Augendre schreef: >> >> I have all the rights on the digikam-software-compilation subfolder, >> but the perl download-repos has no effect now. >> >> Marie-Noëlle > > Maybe here comes this text from Phillip at hand: > > When you have used the download-repos script to populate the > digikam-software-compilation with digikam source code then to update > use the gits perl script to pull new updates. "perl gits pull" will > pull the recent updates from git into all the parts of > digikam-software-compilation directories and just changes and updates > in code without downloading it all again as you do with clone. > > > I tried it on my d-s-c dir > > perl gits pull (mind gits istead of git) > > got the mssage: already up tu date. > > I wonder what happens to you with this command > Rinus > > > > > >> 2011/8/24 sleepless<[hidden email]>: >>> >>> check first the access rights, you have to get the stuff there if needed >>> by >>> cloning again >>> Op 24-08-11 17:35, Marie-Noëlle Augendre schreef: >>>> >>>> At line 82 I have: ADD_SUBDIRECTORY(doc) >>>> The subdirectory doc exists, with only 3 subfolders in it, no files at >>>> all. How should have they come? >>>> >>>> Marie-Noëlle > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Op 24-08-11 18:55, Marie-Noëlle Augendre schreef:
well, so it be. I advice you to start with this the next time: To get the source code on your computer: cd ~ : to go to your home dir ¨git clone git://anongit.kde.org/digikam-software-compilation digikam-software-compilation¨ it works for me a lot better than the other command Good luck, Rinus > It seems to have made a few updates ont the core folder: > > On: core: > From git://anongit.kde.org/digikam > gsoc/clone -> origin/gsoc/clone > master -> origin/master > Fast-forward > utilities/cameragui/widgets/filtercombo.cpp | 14 ++- > utilities/cameragui/widgets/filtercombo.h | 5 - > utilities/setup/importfilters.cpp | 148 > +++++++++++++-------------- > utilities/setup/importfilters.h | 18 +--- > 4 files changed, 82 insertions(+), 103 deletions(-) > On: ., extra/libkface, extra/libkgeomap, extra/kipi-plugins, > extra/libkexiv2, extra/libkdcraw, extra/libkipi, extra/libksane, > extra/libmediawiki, doc/digikam, doc/kipi-plugins: > Already up-to-date. > > > But nothing on the others (I run it a second time to be sure, and got > the same message as you). And when I re-run the cmake, I got the same > error. > > I have spent plenty of time on the subject to no avail ... I might > begin again from scratch tomorrow or the day after, and see what > happen. > > Marie-Noëlle > > 2011/8/24 sleepless<[hidden email]>: >> Op 24-08-11 17:55, Marie-Noëlle Augendre schreef: >>> I have all the rights on the digikam-software-compilation subfolder, >>> but the perl download-repos has no effect now. >>> >>> Marie-Noëlle >> Maybe here comes this text from Phillip at hand: >> >> When you have used the download-repos script to populate the >> digikam-software-compilation with digikam source code then to update >> use the gits perl script to pull new updates. "perl gits pull" will >> pull the recent updates from git into all the parts of >> digikam-software-compilation directories and just changes and updates >> in code without downloading it all again as you do with clone. >> >> >> I tried it on my d-s-c dir >> >> perl gits pull (mind gits istead of git) >> >> got the mssage: already up tu date. >> >> I wonder what happens to you with this command >> Rinus >> >> >> >> >> >>> 2011/8/24 sleepless<[hidden email]>: >>>> check first the access rights, you have to get the stuff there if needed >>>> by >>>> cloning again >>>> Op 24-08-11 17:35, Marie-Noëlle Augendre schreef: >>>>> At line 82 I have: ADD_SUBDIRECTORY(doc) >>>>> The subdirectory doc exists, with only 3 subfolders in it, no files at >>>>> all. How should have they come? >>>>> >>>>> Marie-Noëlle >> _______________________________________________ >> Digikam-users mailing list >> [hidden email] >> https://mail.kde.org/mailman/listinfo/digikam-users >> > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by jdd@dodin.org
Hi jdd
Maybe you can change my document ¨building digikam for dummies on ubuntu¨ along the process in a ¨building digikam for dummies on openSUSE 11.4¨, so we can build a knoledge base on the subject? Just an idea, feel free to ignore it. Regards, Rinus Op 24-08-11 16:45, jdd schreef: > Le 24/08/2011 16:13, sleepless a écrit : > >> Here is your tarball (compressed archive of source code >> from the latest official released version) >> http://sourceforge.net/projects/digikam/files/digikam > > hello :-) > > I will try to do this on openSUSE 11.4. This URL is not a tarball but > a folder. > > do you want to speak of 2.0? > http://sourceforge.net/projects/digikam/files/digikam/2.0.0/digikam-2.0.0.tar.bz2 > ? > > thanks > jdd > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Rinus
Le 24/08/2011 16:13, sleepless a écrit :
jdd@linux-0i5h:~/Téléchargements> wget http://sourceforge.net/projects/digikam/files/digikam/2.0.0/digikam-2.0.0.tar.bz2 open with dolphin, copy it to /usr/src/packages/SOURCES/, go to /usr/src/packages/SOURCES/digikam-2.0.0/ > ########################################################## > START BUILDING > ########################################################## > Now let cmake do it´s work > cmake -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX= > `kde4-config --prefix` do not add " .." at the end of the command line, but only " ." (space dot, to say digikam will be compiled there) no need at all to be root nor use sudo, safe for installing missing packages with YaST. I installed the pattern "kde development" and then cmake asked for some libraries, like sane, exiv2, marble (and may be some other) - pretty easy to guess from the "missing" message. > If all went successful > now run: > make should suceed :-) (did for me) then go to /usr/src/packages/SOURCES/digikam-2.0.0/core/digikam/ and there find the digikam executable... clic on it it works. good it works on openSUSE 11.4 I'm not at home and did this on an old computer I have at my mother's house. Will do the same at home soon thanks! jdd -- http://www.dodin.net http://pizzanetti.fr _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Rinus
Le 24/08/2011 19:08, sleepless a écrit :
> Hi jdd > > Maybe you can change my document ¨building digikam for dummies on > ubuntu¨ along the process in a > ¨building digikam for dummies on openSUSE 11.4¨, so we can build a > knoledge base on the subject? > Just an idea, feel free to ignore it. if I succeed build it on my home computer, I will. I couldn't have done this without your doc :-) thanks jdd -- http://www.dodin.net http://pizzanetti.fr _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Would be much appreciated TIA!
Rinus Op 24-08-11 20:51, jdd schreef: > Le 24/08/2011 19:08, sleepless a écrit : >> Hi jdd >> >> Maybe you can change my document ¨building digikam for dummies on >> ubuntu¨ along the process in a >> ¨building digikam for dummies on openSUSE 11.4¨, so we can build a >> knoledge base on the subject? >> Just an idea, feel free to ignore it. > > if I succeed build it on my home computer, I will. > > I couldn't have done this without your doc :-) > > thanks > jdd > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
I've just completed the compilation and installed the 2.1.0 version
(unfortunately, it has the same DB error as the previous version!) Thanks a lot to those who have helped, especially sleepless and Martin for their good advice and their patience. For those who might be interested, I've written down my procedure (for Fedora and in french) in my personal wiki: http://www.webmaster-en-herbe.net/wiki/doku.php?id=wiki:configuration-2:digikam Marie-Noëlle -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Le mercredi 24 août 2011 18:45:17, Marie-No�lle Augendre a écrit :
> I've just completed the compilation and installed the 2.1.0 version > (unfortunately, it has the same DB error as the previous version!) > Thanks a lot to those who have helped, especially sleepless and Martin > for their good advice and their patience. > > For those who might be interested, I've written down my procedure (for > Fedora and in french) in my personal wiki: > http://www.webmaster-en-herbe.net/wiki/doku.php?id=wiki:configuration-2:dig > ikam > > Marie-Noëlle bug in GIT compilation make stop with the following error /home/claude/digikam-software- compilation/extra/libkexiv2/libkexiv2/kexiv2gps.cpp:467: undefined reference to `Exiv2::ExifData::erase(__gnu_cxx::__normal_iterator<Exiv2::Exifdatum*, std::vector<Exiv2::Exifdatum, std::allocator<Exiv2::Exifdatum> > >)' collect2: ld a retourné 1 code d'état d'exécution make[2]: *** [lib/libkexiv2.so.10.0.0] Erreur 1 make[1]: *** [extra/libkexiv2/libkexiv2/CMakeFiles/kexiv2.dir/all] Erreur 2 make: *** [all] Erreur 2 my system is linux fedora 14 x86-64 thanks, -- Claude Gélinas agr. Phyto Ressources inc. _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Le 25/08/2011 02:39, Claude Gélinas a écrit :
> compilation/extra/libkexiv2/libkexiv2/kexiv2gps.cpp:467: undefined reference to needs libexiv2, development package - don't know how to get is on fedora, but should be obvious for you jdd -- http://www.dodin.net http://pizzanetti.fr _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by tosca
Op 25-08-11 00:45, Marie-Noëlle Augendre schreef:
> I've just completed the compilation and installed the 2.1.0 version > (unfortunately, it has the same DB error as the previous version!) > Thanks a lot to those who have helped, especially sleepless and Martin > for their good advice and their patience. you are welcom > For those who might be interested, I've written down my procedure (for > Fedora and in french) in my personal wiki: > http://www.webmaster-en-herbe.net/wiki/doku.php?id=wiki:configuration-2:digikam Very nice job. Any chance for a English version? As soon as I have a nice place to store the Ubuntu version I would be happy to put a link to your wiki. Rinus > Marie-Noëlle > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by jdd@dodin.org
Op 25-08-11 08:05, jdd schreef:
> Le 25/08/2011 02:39, Claude Gélinas a écrit : > >> compilation/extra/libkexiv2/libkexiv2/kexiv2gps.cpp:467: undefined >> reference to > > needs libexiv2, development package - don't know how to get is on > fedora, but should be obvious for you > > jdd > properly on your system. Regards, Rinus _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Rinus
2011/8/25 sleepless <[hidden email]>:
>> >> For those who might be interested, I've written down my procedure (for >> Fedora and in french) in my personal wiki: >> >> http://www.webmaster-en-herbe.net/wiki/doku.php?id=wiki:configuration-2:digikam > > Very nice job. Any chance for a English version? In fact, these pages are to be my own notebook: I'm attempting to gather, organize and store somewhere all the notes I've put down regarding my Linux system, so I can find them when I need them ... The information will be available for however wants it, but I don't plan to open it for editing by other users. I intend to remain the sole editor. I could provide a translation of the current state of this page, if you like to store it somewhere; but the whole wiki will remain in french, as it is primarily my own notebook. Marie-Noëlle -- Une galerie photos, un blog ... pourquoi pas ? Webmaster en herbe Parcourez les Cévennes à ma façon : Cévennes Plurielles Et toutes mes autres publications à partir de ma page d'accueil générale _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Op 25-08-11 09:52, Marie-Noëlle Augendre schreef:
> 2011/8/25 sleepless<[hidden email]>: > >>> For those who might be interested, I've written down my procedure (for >>> Fedora and in french) in my personal wiki: >>> >>> http://www.webmaster-en-herbe.net/wiki/doku.php?id=wiki:configuration-2:digikam >> Very nice job. Any chance for a English version? > In fact, these pages are to be my own notebook: I'm attempting to > gather, organize and store somewhere all the notes I've put down > regarding my Linux system, so I can find them when I need them ... > The information will be available for however wants it, but I don't > plan to open it for editing by other users. I intend to remain the > sole editor. > I could provide a translation of the current state of this page, if > you like to store it somewhere I would appreciate that, I can understand your wiki but not well enough to make a secure translation, and lot of others, can not understand it at all. So a translation will give me a good starting point from where I can follow updates on your wiki and If ever someone complains, your wiki is in french, it´s easyer for me to guide them trough it. TIA and take your time, no hurry at all. Rinus > ; but the whole wiki will remain in > french, as it is primarily my own notebook. > > Marie-Noëlle > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Free forum by Nabble | Edit this page |