[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2021-02-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Heiko Tietze  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||0107

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-10-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||103266


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103266
[Bug 103266] [META] Command line bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-03-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #8 from Yousuf (Jay) Philips  ---
I tested it and got the usage stats crash, so it must be functioning.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-03-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

--- Comment #7 from Timur  ---
Is this fixed then?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-02-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

jan iversen  changed:

   What|Removed |Added

 Whiteboard| target:5.2.0   |ToBeReviewed

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-02-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

jan iversen  changed:

   What|Removed |Added

   Keywords|difficultyEasy  |difficultyBeginner

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

--- Comment #5 from Commit Notification 
 ---
aybuke committed a patch related to this issue.
It has been pushed to "master":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=beea0484de87709da0814b4acd19527c8824f9b3

tdf#96434 Activate usage data collection from commandline.

It will be available in 5.2.0.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|| target:5.2.0

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

--- Comment #4 from Jan Holesovsky  ---
aybuke: Thank you for working on this!

Please use an environment variable (using getenv()), a command line parameter
is an overkill here.

Ie. a code like

static bool bCollecting = getenv("LO_COLLECT_USAGE") != nullptr;

and then initiate the functionality based on that.

Thank you! - glad you are working on this :-)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2016-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

--- Comment #3 from aybuke  ---
Hi everyone,

I added "--usage-dump" in aCmdLineHelp_left array.
http://opengrok.libreoffice.org/xref/core/desktop/source/app/cmdlinehelp.cxx#53

When run with this parameter LO, bCollecting must be true, as I understand it.
http://opengrok.libreoffice.org/xref/core/sfx2/source/control/unoctitm.cxx#672

I have to do this, I think:

if (!bCollecting)
if(use --usage-dump) // Can you give an example of this control?
  bCollecting = true
else
  return

Am I trying to do the right function?

Thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2015-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

--- Comment #2 from Dave Richards  ---
Sounds great to me, just as easy for me to set.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2015-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Jan Holesovsky  changed:

   What|Removed |Added

   Keywords||difficultyEasy, easyHack,
   ||skillCpp, topicUI

--- Comment #1 from Jan Holesovsky  ---
Env. variable would be preferred.  The code where to add it is here:

sfx2/source/control/unoctitm.cxx

and add the getenv checking at the beginning of collectUsageInformation()
function.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2015-12-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 96434] Activate usage data collection from commandline

2015-12-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96434

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=95
   ||505

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs