[sdk/kdesrc-build/docbook_historied_per_file] doc: Allow to build/install doc in kf6 too

2024-05-10 Thread Laurent Montel
Git commit 649621237a42d25f18ba2bd3881a1bb2d7a8c7d2 by Laurent Montel.
Committed on 12/11/2023 at 17:56.
Pushed by ashark into branch 'docbook_historied_per_file'.

Allow to build/install doc in kf6 too

Original commit: 5a0754e7
https://invent.kde.org/sdk/kdesrc-build/-/commit/5a0754e7c34ab20d6555f9759921c6b6a9e136c2

M  +2-2doc/appendix-profile/old-profile-setup.docbook
M  +1-1doc/getting-started/environment.docbook

https://invent.kde.org/sdk/kdesrc-build/-/commit/649621237a42d25f18ba2bd3881a1bb2d7a8c7d2

diff --git a/doc/appendix-profile/old-profile-setup.docbook 
b/doc/appendix-profile/old-profile-setup.docbook
index 24bb86bc..925f7cb0 100644
--- a/doc/appendix-profile/old-profile-setup.docbook
+++ b/doc/appendix-profile/old-profile-setup.docbook
@@ -109,7 +109,7 @@ create it if necessary. Add the line:
 On some distributions, it may be necessary to perform the same
 steps with the .xsession file, also in the home directory.
 This is especially true when using graphical login managers such as
-, gdm, or 
xdm.
+ssdm, gdm, or xdm.
 
 
 
@@ -122,7 +122,7 @@ text terminals and the following six are graphical displays.
 
 If when you start your computer you are presented to the graphical display
 manager instead, you can use the new  environment, even if it is not 
listed
-as an option. Most display managers, including , have an option to use
+as an option. Most display managers, including ssdm, have an option to use
 a Custom Session when you login. With this option, your session 
settings are
 loaded from the .xsession file in your home directory. If
 you have already modified this file as described above, this option should load
diff --git a/doc/getting-started/environment.docbook 
b/doc/getting-started/environment.docbook
index 6d93a5ce..47112ade 100644
--- a/doc/getting-started/environment.docbook
+++ b/doc/getting-started/environment.docbook
@@ -22,7 +22,7 @@ configuration file option.
 in pretend mode.
 
 This driver works by setting up a custom 
xsession
-session type. This type of session should work by default with the  login
+session type. This type of session should work by default with the ssdm login
 manager (where it appears as a Custom session), but other login
 managers (such as LightDM and
 gdm) may require additional files installed to



[pim/kontact] doc/kontact: man page: refer to Qt6 & KF6 version of commandline options

2024-04-03 Thread Laurent Montel
Git commit 0a0f38c9b6863bf868bbeacf2a5b7382ccd6521f by Laurent Montel.
Committed on 04/04/2024 at 04:55.
Pushed by mlaurent into branch 'master'.

man page: refer to Qt6 & KF6 version of commandline options

M  +1-1doc/kontact/index.docbook

https://invent.kde.org/pim/kontact/-/commit/0a0f38c9b6863bf868bbeacf2a5b7382ccd6521f

diff --git a/doc/kontact/index.docbook b/doc/kontact/index.docbook
index 260daf467..fa331ac7a 100644
--- a/doc/kontact/index.docbook
+++ b/doc/kontact/index.docbook
@@ -788,7 +788,7 @@ the calendar and the contact list in one place.
 that can be used for certain actions.
 
 First of all,  supports command line arguments
-that all / applications support, see the man pages 
qt5options and kf5options.
+that all / applications support, see the man pages 
qt6options and kf6options.
 
 
  also supports several command line arguments


[pim/kalarm] doc: man page: refer to Qt6 & KF6 version of commandline options

2024-04-03 Thread Laurent Montel
Git commit c4d56944e2e6945f47d6556370ccae933ef1217d by Laurent Montel.
Committed on 04/04/2024 at 04:54.
Pushed by mlaurent into branch 'master'.

man page: refer to Qt6 & KF6 version of commandline options

M  +2-2doc/index.docbook

https://invent.kde.org/pim/kalarm/-/commit/c4d56944e2e6945f47d6556370ccae933ef1217d

diff --git a/doc/index.docbook b/doc/index.docbook
index 840c530d..4d038364 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -3591,8 +3591,8 @@ including displaying the
 
 See also:
 
-kf5options(7)
-qt5options(7)
+kf6options(7)
+qt6options(7)
 
 
 


[sdk/kdesrc-build] /: Allow to build/install doc in kf6 too

2023-11-12 Thread Laurent Montel
Git commit 5a0754e7c34ab20d6555f9759921c6b6a9e136c2 by Laurent Montel.
Committed on 12/11/2023 at 18:56.
Pushed by redstrate into branch 'master'.

Allow to build/install doc in kf6 too

M  +6-1CMakeLists.txt
M  +3-3doc/index.docbook

https://invent.kde.org/sdk/kdesrc-build/-/commit/5a0754e7c34ab20d6555f9759921c6b6a9e136c2

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 376e74f7..9c05382f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,12 @@ if (ECM_FOUND)
 if(KF5_DocTools_FOUND)
 ecm_optional_add_subdirectory(doc)
 else()
-message(WARNING "Found ECM, but not KF5::DocTools; documentation will 
not be built")
+   find_package(KF6 5.10.0 COMPONENTS DocTools)
+   if(KF6_DocTools_FOUND)
+ecm_optional_add_subdirectory(doc)
+   else()
+ message(WARNING "Found ECM, but not KF5::DocTools; documentation 
will not be built")
+   endif()
 endif()
 else()
 message(WARNING "Did not find extra-cmake-modules; documentation will not 
be built and install paths will be guessed based on CMake settings.")
diff --git a/doc/index.docbook b/doc/index.docbook
index 65d979eb..2d2f2b79 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -771,7 +771,7 @@ configuration file option.
 in pretend mode.
 
 This driver works by setting up a custom 
xsession
-session type. This type of session should work by default with the  login
+session type. This type of session should work by default with the ssdm login
 manager (where it appears as a Custom session), but other login
 managers (such as LightDM and
 gdm) may require additional files installed to
@@ -5055,7 +5055,7 @@ create it if necessary. Add the line:
 On some distributions, it may be necessary to perform the same
 steps with the .xsession file, also in the home directory.
 This is especially true when using graphical login managers such as
-, gdm, or 
xdm.
+ssdm, gdm, or xdm.
 
 
 
@@ -5068,7 +5068,7 @@ text terminals and the following six are graphical 
displays.
 
 If when you start your computer you are presented to the graphical display
 manager instead, you can use the new  environment, even if it is not 
listed
-as an option. Most display managers, including , have an option to use
+as an option. Most display managers, including ssdm, have an option to use
 a Custom Session when you login. With this option, your session 
settings are
 loaded from the .xsession file in your home directory. If
 you have already modified this file as described above, this option should load



[pim/kleopatra/release/23.08] doc/kleopatra: Fix bug 475485: Handbook: typo in OpenPGP link to Wikipedia

2023-10-12 Thread Laurent Montel
Git commit acb2e544bae3ac0d803e027d5b39451ff656641d by Laurent Montel.
Committed on 12/10/2023 at 08:02.
Pushed by mlaurent into branch 'release/23.08'.

Fix bug 475485: Handbook: typo in OpenPGP link to Wikipedia

BUG: 475485
FIXED-IN: 23.08.3
(cherry picked from commit 29c8be80445a505de59ef3e0fb8cfac448d56e51)

M  +1-1doc/kleopatra/index.docbook

https://invent.kde.org/pim/kleopatra/-/commit/acb2e544bae3ac0d803e027d5b39451ff656641d

diff --git a/doc/kleopatra/index.docbook b/doc/kleopatra/index.docbook
index 8621f6458..6efbe7531 100644
--- a/doc/kleopatra/index.docbook
+++ b/doc/kleopatra/index.docbook
@@ -116,7 +116,7 @@
 
  Introduction
 
- is the  tool for managing https://en.wikipedia.org/wiki/X.509;> and 
 certificates in
+ is the  tool for managing https://en.wikipedia.org/wiki/X.509;> and https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP;>
 certificates in
   the https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html;>
 and https://en.wikipedia.org/wiki/GNU_Privacy_Guard;> 
keyboxes and for retrieving certificates from
  and other certificate servers.
 


[pim/kleopatra/kf5] doc/kleopatra: Fix bug 475485: Handbook: typo in OpenPGP link to Wikipedia

2023-10-12 Thread Laurent Montel
Git commit 29c8be80445a505de59ef3e0fb8cfac448d56e51 by Laurent Montel.
Committed on 12/10/2023 at 08:00.
Pushed by mlaurent into branch 'kf5'.

Fix bug 475485: Handbook: typo in OpenPGP link to Wikipedia

BUG: 475485
FIXED-IN: 23.08.3

M  +1-1doc/kleopatra/index.docbook

https://invent.kde.org/pim/kleopatra/-/commit/29c8be80445a505de59ef3e0fb8cfac448d56e51

diff --git a/doc/kleopatra/index.docbook b/doc/kleopatra/index.docbook
index 8621f6458..6efbe7531 100644
--- a/doc/kleopatra/index.docbook
+++ b/doc/kleopatra/index.docbook
@@ -116,7 +116,7 @@
 
  Introduction
 
- is the  tool for managing https://en.wikipedia.org/wiki/X.509;> and 
 certificates in
+ is the  tool for managing https://en.wikipedia.org/wiki/X.509;> and https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP;>
 certificates in
   the https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html;>
 and https://en.wikipedia.org/wiki/GNU_Privacy_Guard;> 
keyboxes and for retrieving certificates from
  and other certificate servers.
 


[pim/kmail/release/22.12] doc/kmail2: Remove info about removed feature (ShowUserAgent)

2022-12-15 Thread Laurent Montel
Git commit fc0b487d3f3ac9c9ca0650aa635795b5478de85b by Laurent Montel.
Committed on 16/12/2022 at 06:28.
Pushed by mlaurent into branch 'release/22.12'.

Remove info about removed feature (ShowUserAgent)

CCBUG: 448348

M  +0-17   doc/kmail2/configure.docbook

https://invent.kde.org/pim/kmail/commit/fc0b487d3f3ac9c9ca0650aa635795b5478de85b

diff --git a/doc/kmail2/configure.docbook b/doc/kmail2/configure.docbook
index 4916acd8b..bb2648370 100644
--- a/doc/kmail2/configure.docbook
+++ b/doc/kmail2/configure.docbook
@@ -4167,23 +4167,6 @@ behavior, add to the [OutOfOffice] section:
 
 
 
-
-ShowUserAgent
-
-
-Starting in version 1.9,  can show the User-Agent or X-Mailer value
-from the message header when using Fancy Headers (see 
View
-Headers menu).
-To enable this feature, add to the [Reader] section:
-
-Configuration file:
-ShowUserAgent=true
-kwriteconfig
- kwriteconfig 
--file /path/to/kmail2rc --group Reader 
--key ShowUserAgent true
-
-
-
-
 
 
 


[network/ruqola] doc: GIT_SILENT: Remove commented line (silent)

2022-08-09 Thread Laurent Montel
Git commit dc90abbad769ea0c9ae049088e4bf7c116c7dc8d by Laurent Montel.
Committed on 09/08/2022 at 11:43.
Pushed by mlaurent into branch 'master'.

GIT_SILENT: Remove commented line

M  +0-2doc/index.docbook

https://invent.kde.org/network/ruqola/commit/dc90abbad769ea0c9ae049088e4bf7c116c7dc8d

diff --git a/doc/index.docbook b/doc/index.docbook
index 2b4a56fba..47569fa1b 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -48,8 +48,6 @@
 
 
 
-
-
 
 Introduction
  is a client application for RocketChat.


[system/kcron] doc/kcontrol5: Fix documentation typo

2021-10-05 Thread Laurent Montel
Git commit e490b383cb18bcd22acc502d4d86aa8a6a19f90c by Laurent Montel, on 
behalf of Corbin Schwimmbeck.
Committed on 05/10/2021 at 20:06.
Pushed by mlaurent into branch 'master'.

Fix documentation typo

M  +1-1doc/kcontrol5/index.docbook

https://invent.kde.org/system/kcron/commit/e490b383cb18bcd22acc502d4d86aa8a6a19f90c

diff --git a/doc/kcontrol5/index.docbook b/doc/kcontrol5/index.docbook
index fc234cb..92d4e3b 100644
--- a/doc/kcontrol5/index.docbook
+++ b/doc/kcontrol5/index.docbook
@@ -251,7 +251,7 @@ every Sunday of the selected months (regardless of day of 
the
 month).
 
 The scheduled task is not actually set up until the
-crontab has been saved.
+ crontab has been saved.
 
 
 



Re: Updating KMail documentation

2020-08-22 Thread Laurent Montel
Hi David,
I just come back from vacations.
I have a lot of email to read. I hope to read your work this WE.

I just send you this email to signal that I was in vacation.

I will review it soon.

Thanks for your works.

Regards

Le samedi 22 août 2020, 02:36:15 CEST David Bryant a écrit :
> I have revised the first two chapters of the KMail index.docbook document,
> and I have added the changes to the Gitlab repository as branch "work/doc".
> You may view the changes here:
> 
> https://invent.kde.org/pim/kmail/-/commit/9315d47d87b61193d5ab2eb873e24e8e96
> be13fb
> 
> I would appreciate some proofreading help. The changes I have made up to
> this point form a cohesive whole, so if somebody (Yuri? Montel?) wants to
> merge them into the "master" branch, I'm OK with that. I marked this commit
> with "WIP" because I intend to work my way all the way through the KMail
> documentation.  But it's pretty long, so that will take a while.  
> 
> I also have a question. I'm sort of new at this, so after reading some stuff
> in the wiki, I created a "fork" of the pim/kmail project. Later I realized
> that I don't really need the fork; I can push stuff directly to branch
> "work/doc". So I'd like to remove the fork (which I will never use again),
> but I don't see how to do that. Suggestions / advice welcome. Thanks!
> --
> D. Bryant
> Canyon Lake, Texas
> https://davidcbryant.net


-- 
Laurent Montel | laurent.mon...@kdab.com | KDE/Qt Senior Software Engineer 
KDAB (France) S.A.S., a KDAB Group company
Tel: France +33 (0)4 90 84 08 53, http://www.kdab.fr
KDAB - The Qt, C++ and OpenGL Experts





D29724: SendLaterAgent: merge libKF5SendLater library into the agent

2020-05-18 Thread Laurent Montel
mlaurent accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R206 KMail

BRANCH
  arcpatch-D29724

REVISION DETAIL
  https://phabricator.kde.org/D29724

To: dvratil, mlaurent
Cc: kde-doc-english, kde-pim, gennad, fbampaloukas, skadinna, dvasin, 
rodsevich, winterz, vkrause, mlaurent, knauss, dvratil


D29724: SendLaterAgent: merge libKF5SendLater library into the agent

2020-05-16 Thread Laurent Montel
mlaurent added inline comments.

INLINE COMMENTS

> mlaurent wrote in sendlaterutil_p.h:23
> not necessary no ?

I think that we can remove this include no ?

REPOSITORY
  R206 KMail

REVISION DETAIL
  https://phabricator.kde.org/D29724

To: dvratil, mlaurent
Cc: kde-doc-english, kde-pim, gennad, fbampaloukas, skadinna, dvasin, 
rodsevich, winterz, vkrause, mlaurent, knauss, dvratil


D29723: Adapt KMail to MessageComposer SendLater API changes

2020-05-14 Thread Laurent Montel
mlaurent accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R206 KMail

BRANCH
  sendlater-refactor

REVISION DETAIL
  https://phabricator.kde.org/D29723

To: dvratil, mlaurent
Cc: kde-doc-english, kde-pim, gennad, fbampaloukas, skadinna, dvasin, 
rodsevich, winterz, vkrause, mlaurent, knauss, dvratil


D27404: Hide empty top-level menu items

2020-02-18 Thread Laurent Montel
mlaurent accepted this revision.
mlaurent added a comment.
This revision is now accepted and ready to land.


  seems ok for me

REPOSITORY
  R125 KHelpCenter

REVISION DETAIL
  https://phabricator.kde.org/D27404

To: alnikiforov, yurchor, mlaurent, ltoscano
Cc: kde-doc-english, gennad, fbampaloukas, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2020-01-01 Thread Laurent Montel
This revision was automatically updated to reflect the committed changes.
Closed by commit R238:48b3c03fc710: Port endl to \n. endl in qt5.15 
is namespaced. We dont need to flush as when… (authored by mlaurent).

REPOSITORY
  R238 KDocTools

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D26317?vs=72514=72530

REVISION DETAIL
  https://phabricator.kde.org/D26317

AFFECTED FILES
  src/docbookl10nhelper.cpp

To: mlaurent, dfaure, aacid
Cc: ltoscano, aacid, anthonyfieroni, kde-frameworks-devel, kde-doc-english, 
LeGast00n, gennad, fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2020-01-01 Thread Laurent Montel
mlaurent updated this revision to Diff 72514.
mlaurent added a comment.


  merge \n

REPOSITORY
  R238 KDocTools

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D26317?vs=72444=72514

BRANCH
  port_endl_qt5.15 (branched from master)

REVISION DETAIL
  https://phabricator.kde.org/D26317

AFFECTED FILES
  src/docbookl10nhelper.cpp

To: mlaurent, dfaure
Cc: ltoscano, aacid, anthonyfieroni, kde-frameworks-devel, kde-doc-english, 
LeGast00n, gennad, fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-31 Thread Laurent Montel
mlaurent added a comment.


  "/compile/kde5/framework/frameworks/kdoctools/src/docbookl10nhelper.cpp: Dans 
la fonction « int writeLangFile(const QString&, const QString&, const 
LangListType&) »:
  /compile/kde5/framework/frameworks/kdoctools/src/docbookl10nhelper.cpp:62:57: 
erreur: « endl » n'est pas un membre de « Qt »
  
62 |   .arg(dtdPath) << QLatin1Char('\n') << Qt::endl;
  
  "
  no it's not :) qt5.13 :)

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D26317

To: mlaurent, dfaure
Cc: aacid, anthonyfieroni, kde-frameworks-devel, kde-doc-english, LeGast00n, 
gennad, fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-31 Thread Laurent Montel
mlaurent added a comment.


  "No, it's not. It's namespaced in Qt 5.15 means it should be ifdef guarded 
which makes things to suck." yep it's for that I switched to "\n"
  
  I don't want to add #ifdef if it's not necessary.

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D26317

To: mlaurent, dfaure
Cc: aacid, anthonyfieroni, kde-frameworks-devel, kde-doc-english, LeGast00n, 
gennad, fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-30 Thread Laurent Montel
mlaurent added a comment.


  "Also QStringLiteral is missing on some strings." it can be fix in other 
patch.

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D26317

To: mlaurent, dfaure
Cc: anthonyfieroni, kde-frameworks-devel, kde-doc-english, LeGast00n, gennad, 
fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-30 Thread Laurent Montel
mlaurent updated this revision to Diff 72444.
mlaurent added a comment.


  use QLatin1Char('\n')

REPOSITORY
  R238 KDocTools

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D26317?vs=72440=72444

BRANCH
  port_endl_qt5.15 (branched from master)

REVISION DETAIL
  https://phabricator.kde.org/D26317

AFFECTED FILES
  src/docbookl10nhelper.cpp

To: mlaurent, dfaure
Cc: anthonyfieroni, kde-frameworks-devel, kde-doc-english, LeGast00n, gennad, 
fbampaloukas, GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-30 Thread Laurent Montel
mlaurent added a reviewer: dfaure.

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D26317

To: mlaurent, dfaure
Cc: kde-frameworks-devel, kde-doc-english, LeGast00n, gennad, fbampaloukas, 
GB_2, michaelh, ngraham, bruns, skadinna


D26317: Port endl to "\n". endl in qt5.15 is namespaced. We don't need to flush as when QFile is deleted it flush data

2019-12-30 Thread Laurent Montel
mlaurent created this revision.
Herald added projects: Frameworks, Documentation.
Herald added subscribers: kde-doc-english, kde-frameworks-devel.
mlaurent requested review of this revision.

REVISION SUMMARY
  Port endl to \n

REPOSITORY
  R238 KDocTools

BRANCH
  port_endl_qt5.15 (branched from master)

REVISION DETAIL
  https://phabricator.kde.org/D26317

AFFECTED FILES
  src/docbookl10nhelper.cpp

To: mlaurent
Cc: kde-frameworks-devel, kde-doc-english, LeGast00n, gennad, fbampaloukas, 
GB_2, michaelh, ngraham, bruns, skadinna


D25253: [KAddressbook] Documentation improves

2019-11-23 Thread Laurent Montel
mlaurent accepted this revision.

REPOSITORY
  R204 KAddressBook

REVISION DETAIL
  https://phabricator.kde.org/D25253

To: Abella, #kde_pim, vkrause, yurchor, mlaurent
Cc: davidbryant, kde-pim, yurchor, kde-doc-english, vkrause, gennad, 
fbampaloukas, dcaliste, skadinna, dvasin, rodsevich, winterz, mlaurent, knauss, 
dvratil


D23866: Port from KHTML to QtWebEngine

2019-10-24 Thread Laurent Montel
mlaurent added a comment.


  Ping ? What is the status ?:)

REPOSITORY
  R125 KHelpCenter

REVISION DETAIL
  https://phabricator.kde.org/D23866

To: svuorela, vkrause, dfaure, carewolf, pino, ltoscano, lbeltrame, lueck, 
clauschristensen, cordlandwehr, mlaurent
Cc: anthonyfieroni, kde-doc-english, gennad, fbampaloukas, skadinna


Re: Can we revisit https://phabricator.kde.org/D10068

2019-10-08 Thread laurent Montel
Le mardi 8 octobre 2019, 13:47:28 CEST David Bryant a écrit :
> On Tuesday, October 8, 2019 5:59:15 AM CDT James Thornber wrote:
> > Thanks that worked a treat! :)
> > 
> > However, there is absolutely no chance of me, or indeed any new user
> > finding that option!  [snip ...]
> 
> I'm working on the KMail documentation, and I'll be sure to give that button
> some extra ink, James. There are quite a few "plugins" that alter the basic
> program's appearance (by adding and subtracting menu items) and
> functionality. Not all of the features can be "prominent". There are too
> many features for that to be possible.
> 
> I'm still looking for someone who's willing to help me update the KMail
> documentation. I'm mainly looking for feedback and criticism. Takers?

Hi,
Where is your patch for documentation ?
I can't fix english text but I can help you to find features etc.
Regards

> 
> D. Bryant
> Canyon Lake, Texas


-- 
Laurent Montel | laurent.mon...@kdab.com | KDE/Qt Senior Software Engineer 
KDAB (France) S.A.S., a KDAB Group company Tel. France +33 (0)4 90 84 08 53, 
 www.kdab.fr KDAB - The Qt, C++ and OpenGL Experts - Platform-independent 
software solutions 




D23866: Port from KHTML to QtWebEngine

2019-09-21 Thread Laurent Montel
mlaurent added a comment.


  So what is the status of this patch ?

REPOSITORY
  R125 KHelpCenter

REVISION DETAIL
  https://phabricator.kde.org/D23866

To: svuorela, vkrause, dfaure, carewolf, pino, ltoscano, lbeltrame, lueck, 
clauschristensen, cordlandwehr, mlaurent
Cc: anthonyfieroni, kde-doc-english, gennad, fbampaloukas, skadinna


Re: D22799: Adding new .docbook for KAddressBook, draft version

2019-09-12 Thread laurent Montel
Le mercredi 11 septembre 2019, 13:27:16 CEST David Bryant a écrit :
> On Tuesday, September 10, 2019 12:38:04 PM CDT Laurent Montel wrote:
> > mlaurent added a comment.
> > 
> >   first at all thanks a lot for this documentation.
> >   
> >   What is the problem with ldap server ?
> 
> It's not a problem, exactly. I understand that "LDAP" stands for Lightweight
> Directory Access Protocol. And I can look up most of the terminology on
> Wikipedia et al. The thing is, I do my best writing about things that I can
> actually observe in action. And I can't locate an existing LDAP server to
> play around with, so I can learn how the interface software in KAddressBook
> actually functions. It looks as if most of the LDAP servers out there
> require login credentials, which I don't have. I found a couple of sites
> that say they're set up for programmers to practice on. But I can't get
> them to work for me.
> 
> Is there an LDAP server somewhere with an anonymous user setup, like some
> FTP sites that still exist? Or do I have to set up an account somewhere? If
> so, where?

Hi,
No I don't know a LDAP server where you can test it.

Sorry.
Regards

> 
> D. Bryant


-- 
Laurent Montel | laurent.mon...@kdab.com | KDE/Qt Senior Software Engineer 
KDAB (France) S.A.S., a KDAB Group company Tel. France +33 (0)4 90 84 08 53, 
 www.kdab.fr KDAB - The Qt, C++ and OpenGL Experts - Platform-independent 
software solutions 




D23866: Port from KHTML to QtWebEngine

2019-09-11 Thread Laurent Montel
mlaurent added a comment.


  You removed font settings dialog.
  But we can add default font as it:
  
const QFontInfo 
font(QFontDatabase().systemFont(QFontDatabase::GeneralFont));
settings()->setFontFamily(QWebEngineSettings::StandardFont, font.family());
settings()->setFontSize(QWebEngineSettings::DefaultFontSize, 
font.pixelSize());

REPOSITORY
  R125 KHelpCenter

REVISION DETAIL
  https://phabricator.kde.org/D23866

To: svuorela, vkrause, dfaure, carewolf, pino, ltoscano, lbeltrame, lueck, 
clauschristensen, cordlandwehr, mlaurent
Cc: kde-doc-english, gennad, fbampaloukas, skadinna


D23866: Port from KHTML to QtWebEngine

2019-09-11 Thread Laurent Montel
mlaurent requested changes to this revision.
mlaurent added inline comments.
This revision now requires changes to proceed.

INLINE COMMENTS

> mainwindow.cpp:263
> -action->setIcon( QIcon::fromTheme( QStringLiteral("zoom-in") ) );
> -connect( action, ::triggered, this, 
> ::slotIncFontSizes );
> -

We still have zoom support in webengine. see setZoomFactor
I think that it's useful to be able to increase/decrease it.

> mainwindow.cpp:292
>  
> -void MainWindow::print()
>  {

Print support can be implemented

I use a code as it:
bool WebEnginePage::execPrintPreviewPage(QPrinter *printer, int timeout)
{

  QPointer loop = new QEventLoop;
  bool result = false;
  QTimer::singleShot(timeout, loop.data(), ::quit);
  
  print(printer, [loop, ](bool res) {
  if (loop && loop->isRunning()) {
  result = res;
  loop->quit();
  }
  });
  
  loop->exec();
  delete loop;
  
  return result;

}
see WebEnginePage

> view.cpp:213
> -
> -void View::showMenu( const QString& url, const QPoint& pos)
> -{

QAction *QWebEngineView::pageAction(QWebEnginePage::WebAction action) const
can generate some actions.

REPOSITORY
  R125 KHelpCenter

REVISION DETAIL
  https://phabricator.kde.org/D23866

To: svuorela, vkrause, dfaure, carewolf, pino, ltoscano, lbeltrame, lueck, 
clauschristensen, cordlandwehr, mlaurent
Cc: kde-doc-english, gennad, fbampaloukas, skadinna


D22799: Adding new .docbook for KAddressBook, draft version

2019-09-10 Thread Laurent Montel
mlaurent added a comment.


  first at all thanks a lot for this documentation.
  
  What is the problem with ldap server ?

REPOSITORY
  R204 KAddressBook

REVISION DETAIL
  https://phabricator.kde.org/D22799

To: davidbryant, #documentation, #kde_pim
Cc: mlaurent, yurchor, lueck, ognarb, kde-pim, kde-doc-english, gennad, 
fbampaloukas, skadinna, dvasin, rodsevich, winterz, vkrause, knauss, dvratil


[pim-data-exporter] doc: Name was renamed

2019-06-10 Thread Laurent Montel
Git commit b6e0830b98fd50cdae104f2a8348b589a0e4879d by Laurent Montel.
Committed on 11/06/2019 at 04:45.
Pushed by mlaurent into branch 'master'.

Name was renamed

M  +14   -15   doc/index.docbook

https://commits.kde.org/pim-data-exporter/b6e0830b98fd50cdae104f2a8348b589a0e4879d

diff --git a/doc/index.docbook b/doc/index.docbook
index 16d367d..6daf431 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -3,16 +3,16 @@
 "dtd/kdedbx45.dtd" [
   
-  PIM Setting 
Exporter">
+  PIM Data Exporter">
   

   IMAP">
 ]>
 
-
+
 
-
-The  Handbook
+
+The  Handbook
 
 
 
@@ -48,7 +48,7 @@
 
 Introduction
 
- allows to export and import PIM settings and 
local mail. You can backup and restore settings from the following programs:
+ allows to export and import PIM settings and 
local mail. You can backup and restore settings from the following programs:
 
 
 
@@ -56,18 +56,17 @@
 
 
 
-
 
 
 
 
-Using 
-Backing up is an essential practice for all users. 

+Using 
+Backing up is an essential practice for all users. 
 is a great tool for backing up or moving all of your settings and email to a 
new installation.
-You also use  to import previous backups.
+You also use  to import previous backups.
 You can use ToolsExport 
 Data...
- through the message view window or  can be run as a 
standalone application by running
- in the application launcher.
+ through the message view window or  can be run as a 
standalone application by running
+ in the application launcher.
 
 To perform a backup, select 
FileBack Up 
Data...,
  it will prompt you to close all kdepim applications.
@@ -96,7 +95,7 @@ If you have emails on a  server you wish to be backed 
up, you should use
   
 
 The final screen shows the log of the backup up process. You can close 
the window once you have reviewed the log and verified your backup was 
successful.
-To restore your backup, select 
FileRestore 
Data... within .
+To restore your backup, select 
FileRestore 
Data... within .
 Using ToolsShow Archive 
Information
 you can select a backup archive and view its content.
 
@@ -105,12 +104,12 @@ you can select a backup archive and view its 
content.
 
 
 Credits and License
-
+
 
-Program copyright 2013  
+Program copyright 2019  
 
 
-Documentation Copyright  2013   
 
+Documentation Copyright  2019   
 
 
 
 


[ruqola] doc: Update copyright

2019-04-10 Thread Laurent Montel
Git commit f4ea9bc4938dfeb4f5239856ea6e3c89d7b6e67e by Laurent Montel.
Committed on 10/04/2019 at 18:11.
Pushed by mlaurent into branch 'master'.

Update copyright

M  +1-1doc/index.docbook

https://commits.kde.org/ruqola/f4ea9bc4938dfeb4f5239856ea6e3c89d7b6e67e

diff --git a/doc/index.docbook b/doc/index.docbook
index 37332782..2b4a56fb 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -69,7 +69,7 @@
 
 
 
-Program copyright 2018  
+Program copyright 2018-2019  
 
 
 Documentation Copyright   



D19335: [kdoctools] make it compile without foreach

2019-02-26 Thread Laurent Montel
mlaurent abandoned this revision.

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D19335

To: mlaurent, dfaure
Cc: ltoscano, kde-frameworks-devel, kde-doc-english, gennad, michaelh, ngraham, 
bruns, skadinna


D19335: [kdoctools] make it compile without foreach

2019-02-26 Thread Laurent Montel
mlaurent added a comment.


  oops indeed. I landed it and forgot to git pull :)
  
  I will close it now :)

REPOSITORY
  R238 KDocTools

REVISION DETAIL
  https://phabricator.kde.org/D19335

To: mlaurent, dfaure
Cc: ltoscano, kde-frameworks-devel, kde-doc-english, gennad, michaelh, ngraham, 
bruns, skadinna


D19335: [kdoctools] make it compile without foreach

2019-02-26 Thread Laurent Montel
mlaurent created this revision.
mlaurent added a reviewer: dfaure.
Herald added projects: Frameworks, Documentation.
Herald added subscribers: kde-doc-english, kde-frameworks-devel.
mlaurent requested review of this revision.

REVISION SUMMARY
  compile without foreach

REPOSITORY
  R238 KDocTools

BRANCH
  make_it_compile_without_foreach (branched from master)

REVISION DETAIL
  https://phabricator.kde.org/D19335

AFFECTED FILES
  CMakeLists.txt
  src/xslt.cpp

To: mlaurent, dfaure
Cc: kde-frameworks-devel, kde-doc-english, gennad, michaelh, ngraham, bruns, 
skadinna


D19271: Make it compiles without foreach

2019-02-24 Thread Laurent Montel
This revision was automatically updated to reflect the committed changes.
Closed by commit R238:3fbec01f6f7c: Make it compiles without foreach (authored 
by mlaurent).

REPOSITORY
  R238 KDocTools

CHANGES SINCE LAST UPDATE
  https://phabricator.kde.org/D19271?vs=52435=52472

REVISION DETAIL
  https://phabricator.kde.org/D19271

AFFECTED FILES
  CMakeLists.txt
  src/xslt.cpp

To: mlaurent, dfaure
Cc: kde-frameworks-devel, kde-doc-english, gennad, michaelh, ngraham, bruns, 
skadinna


D19271: Make it compiles without foreach

2019-02-24 Thread Laurent Montel
mlaurent created this revision.
mlaurent added a reviewer: dfaure.
Herald added projects: Frameworks, Documentation.
Herald added subscribers: kde-doc-english, kde-frameworks-devel.
mlaurent requested review of this revision.

REVISION SUMMARY
  compile without foreach

REPOSITORY
  R238 KDocTools

BRANCH
  compile_without_foreach (branched from master)

REVISION DETAIL
  https://phabricator.kde.org/D19271

AFFECTED FILES
  CMakeLists.txt
  src/xslt.cpp

To: mlaurent, dfaure
Cc: kde-frameworks-devel, kde-doc-english, gennad, michaelh, ngraham, bruns, 
skadinna


[kleopatra] /: Use https

2018-12-10 Thread Laurent Montel
Git commit 21b6ccf451976c58295661011fa8072470b660ff by Laurent Montel.
Committed on 10/12/2018 at 19:13.
Pushed by mlaurent into branch 'master'.

Use https

M  +1-1doc/kleopatra/index.docbook
M  +1-1src/data/org.kde.kleopatra.appdata.xml

https://commits.kde.org/kleopatra/21b6ccf451976c58295661011fa8072470b660ff

diff --git a/doc/kleopatra/index.docbook b/doc/kleopatra/index.docbook
index f06f12cf..2ed912f3 100644
--- a/doc/kleopatra/index.docbook
+++ b/doc/kleopatra/index.docbook
@@ -209,7 +209,7 @@ signatures in emails, since certificates are embedded in the
 signatures made using them most of the time. However, if you need to
 send a mail to someone you have not yet had contact with, you need to
 fetch the certificate from an  folder (although http://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html#Invoking-GPGSM;>
+url="https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html#Invoking-GPGSM;>
  can do
 this automatically), or from a file. You also need to import your own
 certificate after receiving the  answer to your certification
diff --git a/src/data/org.kde.kleopatra.appdata.xml 
b/src/data/org.kde.kleopatra.appdata.xml
index 52d6ff4a..0d064fd1 100644
--- a/src/data/org.kde.kleopatra.appdata.xml
+++ b/src/data/org.kde.kleopatra.appdata.xml
@@ -105,7 +105,7 @@
 Kleopatra 是一套憑證管理與通用加密介面。它可以管理 GpgSM keybox 裡的 X.509 與 
OpenPGP 憑證,並從 LDAP 伺服器取得憑證。
   
   https://bugs.kde.org/enter_bug.cgi?format=guidedproduct=kleopatra
-  http://docs.kde.org/stable/en/kdepim/kleopatra/index.html
+  https://docs.kde.org/stable5/en/pim/kleopatra/index.html
   
 
   Certificate overview in Kleopatra


[kleopatra] /: Use https

2018-12-10 Thread Laurent Montel
Git commit 693cbbe072b8d4c6f9043c7f96bc1d6904cc71a7 by Laurent Montel.
Committed on 10/12/2018 at 19:01.
Pushed by mlaurent into branch 'master'.

Use https

M  +2-2cmake/modules/FindAssuan2.cmake
M  +4-4doc/kleopatra/index.docbook

https://commits.kde.org/kleopatra/693cbbe072b8d4c6f9043c7f96bc1d6904cc71a7

diff --git a/cmake/modules/FindAssuan2.cmake b/cmake/modules/FindAssuan2.cmake
index b8c2cc6b..ae8d62cd 100644
--- a/cmake/modules/FindAssuan2.cmake
+++ b/cmake/modules/FindAssuan2.cmake
@@ -231,9 +231,9 @@ if ( NOT Assuan2_FIND_QUIETLY )
   endif()
 
   if ( WIN32 )
-set( _assuan2_homepage "http://www.gpg4win.org; )
+set( _assuan2_homepage "https://www.gpg4win.org; )
   else()
-set( _assuan2_homepage "http://www.gnupg.org/related_software/libassuan; )
+set( _assuan2_homepage "https://www.gnupg.org/related_software/libassuan; )
   endif()
 
   set_package_properties(ASSUAN2 PROPERTIES DESCRIPTION "Assuan v2 IPC library"
diff --git a/doc/kleopatra/index.docbook b/doc/kleopatra/index.docbook
index 6b2c7513..f06f12cf 100644
--- a/doc/kleopatra/index.docbook
+++ b/doc/kleopatra/index.docbook
@@ -95,7 +95,7 @@
 
 
 
-   is a tool for managing http://en.wikipedia.org/wiki/X.509;> and http://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP;>
 certificates.
+   is a tool for managing https://en.wikipedia.org/wiki/X.509;> and https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP;>
 certificates.
 
 
 
@@ -116,8 +116,8 @@
 
  Introduction
 
- is the  tool for managing http://en.wikipedia.org/wiki/X.509;> and http://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP;>
 certificates in
-  the http://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html;>
 and http://en.wikipedia.org/wiki/GNU_Privacy_Guard;> 
keyboxes and for retrieving certificates from
+ is the  tool for managing https://en.wikipedia.org/wiki/X.509;> and 
 certificates in
+  the https://www.gnupg.org/documentation/manuals/gnupg/Invoking-GPGSM.html;>
 and https://en.wikipedia.org/wiki/GNU_Privacy_Guard;> 
keyboxes and for retrieving certificates from
  and other certificate servers.
 
  can be started from 's 
Tools
@@ -130,7 +130,7 @@ Egyptian pharaoh that lived at the time of Julius Caesar, 
with whom
 she had a child, Caesarion, unacknowledged as his heir.
 
 The name was chosen since this program originates from the
-http://www.gnupg.org/aegypten2/;>gypten
+https://www.gnupg.org/aegypten2/;>gypten
 Projects (gypten is German for Egypt).  is the
 German spelling of Cleopatra.
 


[pim-sieve-editor] doc: Remove this obsolete line

2018-12-09 Thread Laurent Montel
Git commit ec32267e9a85bcd25a806386564329d6abde3d9f by Laurent Montel.
Committed on 10/12/2018 at 07:45.
Pushed by mlaurent into branch 'master'.

Remove this obsolete line

M  +0-2doc/index.docbook

https://commits.kde.org/pim-sieve-editor/ec32267e9a85bcd25a806386564329d6abde3d9f

diff --git a/doc/index.docbook b/doc/index.docbook
index 916f84d..81cc875 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -48,8 +48,6 @@
 
 
 
-
-
 
 Introduction
  is an editor for


D16904: Use HTTPS for all user accessible URLs

2018-11-15 Thread Laurent Montel
mlaurent accepted this revision.

REPOSITORY
  R91 PIM: Sieve Handling Library

BRANCH
  Applications/18.12

REVISION DETAIL
  https://phabricator.kde.org/D16904

To: vkrause, yurchor, mlaurent
Cc: kde-pim, kde-doc-english, skadinna, dvasin, rodsevich, winterz, vkrause, 
mlaurent, knauss, dvratil


D16350: Allow KHelpCenter to open the right pages of KDE help when KHelpClient is invoked with an anchor

2018-10-23 Thread Laurent Montel
mlaurent accepted this revision.
mlaurent added a comment.
This revision is now accepted and ready to land.


  seems ok for me

REPOSITORY
  R265 KConfigWidgets

REVISION DETAIL
  https://phabricator.kde.org/D16350

To: yurchor, #documentation, #frameworks, mlaurent
Cc: mlaurent, kde-frameworks-devel, michaelh, ngraham, bruns


[ruqola] /: Prepare doc file

2018-03-12 Thread Laurent Montel
Git commit 46bf3347cc71ee0a8d4742d4c50094a85c1e16fd by Laurent Montel.
Committed on 12/03/2018 at 06:14.
Pushed by mlaurent into branch 'master'.

Prepare doc file

M  +1-0CMakeLists.txt
M  +2-0doc/CMakeLists.txt
A  +98   -0doc/index.docbook

https://commits.kde.org/ruqola/46bf3347cc71ee0a8d4742d4c50094a85c1e16fd

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 77c3b0b..b787521 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -37,6 +37,7 @@ find_package(KF5 ${KF5_VERSION} REQUIRED COMPONENTS
 KIO
 Notifications
 SyntaxHighlighting
+DocTools
 )
 
 if (WIN32 OR APPLE)
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index e69de29..f0c9ddc 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -0,0 +1,2 @@
+kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR ruqola)
+
diff --git a/doc/index.docbook b/doc/index.docbook
new file mode 100644
index 000..3733278
--- /dev/null
+++ b/doc/index.docbook
@@ -0,0 +1,98 @@
+
+
+  Ruqola">
+  
+  
+   
+]>
+
+
+
+
+
+The  Handbook
+
+
+
+
+Laurent
+Montel
+
+mon...@kde.org
+
+
+
+
+
+2018
+Laurent Montel
+
+
+
+
+2018-03-12
+
+
+
+
+ is a client apps for RocketChat.
+
+
+
+
+KDE
+RocketChat
+
+
+
+
+
+
+Introduction
+ is a client application for RocketChat.
+
+
+Using 
+
+ allows to connect to RocketChat server.
+
+
+
+
+
+
+
+Credits and License
+
+
+
+Program copyright 2018  
+
+
+Documentation Copyright   
+
+
+
+
+   
+  
+
+
+
+
+
+


D5496: update kmail documentation (getting-started.docbook)

2017-06-28 Thread Laurent Montel
mlaurent accepted this revision.
mlaurent added a comment.
This revision is now accepted and ready to land.


  oops I forgot this one.
  Thanks

REPOSITORY
  R206 KMail

REVISION DETAIL
  https://phabricator.kde.org/D5496

To: lueck, #kde_pim, mlaurent, #documentation
Cc: dvasin, winterz, vkrause, mlaurent, knauss, dvratil


D5517: update kmail documentation (index.docbook)

2017-04-20 Thread Laurent Montel
mlaurent accepted this revision.
This revision is now accepted and ready to land.

REPOSITORY
  R206 KMail

REVISION DETAIL
  https://phabricator.kde.org/D5517

To: lueck, #kde_pim, mlaurent, #documentation
Cc: dvasin, ach, winterz, vkrause, mlaurent, knauss, dvratil


[kmail2] [Bug 374767] Help action in accountwizard does not open the correct documentation

2017-02-20 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=374767

Laurent Montel <mon...@kde.org> changed:

   What|Removed |Added

   Version Fixed In||5.5.0
  Latest Commit||https://commits.kde.org/kma
   ||il-account-wizard/536697fbc
   ||90166302968423cba24f1774804
   ||3f35
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Laurent Montel <mon...@kde.org> ---
Git commit 536697fbc90166302968423cba24f17748043f35 by Montel Laurent.
Committed on 21/02/2017 at 07:41.
Pushed by mlaurent into branch 'master'.

Fix Bug 374767 - Help action in accountwizard does not open the correct
documentation

FIXED-IN: 5.5.0

M  +1-0src/CMakeLists.txt
M  +7-0src/dialog.cpp
M  +1-0src/dialog.h

https://commits.kde.org/kmail-account-wizard/536697fbc90166302968423cba24f17748043f35

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[kmail2] [Bug 374756] Help docbook not found

2017-01-08 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=374756

Laurent Montel <mon...@kde.org> changed:

   What|Removed |Added

  Latest Commit||https://commits.kde.org/kma
   ||il/fa60adffbd7c8a10025968db
   ||57fb49b6f703c923
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.5.0

--- Comment #1 from Laurent Montel <mon...@kde.org> ---
Git commit fa60adffbd7c8a10025968db57fb49b6f703c923 by Montel Laurent.
Committed on 09/01/2017 at 05:55.
Pushed by mlaurent into branch 'master'.

Fix Bug 374756 - Help docbook not found

FIXED-IN: 5.5.0
Thanks Burkhard Lueck to give me some potential patch

M  +1-1doc/CMakeLists.txt
R  +1-1doc/kmail2/CMakeLists.txt [from: doc/kmail/CMakeLists.txt - 060%
similarity]
R  +---doc/kmail2/accountwizard.png [from: doc/kmail/accountwizard.png
- 100% similarity]
R  +---doc/kmail2/aggregationtheme.png [from:
doc/kmail/aggregationtheme.png - 100% similarity]
R  +0-0doc/kmail2/configure.docbook [from: doc/kmail/configure.docbook
- 100% similarity]
R  +---doc/kmail2/configure.png [from: doc/kmail/configure.png - 100%
similarity]
R  +0-0doc/kmail2/credits-and-licenses.docbook [from:
doc/kmail/credits-and-licenses.docbook - 100% similarity]
R  +0-0doc/kmail2/faq.docbook [from: doc/kmail/faq.docbook - 100%
similarity]
R  +---doc/kmail2/folder-example.png [from:
doc/kmail/folder-example.png - 100% similarity]
R  +---doc/kmail2/folder-properties.png [from:
doc/kmail/folder-properties.png - 100% similarity]
R  +---doc/kmail2/folderarchiveagent.png [from:
doc/kmail/folderarchiveagent.png - 100% similarity]
R  +0-0doc/kmail2/getting-started.docbook [from:
doc/kmail/getting-started.docbook - 100% similarity]
R  +---doc/kmail2/identitiesadvanced.png [from:
doc/kmail/identitiesadvanced.png - 100% similarity]
R  +---doc/kmail2/identity.png [from: doc/kmail/identity.png - 100%
similarity]
R  +---doc/kmail2/identitycryptography.png [from:
doc/kmail/identitycryptography.png - 100% similarity]
R  +---doc/kmail2/identitygeneral.png [from:
doc/kmail/identitygeneral.png - 100% similarity]
R  +---doc/kmail2/identitypicture.png [from:
doc/kmail/identitypicture.png - 100% similarity]
R  +---doc/kmail2/identitysignature.png [from:
doc/kmail/identitysignature.png - 100% similarity]
R  +---doc/kmail2/identitytemplate.png [from:
doc/kmail/identitytemplate.png - 100% similarity]
R  +0-0doc/kmail2/index.docbook [from: doc/kmail/index.docbook - 100%
similarity]
R  +0-0doc/kmail2/intro.docbook [from: doc/kmail/intro.docbook - 100%
similarity]
R  +---doc/kmail2/kmailwelcome.png [from: doc/kmail/kmailwelcome.png -
100% similarity]
R  +---doc/kmail2/layout.png [from: doc/kmail/layout.png - 100%
similarity]
R  +---doc/kmail2/mail-mark-important.png [from:
doc/kmail/mail-mark-important.png - 100% similarity]
R  +---doc/kmail2/mail-mark-read.png [from:
doc/kmail/mail-mark-read.png - 100% similarity]
R  +---doc/kmail2/mail-mark-task.png [from:
doc/kmail/mail-mark-task.png - 100% similarity]
R  +---doc/kmail2/mail-mark-unread.png [from:
doc/kmail/mail-mark-unread.png - 100% similarity]
R  +---doc/kmail2/mail-thread-ignored.png [from:
doc/kmail/mail-thread-ignored.png - 100% similarity]
R  +---doc/kmail2/mail-thread-watch.png [from:
doc/kmail/mail-thread-watch.png - 100% similarity]
R  +0-0doc/kmail2/menus.docbook [from: doc/kmail/menus.docbook - 100%
similarity]
R  +---doc/kmail2/message.png [from: doc/kmail/message.png - 100%
similarity]
R  +---doc/kmail2/messagelisttheme.png [from:
doc/kmail/messagelisttheme.png - 100% similarity]
R  +---doc/kmail2/smile.png [from: doc/kmail/smile.png - 100%
similarity]
R  +0-0doc/kmail2/troubleshooting.docbook [from:
doc/kmail/troubleshooting.docbook - 100% similarity]
R  +0-0doc/kmail2/using-kmail.docbook [from:
doc/kmail/using-kmail.docbook - 100% similarity]
M  +1-1src/data/org.kde.kmail.appdata.xml
M  +1-1src/data/org.kde.kmail.desktop

https://commits.kde.org/kmail/fa60adffbd7c8a10025968db57fb49b6f703c923

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Re: Review Request 129627: update korganizer docbook to kf5

2016-12-31 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/129627/#review101679
---


Ship it!




Ship It!

- Laurent Montel


On Dec. 10, 2016, 11:46 a.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/129627/
> ---
> 
> (Updated Dec. 10, 2016, 11:46 a.m.)
> 
> 
> Review request for Documentation and KDEPIM.
> 
> 
> Repository: korganizer
> 
> 
> Description
> ---
> 
> removed unused entities kappname + package
> bump date + releaseinfo
> proofread + update
> remove all commented stuff
> remove calendar in remote file
> remove toolbar configuration + shortcuts, it is already in fundamentals
> remove appendix installation
> new screenshots + icon pngs, not uploaded
> 
> 
> Diffs
> -
> 
>   doc/index.docbook 7dcf2ce 
> 
> Diff: https://git.reviewboard.kde.org/r/129627/diff/
> 
> 
> Testing
> ---
> 
> checkXML5 index.docbook
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>



Re: Review Request 129561: delete kontact-admin docbook

2016-12-31 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/129561/#review101678
---


Ship it!




Ship It!

- Laurent Montel


On Dec. 14, 2016, 3:13 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/129561/
> ---
> 
> (Updated Dec. 14, 2016, 3:13 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Allen Winter.
> 
> 
> Repository: kontact
> 
> 
> Description
> ---
> 
> remove kappname + packages, no longer used
> bump date + releaseinfo
> remove "Outlook compatible invitation reply comments", I could not find it in 
> the code
> remove empty chapter Common Problems
> remove appendix
> 
> There is not much content in this docbook and parts of these options are 
> already in the kmail handbook.
> Maybe we should move everything into the kmail/kontact docbooks are and 
> delete this docbook?
> Any comments?
> 
> 
> Diffs
> -
> 
>   doc/CMakeLists.txt ef29fc8 
>   doc/kontact-admin/CMakeLists.txt ab1f9dc 
>   doc/kontact-admin/index.docbook dd21a2c 
>   doc/kontact-admin/kontact-admin.desktop a7b5d53 
> 
> Diff: https://git.reviewboard.kde.org/r/129561/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>



Re: Review Request 129637: update kpat man docbook

2016-12-11 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/129637/#review101367
---


Ship it!




Ship It!

- Laurent Montel


On Dec. 10, 2016, 5:55 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/129637/
> ---
> 
> (Updated Dec. 10, 2016, 5:55 p.m.)
> 
> 
> Review request for Documentation and KDE Games.
> 
> 
> Repository: kpat
> 
> 
> Description
> ---
> 
> remove options from qt5/kf5
> use See Also from man template to get rid of KDEDIR
> 
> 
> Diffs
> -
> 
>   doc/man-kpat.6.docbook a03c946 
> 
> Diff: https://git.reviewboard.kde.org/r/129637/diff/
> 
> 
> Testing
> ---
> 
> checkXML5 man-kpat.6.docbook
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>



Re: Review Request 129629: update kontact docbook to kf5

2016-12-09 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/129629/#review101338
---


Ship it!




+2 thanks a lot.

- Laurent Montel


On Dec. 9, 2016, 9:47 a.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/129629/
> ---
> 
> (Updated Dec. 9, 2016, 9:47 a.m.)
> 
> 
> Review request for Documentation and KDEPIM.
> 
> 
> Repository: kontact
> 
> 
> Description
> ---
> 
> proofread + update
> remove kappname + package, not used in kf5
> bump date + releaseinfo
> remove sect shortcuts, it is in fundamentals
> remove obsolete hompage link
> fix command line arguments
> new screenshots
> 
> 
> Diffs
> -
> 
>   doc/kontact/calendar-sidebar-icon.png 180e6d1 
>   doc/kontact/configuration-main.png 718881b 
>   doc/kontact/configuration-starting-component.png 96e4c8e 
>   doc/kontact/index.docbook 1112a5c 
>   doc/kontact/kaddressbook-sidebar-icon.png 2c9f85e 
>   doc/kontact/main-view.png 12c6236 
>   doc/kontact/menu-bar-kmail.png 95a26d4 
>   doc/kontact/menu-bar-korganizer.png c1a344c 
>   doc/kontact/menu-bar-summary.png 3245bda 
>   doc/kontact/navigator-bar-kontact.png 254de42 
>   doc/kontact/new-menu.png ea92e8b 
>   doc/kontact/settings-menu-kmail.png 0c0ad11 
>   doc/kontact/side-pane.png f53643f 
>   doc/kontact/summary-selection.png 3e53376 
>   doc/kontact/summary-view-calendar.png c7bda3c 
>   doc/kontact/summary-view-mail.png 621cfd4 
>   doc/kontact/summary-view-notes.png d7e73d8 
>   doc/kontact/summary-view-repositioning.png 2a1f9d3 
>   doc/kontact/summary-view-special-dates.png cf66b4e 
>   doc/kontact/summary-view-todos.png 45e71ef 
>   doc/kontact/summary-view.png ad85c83 
>   doc/kontact/todo-list-sidebar-icon.png 4dd6d99 
> 
> Diff: https://git.reviewboard.kde.org/r/129629/diff/
> 
> 
> Testing
> ---
> 
> checkXML5 index.docbook
> 
> 
> File Attachments
> 
> 
> configuration-main.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/dfb619f9-8a08-427b-87ad-468f29b6eb23__configuration-main.png
> new-menu.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/69172191-132f-4ce1-8300-1434207387a1__new-menu.png
> summary-view.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/38f267e4-6ba0-4390-b65e-b4a691533463__summary-view.png
> summary-view-repositioning.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/0e921be6-98fd-421d-9890-c2173ebbfa2b__summary-view-repositioning.png
> summary-selection.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/5a494c03-399f-48cc-8f86-70568c5fa0dd__summary-selection.png
> configuration-starting-component.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/89bc3b55-52af-4233-a543-ffde11316589__configuration-starting-component.png
> main-view.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/d6e5b58c-8641-4e49-be56-bb099a2f4a10__main-view.png
> settings-menu-kmail.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/8f58b7a4-c95a-49f8-892f-4a8821516974__settings-menu-kmail.png
> side-pane.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/12/09/6ecde7b5-c1dc-4acf-a2ac-d0e262ab0479__side-pane.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>



Re: Review Request 129627: update korganizer docbook to kf5

2016-12-08 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/129627/#review101332
---


Ship it!




Thanks for cleaning it.
+2 :)

- Laurent Montel


On Dec. 8, 2016, 12:50 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/129627/
> ---
> 
> (Updated Dec. 8, 2016, 12:50 p.m.)
> 
> 
> Review request for Documentation and KDEPIM.
> 
> 
> Repository: korganizer
> 
> 
> Description
> ---
> 
> removed unused entities kappname + package
> bump date + releaseinfo
> proofread + update
> remove all commented stuff
> remove calendar in remote file
> remove toolbar configuration + shortcuts, it is already in fundamentals
> remove appendix installation
> new screenshots + icon pngs, not uploaded
> 
> 
> Diffs
> -
> 
>   doc/index.docbook 7dcf2ce 
> 
> Diff: https://git.reviewboard.kde.org/r/129627/diff/
> 
> 
> Testing
> ---
> 
> checkXML5 index.docbook
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>



[konqueror] doc/kcontrol: Move doc for runtime here

2016-11-08 Thread Laurent Montel
Git commit fa2b83a488491d93079878cae862cf22e1ed18a9 by Laurent Montel.
Committed on 30/08/2007 at 19:25.
Pushed by lueck into branch 'master'.

Move doc for runtime here

svn path=/trunk/KDE/kdebase/runtime/; revision=706565

A  +2-0doc/kcontrol/filemanager/CMakeLists.txt
A  +297  -0doc/kcontrol/filemanager/index.docbook
A  +---doc/kcontrol/filemanager/kfileman1.png
A  +---doc/kcontrol/filemanager/kfileman2.png
A  +2-0doc/kcontrol/kcmcss/CMakeLists.txt
A  +257  -0doc/kcontrol/kcmcss/index.docbook
A  +2-0doc/kcontrol/performance/CMakeLists.txt
A  +102  -0doc/kcontrol/performance/index.docbook

http://commits.kde.org/konqueror/fa2b83a488491d93079878cae862cf22e1ed18a9

diff --git a/doc/kcontrol/filemanager/CMakeLists.txt 
b/doc/kcontrol/filemanager/CMakeLists.txt
new file mode 100644
index 000..65689b0
--- /dev/null
+++ b/doc/kcontrol/filemanager/CMakeLists.txt
@@ -0,0 +1,2 @@
+### install files ###
+kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en 
SUBDIR kcontrol/filemanager)
diff --git a/doc/kcontrol/filemanager/index.docbook 
b/doc/kcontrol/filemanager/index.docbook
new file mode 100644
index 000..be620a8
--- /dev/null
+++ b/doc/kcontrol/filemanager/index.docbook
@@ -0,0 +1,297 @@
+
+
+ 
+]>
+
+
+
+
+
+ 
+
+
+
+2002-10-16
+3.1
+
+
+KDE
+KControl
+file manager
+
+
+
+File Manager
+
+In this module, you can configure various aspects of
+'s file manager functionality. 
+
+'s web browser functionality has its own configuration
+modules.
+
+
+Use
+
+ The configuration options for the file manager are
+organized under tabs as follows:
+
+
+
+Appearance
+This tab contains options for customizing the appearance of
+ windows, such as the default font
+text color.
+
+
+
+Behavior
+This tab contains a couple of 
+global options.
+
+
+
+Previews
+
+On this tab, you can customize when  should show
+previews.
+
+
+
+
+
+Appearance
+
+The following settings determine how text and colors are displayed in
+ File Manager mode windows.
+
+
+
+Standard font:
+
+This is the font used to display text such as file names in
+ windows.
+
+
+
+
+Font size:
+
+
+Lets you control the size of text, while the Standard
+Font setting determines the font face used.
+
+
+
+
+Normal text color:
+
+Determines the standard text color.
+
+
+
+
+Height for icon text:
+
+The maximum number of lines that can be used to draw icon text.  Long 
lines are truncated at the end of the last line.
+ You can still see word-wrapped filenames by pausing the mouse 
pointer over the icon.
+
+
+
+
+Width for icon text:
+
+The maximum width for the icon text when  is in multi-column 
view mode.
+
+
+
+
+Underline filenames:
+
+When Underline filenames is checked,
+ filenames will be underlined so that they look like links on a web
+ page.
+
+
+
+
+Display file sizes in bytes:
+
+The final check box on this page determines how 
+displays file sizes, when you are in one of the file manager modes
+that normally shows this information.  If you check the
+Display file sizes in bytes box then file sizes
+are always shown in bytes.  If you leave it unchecked then file sizes
+are shown in bytes, kilobytes or megabytes, depending on their
+size.
+
+
+
+
+
+
+Behavior
+
+
+Misc Options
+
+Open folders in separate windows
+ If this option is checked, a new
+ window will be created when you open a
+folder, rather than simply showing that folder's contents in the
+ current
+window.
+
+
+
+Show network operations in a single window
+
+If unchecked, and you download a
+file, a dialog box will appear that shows the status of the
+download.
+
+
+  Download Dialog Box
+  
+  
+   Download Dialog Box 
+  
+  Individual Download Dialog Box
+  
+  
+
+
+If you start a new transfer, another dialog box will
+appear. ( users will be familiar with
+this behavior) 
+
+If checked, all transfer status windows will be grouped
+together under a single dialog box.
+
+  Download Dialog Box
+  
+  
+  Download Dialog Box
+  
+  Collected Download Dialog Box
+  
+  
+
+
+If you choose to use the Collected download dialog box, you can
+delete transfers by clicking once on the transfer you want to cancel,
+then clicking the Delete Button on the
+left.
+
+
+
+
+
+Show file tips
+
+ Here you can control if, when moving the mouse over a file, you
+want to see a small popup window with additional information about
+that file.
+
+
+
+
+Show previews in file tips
+
+Here you can control if the file tip should show a
+thumbnail preview of the file.
+
+
+
+
+
+Home URL
+This is the  ( a
+folder or a web page) where  will jump to
+when the Home button is pressed.The
+default is the users home folder, indicated with a
+~.
+
+
+
+You can set a path that is your Home URL by
+typing into the text field, or using the browse
+icon.  The default is ~ which is a standard
+shortcut for your $HOME folder.  When you choose the
+home icon on your panel, in a file open or save
+dialog, or from within  in f

Re: [kde-doc-english] Review Request 128538: Update Import Wizard docbook to 16.08

2016-07-30 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128538/#review97919
---


Ship it!




Ship It!

- Laurent Montel


On July 27, 2016, 3:24 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128538/
> ---
> 
> (Updated July 27, 2016, 3:24 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> bump date + releaseinfo
> section Manual Import is a modified copy of the KMailCVT handbook
> new screenshots
> 
> 
> Diffs
> -
> 
>   doc/importwizard/import-selection.png a991b7b 
>   doc/importwizard/index.docbook fccc33b 
> 
> Diff: https://git.reviewboard.kde.org/r/128538/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> File Attachments
> 
> 
> import-selection.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/e1ac1726-3b2f-465e-85ea-d28e8e7d70a2__import-selection.png
> manual-import.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/6dba7713-fd92-45df-b553-f9d694bfd3f3__manual-import.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128547: Update Akregator docbook to 16.08

2016-07-30 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128547/#review97918
---


Ship it!




Ship It!

- Laurent Montel


On July 29, 2016, 4:25 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128547/
> ---
> 
> (Updated July 29, 2016, 4:25 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> new screenshots not uploaded
> bump date + releaseinfo
> remove unused entities kappname + package and akregator already in kdoctools
> remove appendix installation
> 
> @Laurent:
> the feature Share Services no longer in kf5?
> Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?
> 
> 
> Diffs
> -
> 
>   doc/akregator/index.docbook f34a8ce 
> 
> Diff: https://git.reviewboard.kde.org/r/128547/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128547: Update Akregator docbook to 16.08

2016-07-29 Thread Laurent Montel


> On July 29, 2016, 11:39 a.m., Laurent Montel wrote:
> > "the feature Share Services no longer in kf5?" yep removed in kf5 
> > 
> > "Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?" 
> > nope it's specific to akregator/kmail I reimplemented it to support 
> > qtwebengine. So it's not the same.
> 
> Burkhard Lück wrote:
> >> Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?
> > nope it's specific to akregator/kmail I reimplemented it to support 
> qtwebengine. So it's not the same.
> 
> It is not the same for you from devel point of view, true.
> But for joe user it looks very similar to konquerors AdBlock page and it 
> seems to have similar features, 
> please look at 
> https://docs.kde.org/trunk5/en/kde-workspace/kcontrol/khtml-adblock/index.html
> 
> Thanks

Oh yes indeed for enduser it's the same :)


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128547/#review97902
---


On July 29, 2016, 8:17 a.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128547/
> -------
> 
> (Updated July 29, 2016, 8:17 a.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> new screenshots not uploaded
> bump date + releaseinfo
> remove unused entities kappname + package and akregator already in kdoctools
> remove appendix installation
> 
> @Laurent:
> the feature Share Services no longer in kf5?
> Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?
> 
> 
> Diffs
> -
> 
>   doc/akregator/index.docbook f34a8ce 
> 
> Diff: https://git.reviewboard.kde.org/r/128547/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128547: Update Akregator docbook to 16.08

2016-07-29 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128547/#review97902
---



"the feature Share Services no longer in kf5?" yep removed in kf5 

"Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?" nope 
it's specific to akregator/kmail I reimplemented it to support qtwebengine. So 
it's not the same.

- Laurent Montel


On July 29, 2016, 8:17 a.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128547/
> ---
> 
> (Updated July 29, 2016, 8:17 a.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> new screenshots not uploaded
> bump date + releaseinfo
> remove unused entities kappname + package and akregator already in kdoctools
> remove appendix installation
> 
> @Laurent:
> the feature Share Services no longer in kf5?
> Web Engine URL Interceptor Plugins page = AdBlock page from konqueror?
> 
> 
> Diffs
> -
> 
>   doc/akregator/index.docbook f34a8ce 
> 
> Diff: https://git.reviewboard.kde.org/r/128547/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128544: Update KNotes docbook to 16.08

2016-07-28 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128544/#review97893
---


Ship it!




Seems ok for me.
Ship it

- Laurent Montel


On July 28, 2016, 2:03 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128544/
> ---
> 
> (Updated July 28, 2016, 2:03 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> new screenshot
> bump date + releaseinfo
> remove unused entities kappname + package
> 
> 
> Diffs
> -
> 
>   doc/knotes/index.docbook a9e9130 
> 
> Diff: https://git.reviewboard.kde.org/r/128544/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128542: Proofread/update ktnef docbook to 16.08

2016-07-27 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128542/#review97877
---


Ship it!




Ship It!

- Laurent Montel


On July 27, 2016, 5:46 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128542/
> ---
> 
> (Updated July 27, 2016, 5:46 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> bump date + releaseinfo
> remove entities kappname + package
> change book to article
> new screenshot
> 
> 
> Diffs
> -
> 
>   doc/ktnef/index.docbook 008e8ed 
>   doc/ktnef/mainwindow.png 165f404 
> 
> Diff: https://git.reviewboard.kde.org/r/128542/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> File Attachments
> 
> 
> mainwindow.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/9c0caa67-0249-42a3-bddb-75d5c22cb4d9__mainwindow.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128539: Update using-kmail.docbook to 16.08

2016-07-27 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128539/#review97874
---


Ship it!




Ship It!

- Laurent Montel


On July 27, 2016, 3:18 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128539/
> ---
> 
> (Updated July 27, 2016, 3:18 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> Update section import-restore to reflect changes in importwizard
> 
> 
> Diffs
> -
> 
>   doc/kmail/using-kmail.docbook b0b046e 
> 
> Diff: https://git.reviewboard.kde.org/r/128539/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128535: Update pimsettingexporter docbook to 16.08

2016-07-27 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128535/#review97873
---


Ship it!




Seems good for me.

- Laurent Montel


On July 27, 2016, 11 a.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128535/
> ---
> 
> (Updated July 27, 2016, 11 a.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> better display name for app
> remove knode + add kjots, korganizer+blogilo
> new sceenshot
> bump date+releaseinfo
> remove appemdix
> 
> 
> Diffs
> -
> 
>   doc/pimsettingexporter/index.docbook a52159a 
>   doc/pimsettingexporter/selection-dialog.png 5246a80 
> 
> Diff: https://git.reviewboard.kde.org/r/128535/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> File Attachments
> 
> 
> selection-dialog.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/87cacc1a-fff2-4a68-bd26-6a779f026f30__selection-dialog.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 128538: Update Import Wizard docbook to 16.08

2016-07-27 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/128538/#review97872
---




doc/importwizard/index.docbook (line 149)
<https://git.reviewboard.kde.org/r/128538/#comment65955>

I think that we can remove kmailcvt here.
kmailcvt doesn't exist now as it was merged in importwizard.


- Laurent Montel


On July 27, 2016, 2:55 p.m., Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/128538/
> ---
> 
> (Updated July 27, 2016, 2:55 p.m.)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> proofread + update
> bump date + releaseinfo
> section Manual Import is a modified copy of the KMailCVT handbook
> new screenshots
> 
> 
> Diffs
> -
> 
>   doc/importwizard/import-selection.png a991b7b 
>   doc/importwizard/index.docbook fccc33b 
> 
> Diff: https://git.reviewboard.kde.org/r/128538/diff/
> 
> 
> Testing
> ---
> 
> passes checkXML5
> 
> 
> File Attachments
> 
> 
> import-selection.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/e1ac1726-3b2f-465e-85ea-d28e8e7d70a2__import-selection.png
> manual-import.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/07/27/6dba7713-fd92-45df-b553-f9d694bfd3f3__manual-import.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] [kdepim] doc/sieveeditor: Doc: fix URL format and link to katepart documentation

2016-05-12 Thread laurent Montel
Le jeudi 12 mai 2016, 20:08:37 CEST Luigi Toscano a écrit :
> laurent Montel ha scritto:
> > Hi,
> > Why we talk about katepart ?
> > We don't use it in sieveeditor.
> 
> I simply fixed what it was already there: it was a reference to katepart
> documentation, and kartpart is definitely a typo.

I know :)

> 
> The change that introduced the reference to KatePart was added as part of
> this revision:
> https://git.reviewboard.kde.org/r/127660/

Indeed I didn't see it when I wrote "ship it" it was an error.


> 
> > Le mercredi 11 mai 2016, 22:24:39 CEST Luigi Toscano a écrit :
> >> Git commit e34e5ac2875cf1b038f375bdf61d74fcf175dc71 by Luigi Toscano.
> >> Committed on 11/05/2016 at 22:24.
> >> Pushed by ltoscano into branch 'master'.
> >> 
> >> Doc: fix URL format and link to katepart documentation
> >> 
> >> M  +1-1doc/sieveeditor/index.docbook
> >> 
> >> http://commits.kde.org/kdepim/e34e5ac2875cf1b038f375bdf61d74fcf175dc71
> >> 
> >> diff --git a/doc/sieveeditor/index.docbook
> >> b/doc/sieveeditor/index.docbook
> >> index 7218f63..2afbc27 100644
> >> --- a/doc/sieveeditor/index.docbook
> >> +++ b/doc/sieveeditor/index.docbook
> >> @@ -108,7 +108,7 @@ or the configuration dialog for these tasks.
> >> 
> >>
> >>  
> >>  
> >>  
> >>  
> >> 
> >> -For detailed information about the editor please read the  >> url="help:kartpart">KatePart documentation. +For
> >> detailed information about the editor please read the  >> url="help:/katepart">KatePart documentation.
> >> 
> >>  
> 
> Ciao


-- 
Laurent Montel | laurent.mon...@kdab.com | KDE/Qt Senior Software Engineer
KDAB (France) S.A.S., a KDAB Group company
Tel. France +33 (0)4 90 84 08 53,  http://www.kdab.fr


___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] [kdepim] doc/sieveeditor: Doc: fix URL format and link to katepart documentation

2016-05-11 Thread laurent Montel
Hi,
Why we talk about katepart ?
We don't use it in sieveeditor.

Regards

Le mercredi 11 mai 2016, 22:24:39 CEST Luigi Toscano a écrit :
> Git commit e34e5ac2875cf1b038f375bdf61d74fcf175dc71 by Luigi Toscano.
> Committed on 11/05/2016 at 22:24.
> Pushed by ltoscano into branch 'master'.
> 
> Doc: fix URL format and link to katepart documentation
> 
> M  +1-1doc/sieveeditor/index.docbook
> 
> http://commits.kde.org/kdepim/e34e5ac2875cf1b038f375bdf61d74fcf175dc71
> 
> diff --git a/doc/sieveeditor/index.docbook b/doc/sieveeditor/index.docbook
> index 7218f63..2afbc27 100644
> --- a/doc/sieveeditor/index.docbook
> +++ b/doc/sieveeditor/index.docbook
> @@ -108,7 +108,7 @@ or the configuration dialog for these tasks.
>
>  
>  
> -For detailed information about the editor please read the  url="help:kartpart">KatePart documentation. +For
> detailed information about the editor please read the  url="help:/katepart">KatePart documentation.
> 
>  


-- 
Laurent Montel | laurent.mon...@kdab.com | KDE/Qt Senior Software Engineer
KDAB (France) S.A.S., a KDAB Group company
Tel. France +33 (0)4 90 84 08 53,  http://www.kdab.fr


___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 127660: Update sieveeditor docbook

2016-04-16 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/127660/#review94651
---


Ship it!




Ship It!

- Laurent Montel


On avr. 16, 2016, 3:41 après-midi, Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/127660/
> ---
> 
> (Updated avr. 16, 2016, 3:41 après-midi)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> Replace the stub in sieveeditor docbook with info + screenshots from Laurents 
> blog
> 
> @Laurent: How do I open the Help tab?
> 
> 
> Diffs
> -
> 
>   doc/sieveeditor/index.docbook 691ea9e 
> 
> Diff: https://git.reviewboard.kde.org/r/127660/diff/
> 
> 
> Testing
> ---
> 
> builds
> 
> 
> File Attachments
> 
> 
> first-start.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/7b1929d4-72f0-41ba-9e3b-5b1695132424__first-start.png
> script-edit.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/ba72c0f4-936c-46ed-b8d3-3f65bc1082e6__script-edit.png
> script-tools.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/61602c25-3298-4c3c-91ea-16f9e860f145__script-tools.png
> script-help.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/3f041390-f261-431f-a635-8457a76d3151__script-help.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 127660: Update sieveeditor docbook

2016-04-16 Thread Laurent Montel


> On avr. 16, 2016, 11:41 matin, Laurent Montel wrote:
> > You successed to open help tab no ?
> 
> Burkhard Lück wrote:
> No mail server with sieve support here, therefore do not know how to open 
> the Help page.
> I find no option in the menu
> You need to be online for Help?

Oh it's my screenshots (from my website) ok I didn't understand
So yep it's online
you need to have a sieve script and right click on keyword as "exist" here.


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/127660/#review94646
---


On avr. 16, 2016, 10:34 matin, Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/127660/
> ---
> 
> (Updated avr. 16, 2016, 10:34 matin)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> Replace the stub in sieveeditor docbook with info + screenshots from Laurents 
> blog
> 
> @Laurent: How do I open the Help tab?
> 
> 
> Diffs
> -
> 
>   doc/sieveeditor/index.docbook 691ea9e 
> 
> Diff: https://git.reviewboard.kde.org/r/127660/diff/
> 
> 
> Testing
> ---
> 
> builds
> 
> 
> File Attachments
> 
> 
> first-start.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/7b1929d4-72f0-41ba-9e3b-5b1695132424__first-start.png
> script-edit.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/ba72c0f4-936c-46ed-b8d3-3f65bc1082e6__script-edit.png
> script-tools.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/61602c25-3298-4c3c-91ea-16f9e860f145__script-tools.png
> script-help.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/3f041390-f261-431f-a635-8457a76d3151__script-help.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 127660: Update sieveeditor docbook

2016-04-16 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/127660/#review94646
---



You successed to open help tab no ?

- Laurent Montel


On avr. 16, 2016, 10:34 matin, Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/127660/
> ---
> 
> (Updated avr. 16, 2016, 10:34 matin)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> Replace the stub in sieveeditor docbook with info + screenshots from Laurents 
> blog
> 
> @Laurent: How do I open the Help tab?
> 
> 
> Diffs
> -
> 
>   doc/sieveeditor/index.docbook 691ea9e 
> 
> Diff: https://git.reviewboard.kde.org/r/127660/diff/
> 
> 
> Testing
> ---
> 
> builds
> 
> 
> File Attachments
> 
> 
> first-start.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/7b1929d4-72f0-41ba-9e3b-5b1695132424__first-start.png
> script-edit.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/ba72c0f4-936c-46ed-b8d3-3f65bc1082e6__script-edit.png
> script-tools.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/61602c25-3298-4c3c-91ea-16f9e860f145__script-tools.png
> script-help.png
>   
> https://git.reviewboard.kde.org/media/uploaded/files/2016/04/16/3f041390-f261-431f-a635-8457a76d3151__script-help.png
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 127595: Update contacthemeeditor docbook

2016-04-06 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/127595/#review94350
---


Ship it!




Ship It!

- Laurent Montel


On avr. 6, 2016, 8:59 après-midi, Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/127595/
> ---
> 
> (Updated avr. 6, 2016, 8:59 après-midi)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> book -> article
> use entities from kdoctools
> make contactthemeeditor entry translatable
> remove appendix
> 
> 
> Diffs
> -
> 
>   doc/contactthemeeditor/index.docbook 2fd822d 
> 
> Diff: https://git.reviewboard.kde.org/r/127595/diff/
> 
> 
> Testing
> ---
> 
> checked with checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


Re: [kde-doc-english] Review Request 127594: Update headerthemeeditor docbook

2016-04-06 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/127594/#review94349
---


Ship it!




Ship It!

- Laurent Montel


On avr. 6, 2016, 9:06 après-midi, Burkhard Lück wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://git.reviewboard.kde.org/r/127594/
> ---
> 
> (Updated avr. 6, 2016, 9:06 après-midi)
> 
> 
> Review request for Documentation, KDEPIM and Laurent Montel.
> 
> 
> Repository: kdepim
> 
> 
> Description
> ---
> 
> book -> article
> use entities from kdoctools
> make headerthemeeditor entry translatable
> remove appendix
> 
> 
> Diffs
> -
> 
>   doc/headerthemeeditor/index.docbook ee430bb 
> 
> Diff: https://git.reviewboard.kde.org/r/127594/diff/
> 
> 
> Testing
> ---
> 
> checked with checkXML5
> 
> 
> Thanks,
> 
> Burkhard Lück
> 
>

___
kde-doc-english mailing list
kde-doc-english@kde.org
https://mail.kde.org/mailman/listinfo/kde-doc-english


[kde-doc-english] Review Request 115305: Documentation: Improve Kmail Configure Layout

2014-01-25 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/115305/#review48256
---

Ship it!


Seems good for me.
Ship it.
Regards

- Laurent Montel


On Jan. 24, 2014, 7:55 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 https://git.reviewboard.kde.org/r/115305/
 ---
 
 (Updated Jan. 24, 2014, 7:55 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Added screenshot of default layout and added use cases for the different 
 changes a user can make.
 
 
 Diffs
 -
 
   doc/kmail/configure.docbook 9e6f6da 
 
 Diff: https://git.reviewboard.kde.org/r/115305/diff/
 
 
 Testing
 ---
 
 checkXML5, meinproc5
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20140125/866917d5/attachment.html


[kde-doc-english] Review Request 114967: Folder archive was integrated into kmail, therefore integrating the documentation.

2014-01-13 Thread Laurent Montel


 On Jan. 12, 2014, 7:30 a.m., Laurent Montel wrote:
  Seems good for me
  
  Ship it.
 
 
 Burkhard L?ck wrote:
 @Laurent:
 configure widget needs a setHelp() call to open the kmail handbook at the 
 correct page now?
 
 diff --git a/kmail/folderarchive/folderarchiveconfiguredialog.cpp 
 b/kmail/folderarchive/folderarchiveconfiguredialog.cpp
 index c174178..27ec1d1 100644
 --- a/kmail/folderarchive/folderarchiveconfiguredialog.cpp
 +++ b/kmail/folderarchive/folderarchiveconfiguredialog.cpp
 @@ -39,7 +39,7 @@ 
 FolderArchiveConfigureDialog::FolderArchiveConfigureDialog(QWidget *parent)
  setCaption( i18n(Configure) );
  setWindowIcon( KIcon( QLatin1String(kmail) ) );
  setButtons( Help|Ok|Cancel );
 -
 +setHelp(archive-folder,kmail);
  readConfig();
  
  mTabWidget = new QTabWidget;


Yes it needs it.
Could you add it please ?
Thanks


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/114967/#review47243
---


On Jan. 12, 2014, 4:23 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 https://git.reviewboard.kde.org/r/114967/
 ---
 
 (Updated Jan. 12, 2014, 4:23 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Moved the documentation from akonadi-folderarchiveagent into the kmail 
 using-kmail backups documention upon request of translators. It is no longer 
 a seperate agent. I will also be git rm the old folder.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook af5b9d8 
 
 Diff: https://git.reviewboard.kde.org/r/114967/diff/
 
 
 Testing
 ---
 
 checkXML
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20140113/6bc5503c/attachment.html


[kde-doc-english] Review Request 114967: Folder archive was integrated into kmail, therefore integrating the documentation.

2014-01-12 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
https://git.reviewboard.kde.org/r/114967/#review47243
---

Ship it!


Seems good for me

Ship it.


- Laurent Montel


On Jan. 11, 2014, 5:28 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 https://git.reviewboard.kde.org/r/114967/
 ---
 
 (Updated Jan. 11, 2014, 5:28 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Moved the documentation from akonadi-folderarchiveagent into the kmail 
 using-kmail backups documention upon request of translators. It is no longer 
 a seperate agent. I will also be git rm the old folder.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook af5b9d8 
 
 Diff: https://git.reviewboard.kde.org/r/114967/diff/
 
 
 Testing
 ---
 
 checkXML
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20140112/8781d899/attachment.html


[kde-doc-english] Review Request 114539: KMail FAQ update

2013-12-20 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114539/#review45949
---



doc/kmail/faq.docbook
http://git.reviewboard.kde.org/r/114539/#comment32790

Still correct.
We don't have method to do it.



doc/kmail/faq.docbook
http://git.reviewboard.kde.org/r/114539/#comment32791

Better to use an other akonadi resource to do it.
Not sure that link will work.



doc/kmail/faq.docbook
http://git.reviewboard.kde.org/r/114539/#comment32792

This dbus function doesn't exist now.



- Laurent Montel


On Dec. 19, 2013, 5:27 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114539/
 ---
 
 (Updated Dec. 19, 2013, 5:27 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Update and remove some apparently outdated questions/answers.
 
 Added some comments to questions wehre I am unsure if they are still correct:
 !--FIXME Is this still true in 4.12?--
 
 
 Diffs
 -
 
   doc/kmail/faq.docbook 97a693e 
 
 Diff: http://git.reviewboard.kde.org/r/114539/diff/
 
 
 Testing
 ---
 
 checkXML, ebn, checked folders + links
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131220/64a9f0e9/attachment.html


[kde-doc-english] Review Request 114383: Documentation: Convert kmailcvt to article , fix link.

2013-12-10 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114383/#review45472
---


Seems good for me.

- Laurent Montel


On Dec. 10, 2013, 3:38 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114383/
 ---
 
 (Updated Dec. 10, 2013, 3:38 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Convert kmailcvt doc to article for consistency. Fix broken link.
 
 
 Diffs
 -
 
   doc/kmailcvt/index.docbook ce7dd23 
 
 Diff: http://git.reviewboard.kde.org/r/114383/diff/
 
 
 Testing
 ---
 
 checkXML, meinproc4.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131210/797570a1/attachment.html


[kde-doc-english] Review Request 114360: kmail faq update

2013-12-09 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114360/#review45387
---


Seems good for me.

- Laurent Montel


On Dec. 9, 2013, 1:42 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114360/
 ---
 
 (Updated Dec. 9, 2013, 1:42 p.m.)
 
 
 Review request for Documentation, KDEPIM, Laurent Montel, and Scarlett Clark.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 faq fix + update to kmail2:
 * remove attachments
 * correct name of link target importing
 * translation in composer window and message preview is now builtin
 
 
 Diffs
 -
 
   doc/kmail/faq.docbook 4bcb9d8 
 
 Diff: http://git.reviewboard.kde.org/r/114360/diff/
 
 
 Testing
 ---
 
 checkXML
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131209/e660f71e/attachment.html


[kde-doc-english] Review Request 114309: Documentation: Improve Folders section in using-kmail Part 1

2013-12-05 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114309/#review45156
---


Seems good for me.
Regards

- Laurent Montel


On Dec. 5, 2013, 2:21 a.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114309/
 ---
 
 (Updated Dec. 5, 2013, 2:21 a.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Improved the Creating and Using folders section with new use cases, updated 
 menu/key options for using-kmail. EBN fixes.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook b798103 
 
 Diff: http://git.reviewboard.kde.org/r/114309/diff/
 
 
 Testing
 ---
 
 checkXML, meinproc4, EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131205/057123eb/attachment.html


[kde-doc-english] Review Request 114269: Documentation: Completed Backups section in using-kmail.

2013-12-03 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114269/#review45020
---


Seems good.


- Laurent Montel


On Dec. 3, 2013, 2:45 a.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114269/
 ---
 
 (Updated Dec. 3, 2013, 2:45 a.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Documentation: Completed Backups solutions, section in using-kmail. Moved 
 Folder Archive instructions from Menu doc to using doc, replaced with link.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook a529e83 
 
 Diff: http://git.reviewboard.kde.org/r/114269/diff/
 
 
 Testing
 ---
 
 checkXML, meinproc4, EBN
 
 
 File Attachments
 
 
 Menu Changes diff
   
 http://git.reviewboard.kde.org/media/uploaded/files/2013/12/03/c134cfc7-0a83-4867-90db-4f6b31a2f93e__menubackup.diff
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131203/f76f4aad/attachment.html


[kde-doc-english] Review Request 114231: Documentation: Removed duplicate information, replaced with link to feature documentation.

2013-12-01 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114231/#review44913
---


Seems good for me.
Regards

- Laurent Montel


On Nov. 30, 2013, 11:22 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114231/
 ---
 
 (Updated Nov. 30, 2013, 11:22 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Replaced duplicate documentation with a link to the features actual 
 documentation page.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook e59dfae 
 
 Diff: http://git.reviewboard.kde.org/r/114231/diff/
 
 
 Testing
 ---
 
 checkXML meinproc4
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131201/14135931/attachment.html


[kde-doc-english] Review Request 114001: Documentation: Updated Akonadi Folder Archive Agent documentation.

2013-11-21 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/114001/#review44142
---


Seems good for me.

- Laurent Montel


On Nov. 21, 2013, 4:04 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/114001/
 ---
 
 (Updated Nov. 21, 2013, 4:04 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Repository: kdepim
 
 
 Description
 ---
 
 Documentation: Updated Akonadi Folder Archive Agent doc to include use case 
 and clear instructions with pic.
 
 
 Diffs
 -
 
   doc/akonadi_folderarchive_agent/index.docbook 41f4ca3 
 
 Diff: http://git.reviewboard.kde.org/r/114001/diff/
 
 
 Testing
 ---
 
 checkxml and meinproc4 (viewed in khelpcenter). EBN down.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20131121/20c99390/attachment.html


[kde-doc-english] Review Request 112480: Dokumentation update for Archiv Mail Agent

2013-09-21 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/112480/#review40407
---

Ship it!


Ship It!

- Laurent Montel


On Sept. 21, 2013, 3:27 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/112480/
 ---
 
 (Updated Sept. 21, 2013, 3:27 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Update using infos from kmail docbooks added by Scarlett
 
 * Change book to article
 * Make application name translatable in docbook
 
 This docbook does not show up in KHelpcenter navigation tree, but as it can 
 not be started standalone
 that is ok from my pov.
 
 Questions + missing infos:
 
 * is the execution launched the same time as last archiving? 
   e.g first run 9 am - next runs also at 9 am?
   does launch archiving manually change this execution time?
 
 * what means Next archive in eg -7 days as in the blog screenshot with 
 background color red=enabled + blue=not enabled ?
 
 * what to do whith the infos in kmail docbooks? replace with links to this 
 docbook?
 
 
 Diffs
 -
 
   doc/akonadi_archivemail_agent/index.docbook 177d4ba 
 
 Diff: http://git.reviewboard.kde.org/r/112480/diff/
 
 
 Testing
 ---
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130921/9d3c7f2d/attachment.html


[kde-doc-english] Review Request 112480: Dokumentation update for Archiv Mail Agent

2013-09-04 Thread Laurent Montel


 On Sept. 3, 2013, 1:22 p.m., Laurent Montel wrote:
  Questions + missing infos:
  
  * is the execution launched the same time as last archiving? 
e.g first run 9 am - next runs also at 9 am?
does launch archiving manually change this execution time?
  
  no it uses just date not date and time. When you start computer if we must 
  archive it will archiving.
  
  
  
  * what means Next archive in eg -7 days as in the blog screenshot with 
  background color red=enabled + blue=not enabled ?
  
  yes -7 days it's that archiving was not done.
  
  
  * what to do whith the infos in kmail docbooks? replace with links to this 
  docbook?
  
  it will better.
 
 
 Burkhard L?ck wrote:
 Laurent Montel
 
  no it uses just date not date and time. When you start computer if we 
 must archive it will archiving.
 
 so any archive jobs for a day is executed either at midnight if in a kde 
 session or at login to a kde session whatever comes first?
 
 paraAt login to a kde; session the agent checks the archive jobs and 
 executes all 
 jobs overdue since the last logout if necessary.
 /para
 is wrong then ?
 
 How can it happen to get Next archive in entry -1 day? 
 no login to a kde session yesterday, therefor no archiving was not done?
 Are the next scheduled archive jobs executed in such a case and the Next 
 archive in entry then displays a value like tomorrow?
 Or do I have to trigger an archive job manually to get rid of this entry 
 -1 day?
 
 Thanks
 


so any archive jobs for a day is executed either at midnight if in a kde 
session or at login to a kde session whatever comes first? each +24 hours we 
reload config and look at what we must archive, we don't look at it at 
midnight, just +24h after archiving.

How can it happen to get Next archive in entry -1 day?  before to archive 
or if it's disabled.


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/112480/#review39262
---


On Sept. 3, 2013, 12:36 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/112480/
 ---
 
 (Updated Sept. 3, 2013, 12:36 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Update using infos from kmail docbooks added by Scarlett
 
 * Change book to article
 * Make application name translatable in docbook
 
 This docbook does not show up in KHelpcenter navigation tree, but as it can 
 not be started standalone
 that is ok from my pov.
 
 Questions + missing infos:
 
 * is the execution launched the same time as last archiving? 
   e.g first run 9 am - next runs also at 9 am?
   does launch archiving manually change this execution time?
 
 * what means Next archive in eg -7 days as in the blog screenshot with 
 background color red=enabled + blue=not enabled ?
 
 * what to do whith the infos in kmail docbooks? replace with links to this 
 docbook?
 
 
 Diffs
 -
 
   doc/akonadi_archivemail_agent/index.docbook 177d4ba 
 
 Diff: http://git.reviewboard.kde.org/r/112480/diff/
 
 
 Testing
 ---
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130904/44d66ceb/attachment.html


[kde-doc-english] Review Request 112480: Dokumentation update for Archiv Mail Agent

2013-09-03 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/112480/#review39262
---


Questions + missing infos:

* is the execution launched the same time as last archiving? 
  e.g first run 9 am - next runs also at 9 am?
  does launch archiving manually change this execution time?

no it uses just date not date and time. When you start computer if we must 
archive it will archiving.



* what means Next archive in eg -7 days as in the blog screenshot with 
background color red=enabled + blue=not enabled ?

yes -7 days it's that archiving was not done.


* what to do whith the infos in kmail docbooks? replace with links to this 
docbook?

it will better.


- Laurent Montel


On Sept. 3, 2013, 12:36 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/112480/
 ---
 
 (Updated Sept. 3, 2013, 12:36 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Update using infos from kmail docbooks added by Scarlett
 
 * Change book to article
 * Make application name translatable in docbook
 
 This docbook does not show up in KHelpcenter navigation tree, but as it can 
 not be started standalone
 that is ok from my pov.
 
 Questions + missing infos:
 
 * is the execution launched the same time as last archiving? 
   e.g first run 9 am - next runs also at 9 am?
   does launch archiving manually change this execution time?
 
 * what means Next archive in eg -7 days as in the blog screenshot with 
 background color red=enabled + blue=not enabled ?
 
 * what to do whith the infos in kmail docbooks? replace with links to this 
 docbook?
 
 
 Diffs
 -
 
   doc/akonadi_archivemail_agent/index.docbook 177d4ba 
 
 Diff: http://git.reviewboard.kde.org/r/112480/diff/
 
 
 Testing
 ---
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130903/ddec6f94/attachment.html


[kde-doc-english] Review Request 112426: Update Dokumentation for Send Later Agent

2013-09-01 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/112426/#review39080
---

Ship it!


* What happens if a) kmail not running

it's an agent so mail will send even if kmail is not running




 b) kmail in offline mode

same as a)

 c) no network connection

it will report an error. and will ask if you want to resend it later


 or 4) computer not running when a scheduled message should be send by the 
agent?

will wait that computer is online and will send directly if necessary



* Is it possible to edit content, sender, receiver, subject of a scheduled 
message and how?

no not possible.


* waht to to whith the infos in kmail docbooks? replace with links to this 
docbook?




- Laurent Montel


On Sept. 1, 2013, 12:11 p.m., Burkhard L?ck wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/112426/
 ---
 
 (Updated Sept. 1, 2013, 12:11 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Update using infos from kmail docbooks added by Scarlett
 
 * Change book to article
 * Make application name translatable in docbook
 
 This docbooks does not show up in KHelpcenter navigation tree, but as it 
 can't be started standalone that is ok?
 
 Questions + missing infos:
 
 * What happens if a) kmail not running b) kmail in offline mode c) no network 
 connection or 4) computer not running
 when a scheduled message should be send by the agent?
 
 * Is it possible to edit content, sender, receiver, subject of a scheduled 
 message and how?
 
 * waht to to whith the infos in kmail docbooks? replace with links to this 
 docbook?
 
 P.S.
 Similar updates should be made for akonadi_archivemail_agent + 
 akonadi_folderarchive_agents as well
 
 
 Diffs
 -
 
   doc/akonadi_sendlater_agent/index.docbook 54673cc 
 
 Diff: http://git.reviewboard.kde.org/r/112426/diff/
 
 
 Testing
 ---
 
 
 Thanks,
 
 Burkhard L?ck
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130901/d4d09c11/attachment.html


[kde-doc-english] Review Request 112030: Documentation: Added documentation for kmailcvt

2013-08-12 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/112030/#review37580
---


Seems good for me.
Thanks.

- Laurent Montel


On Aug. 12, 2013, 11:29 a.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/112030/
 ---
 
 (Updated Aug. 12, 2013, 11:29 a.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Instructions on how to use kmailcvt.
 
 
 Diffs
 -
 
   doc/kmailcvt/index.docbook 2238d05 
 
 Diff: http://git.reviewboard.kde.org/r/112030/diff/
 
 
 Testing
 ---
 
 EBN, checkXML, meinproc4, khelpcenter.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130812/a863aae3/attachment.html


[kde-doc-english] [Kde-pim] Documentation of Import + Export of Mails + PIM Data

2013-08-12 Thread laurent Montel
Le lundi 12 ao?t 2013 17:38:45 Burkhard L?ck a ?crit :
 Hi,
 
 there are a lot of different ways of import/export with KMail, KMailCVT, Pim
 Setting Exporter, Import Wizard etc.
 
 To be able to provide proper documentation for KDEPim Users this needs to be
 sorted out/clarified and explained.
 
 As first step to get there I have collected all my infos about that topic:
 
  Import + Export of Mails + PIM Data
 
 0) Export / View single mails in KMail via File-Save As / Open
 Import via kmailcvt (mbox), 


 in 4.12 via mboximporter?

Import mbox directly in kmail as kmailcvt but not necessary to select type of 
file.

 
 Use case: Transfer single mails
 
 
 1) akonadi_folderarchive_agent (needs a proper Name for GUI+Docs?)
 KMail Folder-Archive Folder or Archive Folder from a folders context menu
 Export of a mail folder and its subfolders to zip/tar/tar.bz2/tar.gz
 Import via kmailcvt (KMail Archive)

Wrong. Akonadi_folderarchive_agent it?s a new agent in 4.12 to move some mails 
in specific folder.


There is an menu ?archive folder? with converts a folder to tar.bz*

 
 Use case: transfer single KMail folders(+subfolders) from/to accounts or
 computers
 
 
 2) kmailcvt (KMailCVT)
 Standalone + in KMail via File-Import Messages
 Select any location of archive / mail folder from different apps + import
 In 4.11 the only application able to import kmail archive, mbox, plain text?

exact.

 
 Use case:
 Transfer mails from different apps from any account/computer,
 e.g copy a top mail folder of another application to a USB stick and import
 that?
 
 
 3) pimsettingsexporter (PIM Settings Exporter)
 Standalone + in KMail via Tools-Export KMail Date - Back up Data / Restore
 Data
 Import + Export of settings + data to/from zip Archiv
 Resources, Mail Transport, Config, Identity, Mails, Akonadi Database (more?)
 
 Use case: Transfer a selectable set of pim data, but only whole
 resources/transport/config/mails/akonadi data,
 no single mail folders or resources or identities or ...
 
 4) importwizard (change name in GUI to Import Wizard?)
 Standalone + in KMail via Tools-Import Wizard
 Detects mail from other mailer applications in user account automatically
 
 Use case: Import all Mails from another Mail application in the user account
 into KMail, no transfer from different account/computer

exact

 
 Please check this info, correct all errors, comment and/or confirm if right.
 
 Thanks.

-- 
Laurent Montel | laurent.montel at kdab.com | KDE/Qt Senior Software Engineer
KDAB (France) S.A.S., a KDAB Group company
Tel. France +33 (0)4 90 84 08 53, Sweden (HQ) +46-563-540090




[kde-doc-english] Review Request 111900: Documentation: Menus.docbook Composer menu Message

2013-08-06 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111900/#review37180
---

Ship it!


Ship It!

- Laurent Montel


On Aug. 5, 2013, 9:07 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111900/
 ---
 
 (Updated Aug. 5, 2013, 9:07 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Updated the Message menu in the Composer Window to reflect current build.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook 63023ae 
 
 Diff: http://git.reviewboard.kde.org/r/111900/diff/
 
 
 Testing
 ---
 
 EBN, checkXML meinproc4 khelpcenter.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130806/da6b7efd/attachment.html


[kde-doc-english] Review Request 111806: Documentation: Update and add menu item entries for send later and archive folder.

2013-07-31 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111806/#review36855
---

Ship it!


Ship It!

- Laurent Montel


On July 30, 2013, 9:19 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111806/
 ---
 
 (Updated July 30, 2013, 9:19 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Update and add send later and archive folder entries.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook 5472c28 
 
 Diff: http://git.reviewboard.kde.org/r/111806/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130731/679758b8/attachment.html


[kde-doc-english] Review Request 111817: Documentation: menus.docbook Settings menu

2013-07-31 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111817/#review36874
---

Ship it!


Ship It!

- Laurent Montel


On July 31, 2013, 3:26 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111817/
 ---
 
 (Updated July 31, 2013, 3:26 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Updated Settings menu to reflect current build.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook 21b4473 
 
 Diff: http://git.reviewboard.kde.org/r/111817/diff/
 
 
 Testing
 ---
 
 EBN, checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130731/3a40b2a9/attachment.html


[kde-doc-english] Review Request 111728: Documentation: Created a new Backup section to accommodate a new automatic archive feature.

2013-07-27 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111728/#review36579
---

Ship it!


Ship It!

- Laurent Montel


On July 26, 2013, 5:07 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111728/
 ---
 
 (Updated July 26, 2013, 5:07 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Added a new Backup section to hold various backup solution use cases. Started 
 with the new automatic archive feature.
 
 
 Diffs
 -
 
   doc/kmail/using-kmail.docbook 3b42396 
 
 Diff: http://git.reviewboard.kde.org/r/111728/diff/
 
 
 Testing
 ---
 
 EBN, checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130727/40f469d2/attachment.html


[kde-doc-english] Review Request 111668: Documentation: Account Wizard, EBN fixes getting-started.docbook

2013-07-24 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111668/#review36444
---

Ship it!


ship it

- Laurent Montel


On July 24, 2013, 12:53 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111668/
 ---
 
 (Updated July 24, 2013, 12:53 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Added missing account wizard entry and minor EBN fix.
 
 
 Diffs
 -
 
   doc/kmail/getting-started.docbook ac4b740 
 
 Diff: http://git.reviewboard.kde.org/r/111668/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130724/ce21d9b9/attachment.html


[kde-doc-english] Review Request 111546: Documentation: Menus.docbook Message section

2013-07-17 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111546/#review36081
---


for me seems good

- Laurent Montel


On July 17, 2013, 1:08 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111546/
 ---
 
 (Updated July 17, 2013, 1:08 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Updated Message toolbar to reflect current build.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook b34eed3 
 
 Diff: http://git.reviewboard.kde.org/r/111546/diff/
 
 
 Testing
 ---
 
 EBN, checkXML index.docbook, meinproc4 index.docbook konquorer index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130717/19e0f15d/attachment.html


[kde-doc-english] Review Request 111518: Documentation: Menus.docbook Folder options

2013-07-15 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111518/#review35977
---


For me seems good.
Ship it

- Laurent Montel


On July 15, 2013, 12:56 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111518/
 ---
 
 (Updated July 15, 2013, 12:56 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Updated Folder menu options to reflect current build.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook 3f8bbf1 
 
 Diff: http://git.reviewboard.kde.org/r/111518/diff/
 
 
 Testing
 ---
 
 EBN, checkXML index.docbook, konqueror index.html.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130715/f30d494b/attachment.html


[kde-doc-english] Review Request 111384: Documentation: menus.docbook Go menu

2013-07-04 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111384/#review35553
---


Seems good for me.

- Laurent Montel


On July 3, 2013, 9:01 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111384/
 ---
 
 (Updated July 3, 2013, 9:01 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 menus.docbook Go menu
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook 3a130b7 
 
 Diff: http://git.reviewboard.kde.org/r/111384/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130704/e9915e97/attachment.html


[kde-doc-english] Review Request 111344: Documentation: menus Phase 2

2013-07-01 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111344/#review35390
---


This cleanup seems good.

- Laurent Montel


On July 1, 2013, 3:02 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111344/
 ---
 
 (Updated July 1, 2013, 3:02 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Updated the file to point to fundamentals for common tasks. Updated kmail 
 specific items on the Edit menu.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook 15fed4e 
 
 Diff: http://git.reviewboard.kde.org/r/111344/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook meinproc4 index.docbook khelpcenter index.html
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130701/a05b38d3/attachment.html


[kde-doc-english] Review Request 111248: Documentation: Rework of menus.docbook Phase One. EBN Fixes.

2013-06-28 Thread Laurent Montel


 On June 26, 2013, 4:27 p.m., Burkhard L?ck wrote:
  doc/kmail/menus.docbook, lines 264-266
  http://git.reviewboard.kde.org/r/111248/diff/3/?file=165911#file165911line264
 
  Don#t have that item here
 
 Scarlett Clark wrote:
 Again, I seem to have the wrong build.
 
 Scarlett Clark wrote:
 I still need an answer here.
 
 Scarlett Clark wrote:
 Sorry to be a bother, I need to know if this exists on the master build. 
 I have it on mine.

I have it. We need to have more that 1 smtp.


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111248/#review35128
---


On June 27, 2013, 11:04 a.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111248/
 ---
 
 (Updated June 27, 2013, 11:04 a.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Reworking menus.docbook to match current menus. I am rewriting one section at 
 a time due to size of this endeavor. EBN fixes apply to entire document.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook e8298c4 
 
 Diff: http://git.reviewboard.kde.org/r/111248/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook (after every change!) meinproc4 index.docbook, 
 konqueror index.docbook. EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130628/c39f39ea/attachment.html


[kde-doc-english] Review Request 111248: Documentation: Rework of menus.docbook Phase One. EBN Fixes.

2013-06-28 Thread Laurent Montel


 On June 26, 2013, 4:27 p.m., Burkhard L?ck wrote:
  doc/kmail/menus.docbook, lines 264-266
  http://git.reviewboard.kde.org/r/111248/diff/3/?file=165911#file165911line264
 
  Don#t have that item here
 
 Scarlett Clark wrote:
 Again, I seem to have the wrong build.
 
 Scarlett Clark wrote:
 I still need an answer here.
 
 Scarlett Clark wrote:
 Sorry to be a bother, I need to know if this exists on the master build. 
 I have it on mine.
 
 Laurent Montel wrote:
 I have it. We need to have more that 1 smtp.
 
 Scarlett Clark wrote:
 more that 1 smtp I am so sorry, I am not sure that I understand.

account sender


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111248/#review35128
---


On June 27, 2013, 11:04 a.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111248/
 ---
 
 (Updated June 27, 2013, 11:04 a.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Reworking menus.docbook to match current menus. I am rewriting one section at 
 a time due to size of this endeavor. EBN fixes apply to entire document.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook e8298c4 
 
 Diff: http://git.reviewboard.kde.org/r/111248/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook (after every change!) meinproc4 index.docbook, 
 konqueror index.docbook. EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130628/9deccfc6/attachment.html


[kde-doc-english] Review Request 111248: Documentation: Rework of menus.docbook Phase One. EBN Fixes.

2013-06-27 Thread Laurent Montel


 On June 26, 2013, 4:27 p.m., Burkhard L?ck wrote:
  doc/kmail/menus.docbook, lines 165-170
  http://git.reviewboard.kde.org/r/111248/diff/3/?file=165911#file165911line165
 
  /me has this item in recent master
 
 Scarlett Clark wrote:
 Not on mine built by kdesrc-build. Clearly not working then, I have tried 
 to figure out how to properly have a dev build with no success. sigh.

There is this menu entry. But if you don't have it it's that you can create 
print preview.
There is a check if you can do it. If you don't able it will not show.
So for me you must keep it.


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111248/#review35128
---


On June 26, 2013, 6:34 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111248/
 ---
 
 (Updated June 26, 2013, 6:34 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Reworking menus.docbook to match current menus. I am rewriting one section at 
 a time due to size of this endeavor. EBN fixes apply to entire document.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook e8298c4 
 
 Diff: http://git.reviewboard.kde.org/r/111248/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook (after every change!) meinproc4 index.docbook, 
 konqueror index.docbook. EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130627/18629243/attachment.html


[kde-doc-english] Review Request 111248: Documentation: Rework of menus.docbook Phase One. EBN Fixes.

2013-06-27 Thread Laurent Montel


 On June 26, 2013, 4:27 p.m., Burkhard L?ck wrote:
  doc/kmail/menus.docbook, lines 165-170
  http://git.reviewboard.kde.org/r/111248/diff/3/?file=165911#file165911line165
 
  /me has this item in recent master
 
 Scarlett Clark wrote:
 Not on mine built by kdesrc-build. Clearly not working then, I have tried 
 to figure out how to properly have a dev build with no success. sigh.
 
 Laurent Montel wrote:
 There is this menu entry. But if you don't have it it's that you can 
 create print preview.
 There is a check if you can do it. If you don't able it will not show.
 So for me you must keep it.
 
 Scarlett Clark wrote:
 Where do I find the check to enable or disable print preview?

in messageactions.cpp:

  if(KPrintPreview::isAvailable())
mPrintPreviewAction = KStandardAction::printPreview( this, 
SLOT(slotPrintPreviewMsg()), ac );


- Laurent


---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111248/#review35128
---


On June 26, 2013, 6:34 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111248/
 ---
 
 (Updated June 26, 2013, 6:34 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Reworking menus.docbook to match current menus. I am rewriting one section at 
 a time due to size of this endeavor. EBN fixes apply to entire document.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook e8298c4 
 
 Diff: http://git.reviewboard.kde.org/r/111248/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook (after every change!) meinproc4 index.docbook, 
 konqueror index.docbook. EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130627/fa800fcd/attachment.html


[kde-doc-english] A right click menu doc placement.

2013-06-26 Thread laurent Montel
Le mercredi 26 juin 2013 06:34:26 Burkhard L?ck a ?crit :
 Am Dienstag, 25. Juni 2013, 04:28:58 schrieb Scarlett Clark:
  I am unsure where to document a right click menu eg.. The right click menu
  in Message view.
 
 using-kmail.docbook - Message preview pane ?
 
 But is it really needed to document the context menu?
 
 Usually a context menu holds actions from the menubar, so they are
 documented in that chapter already.
 
 Of course if the context menu has special action not in the menubar they
 should be documented.

It has special action not found in toolbar


-- 
Laurent Montel | laurent.montel at kdab.com | KDE/Qt Senior Software Engineer
KDAB (France) S.A.S., a KDAB Group company
Tel. France +33 (0)4 90 84 08 53, Sweden (HQ) +46-563-540090




[kde-doc-english] Review Request 111248: Documentation: Rework of menus.docbook Phase One. EBN Fixes.

2013-06-26 Thread Laurent Montel

---
This is an automatically generated e-mail. To reply, visit:
http://git.reviewboard.kde.org/r/111248/#review35096
---



doc/kmail/menus.docbook
http://git.reviewboard.kde.org/r/111248/#comment25680

just a question why you changes email.../email for David Rugge but 
didn't change for me ?
(just for curiosity :) )


- Laurent Montel


On June 25, 2013, 11:11 p.m., Scarlett Clark wrote:
 
 ---
 This is an automatically generated e-mail. To reply, visit:
 http://git.reviewboard.kde.org/r/111248/
 ---
 
 (Updated June 25, 2013, 11:11 p.m.)
 
 
 Review request for Documentation, KDEPIM and Laurent Montel.
 
 
 Description
 ---
 
 Reworking menus.docbook to match current menus. I am rewriting one section at 
 a time due to size of this endeavor. EBN fixes apply to entire document.
 
 
 Diffs
 -
 
   doc/kmail/menus.docbook e8298c4 
 
 Diff: http://git.reviewboard.kde.org/r/111248/diff/
 
 
 Testing
 ---
 
 checkXML index.docbook (after every change!) meinproc4 index.docbook, 
 konqueror index.docbook. EBN.
 
 
 Thanks,
 
 Scarlett Clark
 


-- next part --
An HTML attachment was scrubbed...
URL: 
http://mail.kde.org/pipermail/kde-doc-english/attachments/20130626/a756572d/attachment.html


  1   2   >