[PATCH v1 08/20] node_device_udev: Take lock if `driver->privateData` is modified

2024-04-19 Thread Marc Hartmayer
Since @driver->privateData is modified take the lock. Reviewed-by: Boris Fiuczynski Reviewed-by: Jonathon Jongsma Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 15 +++ 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/node_dev

[PATCH v1 10/20] node_device_udev: Inline `udevRemoveOneDevice`

2024-04-19 Thread Marc Hartmayer
Inline `udevRemoveOneDevice` as it's used only once. Reviewed-by: Boris Fiuczynski Reviewed-by: Jonathon Jongsma Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 17 + 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/node_device

[PATCH v1 05/20] node_device_udev: Remove the timeout if the data is disposed

2024-04-19 Thread Marc Hartmayer
Remove the timeout when the udevEventData is disposed, analogous to priv->watch. Reviewed-by: Boris Fiuczynski Reviewed-by: Jonathon Jongsma Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/node_dev

[PATCH v1 04/20] nodedev: reset active config data on udev remove event

2024-04-19 Thread Marc Hartmayer
From: Boris Fiuczynski When a mdev device is destroyed or stopped the udev remove event handling needs to reset the active config data of the node object representing a persisted mdev. Reviewed-by: Marc Hartmayer Reviewed-by: Jonathon Jongsma Signed-off-by: Boris Fiuczynski --- src

[PATCH v1 06/20] node_device_udev: Test for mdevctlTimeout != -1

2024-04-19 Thread Marc Hartmayer
It is done a little differently everywhere in libvirt, but most common is to test for != -1. Reviewed-by: Boris Fiuczynski Reviewed-by: Jonathon Jongsma Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff

[PATCH v1 03/20] nodedev: immediate update of active config on udev add

2024-04-19 Thread Marc Hartmayer
this change, scheduleMdevctlUpdate call is already called in `udevAddOneDevice` and can therefore be removed in `udevHandleOneDevice`. Reviewed-by: Jonathon Jongsma Signed-off-by: Boris Fiuczynski Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 23

[PATCH v1 02/20] node_device_udev: Set @def to NULL

2024-04-19 Thread Marc Hartmayer
@def to NULL after the ownership has moved. While at it, add comments to other code places why @def is set to NULL. Reviewed-by: Boris Fiuczynski Signed-off-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 4 src/test/test_driver.c | 3 ++- 2 files changed, 6

[PATCH v1 00/20] node_dev_udev: use workerpool and improve nodedev events

2024-04-19 Thread Marc Hartmayer
nfig on udev add nodedev: reset active config data on udev remove event Marc Hartmayer (17): node_device_udev: Set @def to NULL node_device_udev: Remove the timeout if the data is disposed node_device_udev: Test for mdevctlTimeout != -1 node_device_udev: Don't take `mdevctlLock` for `mdevctl

[PATCH v1 01/20] nodedev: fix mdev add udev event data handling

2024-04-19 Thread Marc Hartmayer
object will only copy invalid data. Instead copying the defined config data will store valid data into the newly added node object. Signed-off-by: Boris Fiuczynski Reviewed-by: Jonathon Jongsma Reviewed-by: Marc Hartmayer --- src/node_device/node_device_udev.c | 2 +- 1 file changed, 1

[Bug 2060880] Re: squid crashes after update to 4.10-1ubuntu1.10

2024-04-19 Thread Marc Deslauriers
I have located the issue and have prepared an updated package that will reintroduce the fixes for CVE-2023-5824. I have uploaded the updated package to the security team PPA here: https://launchpad.net/~ubuntu-security- proposed/+archive/ubuntu/ppa/+packages Once it has finished building, could

Re: [Zotonic-Dev] mod_payment(_stripe)

2024-04-19 Thread 'Marc Worrell' via Zotonic developers
to the 1.x they will definitely start using the new versions soon (if they don’t already). Cheers, Marc > On 19 Apr 2024, at 06:17, 'Seann Aswell' via Zotonic developers > wrote: > > Curious, is anyone using mod_payment with the 1.0-master branch? > > Needing to imple

Re: [Ubuntu-bugcontrol] [Merge] ~jslarraz/ubuntu-qa-tools:uvt-snap into ubuntu-qa-tools:master

2024-04-19 Thread Marc Deslauriers
Review: Approve ACK, LGTM, thanks! -- https://code.launchpad.net/~jslarraz/ubuntu-qa-tools/+git/ubuntu-qa-tools/+merge/462951 Your team Ubuntu Bug Control is subscribed to branch ubuntu-qa-tools:master. ___ Mailing list:

Re: 2.3.x does not compile on Windows

2024-04-19 Thread Jean-Marc Lasgouttes
Le 19/04/2024 à 11:12, Pavel Sanda a écrit : On Fri, Apr 19, 2024 at 11:03:55AM +0200, Kornel Benko wrote: Looks like not so easy. The changes in are development/cmake/modules/LyXMacros.cmake: easy managable development/cmake/modules/FindCXX11Compiler.cmake: looks not difficult

Re: [RFC PATCH v1 12/15] node_device_udev: Use a worker pool for processing the udev events

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 05:19 PM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> Use a worker pool for processing the udev events and the initialization >> instead >> of a separate initThread and a mdevctl-thread. This has the large advanta

Re: [RFC PATCH v1 11/15] node_device_udev: Use `stateShutdownPrepare` and `stateShutdownWait`

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 05:01 PM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> Use the proper driver functions for the node state shutdown preparation and >> wait. In the next patch, these functions will be extended. >> >> Si

Re: [RFC PATCH v1 08/15] node_device_udev: Take lock if `driver->privateData` is modified

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 01:48 PM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> Since @driver->privateData is modified take the lock. >> […snip…] >>* signal if that event never comes */ >> -scheduleM

Re: [RFC PATCH v1 07/15] node_device_udev: Add comments about locking

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 11:18 AM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> Commit a99d876a0f58 ("node_device: Use automatic mutex management") replaced >> the >> locking mechanism and accidentally removed the comment with

Re: [RFC PATCH v1 04/15] nodedev: reset active config data on udev remove event

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 10:03 AM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> From: Boris Fiuczynski >> >> When a mdev device is destroyed or stopped the udev remove event >> handling needs to reset the active config data of the

Re: [RFC PATCH v1 03/15] nodedev: immediate update of active config on udev add

2024-04-19 Thread Marc Hartmayer
On Thu, Apr 18, 2024 at 09:47 AM -0500, Jonathon Jongsma wrote: > On 4/12/24 8:36 AM, Marc Hartmayer wrote: >> From: Boris Fiuczynski >> >> When an udev add event occurs the mdev active config data requires an >> update via mdevctl as the udev does not contain all

Re: Indexing time increase moving from Lucene 8 to 9

2024-04-18 Thread Marc Davenport
rigorous yet. I'm doing this investigation in parallel with some other things. But any insight or suggestions on areas to look would be appreciated. Thank you, Marc On Wed, Apr 17, 2024 at 4:18 PM Adrien Grand wrote: > Hi Marc, > > Nothing jumps to mind as a potential cause for this 2x r

Re: [sage-devel] Re: VOTE: Revert merged PR with unreviewed dependencies

2024-04-18 Thread Marc Culler
was reviewed. And that is why I vote -1 on reverting the merge. - Marc -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.co

[389-users] Re: One way supplier replication is failing on newly installed instance

2024-04-18 Thread Marc Sauton
try to review the access log for connection events related to those from the errors log file mentioned earlier, and also verify on the remote replica, the errors and access log events corresponding to this connection, as well as file descriptors and LDAP thread use, run some netstat and dsconf

[LyX/2.4.1-devel] Always repaint the gray area below main inset

2024-04-18 Thread Jean-Marc Lasgouttes
commit c9f5f34fd703117981cc198ba910328b93e43e99 Author: Jean-Marc Lasgouttes Date: Tue Apr 16 23:55:24 2024 +0200 Always repaint the gray area below main inset Now that SingleParUpdate does not always lead to a full screen update when the height of the paragraph changes (see

[LyX/2.4.1-devel] Do not compute metrics at each preview when loading file

2024-04-18 Thread Jean-Marc Lasgouttes
commit 15eef6a2c7cdca128a3476f2109371f35b372eba Author: Jean-Marc Lasgouttes Date: Thu Dec 21 16:33:06 2023 +0100 Do not compute metrics at each preview when loading file With the branch-test.lyx file from #12297, loading takes forever when previews are activated

[LyX/2.4.1-devel] Improve the code that limits scrolling at top/bottom

2024-04-18 Thread Jean-Marc Lasgouttes
commit e5aaa64b63ab0a0090df90b034925decd1c84061 Author: Jean-Marc Lasgouttes Date: Fri Nov 17 18:30:37 2023 +0100 Improve the code that limits scrolling at top/bottom The most visible part of this commit is the move of part of BufferView::updateMetrics to a new TextMetrics

[LyX/2.4.1-devel] Introduce new helpers ParagraphMetrics::top/bottom

2024-04-18 Thread Jean-Marc Lasgouttes
commit b1a0983570b01348685fbcb3070fc071f1b40c15 Author: Jean-Marc Lasgouttes Date: Tue Jul 25 16:31:13 2023 +0200 Introduce new helpers ParagraphMetrics::top/bottom This avoids code with position/ascent/descent that is difficult to follow. No change in function intended

[LyX/2.4.1-devel] Implement quick scroll

2024-04-18 Thread Jean-Marc Lasgouttes
commit 2434a3a28848669f7d8463bef70c668e0d6e615a Author: Jean-Marc Lasgouttes Date: Mon Jul 24 23:23:40 2023 +0200 Implement quick scroll Replace flag parameter for updateMetrics() by a `force' boolean. When it is false, the method keeps the metrics of paragraphs that are still

[LyX/2.4.1-devel] Remove some redundant calls to updatePosCache

2024-04-18 Thread Jean-Marc Lasgouttes
commit e51f9d9f885bdf76ba6a20671d0f730d6be87483 Author: Jean-Marc Lasgouttes Date: Mon Jul 24 15:35:16 2023 +0200 Remove some redundant calls to updatePosCache The setting of insets positions was done twice in updateMetrics. When one of the paragraph is a huge branch, this can

[LyX/2.4.1-devel] In the no-draw phase, do not cache the positions of not visible insets

2024-04-18 Thread Jean-Marc Lasgouttes
commit 5e1c414a21cd5d3345e7d3ff9181d7fa08c86830 Author: Jean-Marc Lasgouttes Date: Mon Jul 24 17:53:16 2023 +0200 In the no-draw phase, do not cache the positions of not visible insets This can make a big difference for a very large branch that contains lots of equations

[LyX/2.4.1-devel] Enable Update::SinglePar in nested insets too

2024-04-18 Thread Jean-Marc Lasgouttes
commit 13c7fd78c6c4876330598e89146ef4c7e44998bd Author: Jean-Marc Lasgouttes Date: Mon Jul 17 14:43:29 2023 +0200 Enable Update::SinglePar in nested insets too The idea of single par update is to try to re-break only the paragraph containing the cursor (if this paragraph

Re: Not able to spellcheck in RC4 under Linux

2024-04-18 Thread Jean-Marc Lasgouttes
Le 18/04/2024 à 16:59, Christopher Menzel a écrit : Maybe you need enchant (default on debian), it uses different spell checkers. Thank you for the suggestion. I finally got the bright idea of looking through the configure script for relevant flags and found “--with-included-hunspell”.

Re: Convert Mac Word and Thesis to LyX

2024-04-18 Thread Jean-Marc Lasgouttes
Le 18/04/2024 à 16:59, Richard Kimberly Heck a écrit : On 4/17/24 16:57, Brian Kneller via lyx-users wrote: Hi, I hope I am in the correct space. — I have prepared a thesis for a PhD  (75K words)and approx 80 figures, the text in Mac-word and the figures are in Adobe Illustrator so I have

RE: ldclt ldap performance testing

2024-04-18 Thread Marc
> I am doing some basic testing with ldap with this command. > > ldclt \ > -a 400 \ > -H ldap://x.x.x.x: \ > -e bindeach,bindonly,close \ > -D "uid=test,dc=me,dc=local" \ > -w yy \ > -n 1 > > I was testing this on two container test environments. Both are running

[PATCH v2] gcc-14: Add Ada changes

2024-04-18 Thread Marc Poulhiès
prefer. Marc htdocs/gcc-14/changes.html | 69 +- 1 file changed, 68 insertions(+), 1 deletion(-) diff --git a/htdocs/gcc-14/changes.html b/htdocs/gcc-14/changes.html index b4c602a5..ca2ee1eb 100644 --- a/htdocs/gcc-14/changes.html +++ b/htdocs/gcc-14

[USN-6737-1] GNU C Library vulnerability

2024-04-18 Thread Marc Deslauriers
== Ubuntu Security Notice USN-6737-1 April 18, 2024 glibc vulnerability == A security issue affects these releases of Ubuntu and its derivatives: -

Re: Cursor painting gets stuck if space before end of inset

2024-04-18 Thread Jean-Marc Lasgouttes
Le 12/04/2024 à 06:07, Scott Kostyshak a écrit : To reproduce: 1. Open the attached file. 2. Put the cursor just after "testing" and before the space. 3. Press . Result: it looks like the cursor is frozen for a second. Similarly, if after (3) you do another quick you can see two cursors

Re: Workarea not updated after deleting figure inset, on current master

2024-04-18 Thread Jean-Marc Lasgouttes
Le 18/04/2024 à 00:31, José Matos a écrit : On Wed, 2024-04-17 at 23:29 +0200, Jean-Marc Lasgouttes wrote: Is it still here with latest master? If it is, could you give a better recipe? I cannot reproduce. JMarc With your last change this issue was fixed: Very good, thanks for testing

Re: [gull] exfat - inconsistence du catalogue sous Linux et macOS

2024-04-18 Thread Marc SCHAEFER via gull
Salut, On Thu, Apr 18, 2024 at 07:55:41AM +0200, felix via gull wrote: > Attention! L'UTF8 de Apple n'est pas forcement le même que celui de Linux... > > voire: > General Batiment > Gnral Btiment C'est juste. En fait, il s'agit ici de la normalisation Unicode: >

Re: Screwed display for table (all lyx versions)

2024-04-18 Thread Jean-Marc Lasgouttes
Thanks ! JMarc Le 18 avril 2024 10:01:55 GMT+02:00, Kornel Benko a écrit : >> I think this deserves a ticket. I can reproduce, and have no idea how >> this thing works. > >Done #13060 > > Kornel -- lyx-devel mailing list lyx-devel@lists.lyx.org

Re: Screwed display for table (all lyx versions)

2024-04-17 Thread Jean-Marc Lasgouttes
Le 06/04/2024 à 15:30, Scott Kostyshak a écrit : On Sat, Apr 06, 2024 at 11:14:45AM GMT, Kornel Benko wrote: The created pdf looks like I wanted. I can reproduce (the weird LyX display) on current master and on 2.3.x. I think this deserves a ticket. I can reproduce, and have no idea how

Re: Cursor painting gets stuck if space before end of inset

2024-04-17 Thread Jean-Marc Lasgouttes
Le 12/04/2024 à 06:07, Scott Kostyshak a écrit : To reproduce: 1. Open the attached file. 2. Put the cursor just after "testing" and before the space. 3. Press . Result: it looks like the cursor is frozen for a second. Similarly, if after (3) you do another quick you can see two cursors

Re: Bug in language conversion ?

2024-04-17 Thread Jean-Marc Lasgouttes
Le 12/04/2024 à 13:57, Jürgen Spitzmüller a écrit : This happens also at other places, where optional arguments are not translated. I can provide a more complete record about Additional. I wouldn't rate it a bug, but I also would prefer if insets (generally, not only in the case here) would

Re: Workarea not updated after deleting figure inset, on current master

2024-04-17 Thread Jean-Marc Lasgouttes
Le 17/04/2024 à 08:49, José Matos a écrit : [So let us see if I can taunt Jean-Marc as well as Scott does :-D ] Insert a figure inset as the single element of a paragraph. Load a figure, even if there is an error converting it, delete the figure. The bottom part of the inset figure will stay

Re: Dictionaries in Win installer

2024-04-17 Thread Jean-Marc Lasgouttes
Le 11/04/2024 à 06:55, Yu Jin a écrit : Am Mi., 10. Apr. 2024 um 23:38 Uhr schrieb Pavel Sanda: On Wed, Apr 10, 2024 at 09:38:04PM +0200, Pavel Sanda wrote: > It was under svn, not git until few weeks back when we update our infra. > Now both git or trac can be used (I used

Re: LyX 2.4.0 RC4 - bug? Abstract headline is missing

2024-04-17 Thread Jean-Marc Lasgouttes
Le 12/04/2024 à 11:55, José Matos a écrit : On Fri, 2024-04-12 at 09:41 +, Bernt Lie via lyx-users wrote: When I use KOMA script and Article style, and insert an Abstract, the headline "Abstract" is not inserted. This is different from previous versions, I think?? Is this a bug? I tested

Re: Workarea not updated after deleting display math, on current master

2024-04-17 Thread Jean-Marc Lasgouttes
Le 17/04/2024 à 04:19, Scott Kostyshak a écrit : Does this work? Yes, works well here! Thanks. Thanks for testing, it is in :) JMarc -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel

[LyX features/biginset] Always repaint the gray area below main inset

2024-04-17 Thread Jean-Marc Lasgouttes
commit 3953698d9af73e647280308a75b7716d7054955c Author: Jean-Marc Lasgouttes Date: Tue Apr 16 23:55:24 2024 +0200 Always repaint the gray area below main inset Now that SingleParUpdate does not always lead to a full screen update when the height of the paragraph changes (see

[LyX/master] Always repaint the gray area below main inset

2024-04-17 Thread Jean-Marc Lasgouttes
commit 1a11abe4394272f521cd63993e426c136e0e9b6c Author: Jean-Marc Lasgouttes Date: Tue Apr 16 23:55:24 2024 +0200 Always repaint the gray area below main inset Now that SingleParUpdate does not always lead to a full screen update when the height of the paragraph changes (see

Indexing time increase moving from Lucene 8 to 9

2024-04-17 Thread Marc Davenport
are indexing the documents we commit every 10 minutes. Thank you, Marc

Re: [PATCH v6 1/3] ui/console: Introduce dpy_gl_qemu_dmabuf_get_..() helpers

2024-04-17 Thread Marc-André Lureau
mabuf_get_... helpers to extract > > > specific fields from the QemuDmaBuf struct. It also updates all > > > instances where fields within the QemuDmaBuf struct are directly > > > accessed, replacing them with calls to these new helper functions. > > > > >

ldclt ldap performance testing

2024-04-17 Thread Marc
I am doing some basic testing with ldap with this command. ldclt \ -a 400 \ -H ldap://x.x.x.x: \ -e bindeach,bindonly,close \ -D "uid=test,dc=me,dc=local" \ -w yy \ -n 1 I was testing this on two container test environments. Both are running with ~500MB, 1 core.

RE: [users@httpd] better configtest

2024-04-17 Thread Marc
> > > > 1. > > what is the point of having a apachectl configtest, when a restart can > still fail? It can't be to difficult to include cert checks here, can it? > This is now becoming a significant part. > > The bar is useful, not perfect. configtest checks for _syntax_ validity. > > > 2. > >

Re: [PATCH v6 3/3] ui/console: Introduce dpy_gl_qemu_dmabuf_new() and free() helpers

2024-04-17 Thread Marc-André Lureau
On Wed, Apr 17, 2024 at 8:14 AM wrote: > > From: Dongwon Kim > > This commit introduces utility functions for the creation and deallocation > of QemuDmaBuf instances. Additionally, it updates all relevant sections > of the codebase to utilize these new utility functions. >

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-17 Thread Marc
> > So, is this wrong forum for asking about openssl commands required > for generating certificates for enabling https on apache? > Mostly you will be notified. The only thing you need to add to your virtual host for https is this: SSLEngine on SSLCertificateFile

Re: [PATCH v6 1/3] ui/console: Introduce dpy_gl_qemu_dmabuf_get_..() helpers

2024-04-17 Thread Marc-André Lureau
ccessed, replacing > them with calls to these new helper functions. > > v6: fix typos in helper names in ui/spice-display.c > > Suggested-by: Marc-André Lureau > Cc: Philippe Mathieu-Daudé > Cc: Vivek Kasireddy > Signed-off-by: Dongwon Kim > --- > include/ui/console.h

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-17 Thread Marc
> I don't know what you are trying to prove by your points + you are > insulting people for no reason. I am insulting no one, mostly stating what is common. > If you insult people, they may insult you back. > > Russia attacked Ukraine and Ukraine/NATO hit Russia back. I think you are the only

RE: Uppercase username emails are rejected

2024-04-17 Thread Marc via dovecot
> > No they aren't. The *host part* is case insensitive because the DNS is, Indeed. Letsencrypt is utilizing this characteristic, they query the same hostname every time with different randomized(?) capitalizations. I have no idea what the logics behind this is. Preventing this from showing in

Re: [pydotorg-www] About being an Editor to Create Personal Page + InHousePythonUserGroup

2024-04-17 Thread Marc-Andre Lemburg
On 17.04.2024 11:12, Abdullah Burkan Bereketoğlu wrote: Hi Marc-Andre, It is BurkanBereketoglu. Thanks. I have added you to the editors group, so you should be able to make those edits now. Kind Regards, Burkan Bereketoglu On Wednesday, April 17, 2024 11:07 +03, Marc-Andre Lemburg wrote

Re: [pydotorg-www] About being an Editor to Create Personal Page + InHousePythonUserGroup

2024-04-17 Thread Marc-Andre Lemburg
-- Marc-Andre Lemburg eGenix.com Professional Python Services directly from the Experts (#1, Apr 17 2024) Python Projects, Coaching and Support ...https://www.egenix.com/ Python Product Development ...https://consulting.egenix.com

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-17 Thread Marc
> > http is an insecure protocol. I don't want my website to run on > http. So, I am hardcoding https in links in my website that refer to > pages in my website. > > > Now, I know that you will write why not redirect http to https by > default. No because that is not relevant to me

[Bug 2061964] [NEW] Installation of ubuntu 24.04 raid array not detected

2024-04-17 Thread Marc Debruyne
Public bug reported: 1. Ubuntu 24.04 Numbat (development) installation medium. 2. no specific package. 3. Installation of ubuntu should be possible on a partition of a raid array. 4. when doing the installation and selecting other (manual selection) where to install ubuntu; the raid array

[Bug 2061959] [NEW] Install 24.04 oh no something has gone wrong

2024-04-17 Thread Marc Debruyne
Public bug reported: 1. Ubuntu 24.04 Numbat (development) iso. 2. No specific package: Booted from installation iso usb. 3. Desktop should be displayed. 4. white screen; in the middle "oh no something has gone wrong" after some time the welcome sound; and a small window appears in the upper left

Re: Workarea not updated after deleting display math, on current master

2024-04-16 Thread Jean-Marc Lasgouttes
05e5be4926ecd79f8263beae895e79b2f57bb61c Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 16 Apr 2024 23:55:24 +0200 Subject: [PATCH] Always repaint the gray area below main inset Now that SingleParUpdate does not always lead to a full screen update when the height of the paragraph changes (see

Re: SIGSEGV on current master when saving with cursor in subscript

2024-04-16 Thread Jean-Marc Lasgouttes
Le 16/04/2024 à 18:44, Jürgen Spitzmüller a écrit : Am Dienstag, dem 16.04.2024 um 12:08 +0200 schrieb Jean-Marc Lasgouttes: I propose the following patch. Can you check that it works? Works for me with both testcases. Thanks for testing, it is now in master. Riki, I think it is worth

[LyX/master] Sanitize cursors after a buffer has been reloaded

2024-04-16 Thread Jean-Marc Lasgouttes
commit c1fd622c51752d790576600f5911813ff8dac3fa Author: Jean-Marc Lasgouttes Date: Tue Apr 16 11:45:09 2024 +0200 Sanitize cursors after a buffer has been reloaded When a buffer is reloaded, its content may remain the same, but the memory allocation is new, so that the inset

Re: [LyX/master] Defer construction of temporary cursor.

2024-04-16 Thread Jean-Marc Lasgouttes
Le 16/04/2024 à 22:27, Scott Kostyshak a écrit : On Tue, Apr 16, 2024 at 04:18:33PM GMT, Richard Kimberly Heck wrote: commit 4e8aa89eb96cd73e6630deea6fd6b9d3039aab6c Author: Richard Kimberly Heck Date: Tue Apr 16 12:15:50 2024 -0400 Defer construction of temporary cursor. We

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
> > On Tuesday 16 April 2024 at 18:42:09, Marc wrote: > > > This is more about the ability to host an application regardless if it > is > > on http or https. How https is enforced/applied is up to the manager of > > the server, why would you even care as a devel

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
eople incorrectly to upgrade eg while distributions are > backporting security stuff. A developer should just do developing. A > dentist is also not telling an ophthalmologist what to do. Why do you > care if you are using http or https? Unless you are developing something > specific to the h

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
> > Pardon me- have 443 redirect to 80 of the environment variable is true. > Alternatively, have a completely different 443 vhost declared for > development purposes > > On Tue, Apr 16, 2024 at 11:30 AM Will Fatherley > wrote: > > > > But should

[sage-devel] Re: Proposal (redo): Make python_build (and its dependency pyproject_hooks) a standard package

2024-04-16 Thread Marc Culler
+1 on making python_build a standard package. - Marc On Tuesday, April 9, 2024 at 10:44:36 PM UTC-5 Matthias Koeppe wrote: > We added python_build as an optional "pip" package (see > https://deploy-livedoc--sagemath.netlify.app/html/en/developer/packagi

Re: [regext] Re-chartering REGEXT?

2024-04-16 Thread Marc Blanchet
transport or not, to the wg mailing list, meetings, and documents. Regards, Marc. > Le 16 avr. 2024 à 11:02, Hollenbeck, Scott > a écrit : > > I think there's a basic question to be answered first: what's the goal? > > If the answer is "a RESTful API for EPP"

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
> > > But should your development be not protocol independent? If your > code works on http it should also work on https. I am getting sick of > these wordpress idiots where they still have hardcoded links everywhere > and I can't even convert a website from http to https. > > > > Are

[Enterprise-support] [Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
That's good to see! Since this is a deliberate side-effect of the security change, I am marking this bug as "invalid". Thanks ** Changed in: apache2 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Server/Client Support Team, which

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
That's good to see! Since this is a deliberate side-effect of the security change, I am marking this bug as "invalid". Thanks ** Changed in: apache2 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

RE: Uppercase username emails are rejected

2024-04-16 Thread Marc via dovecot
> > > Linux user names are case sensitive. I tend not to argue with basis > > unix/linux implementations, those are mostly well thought through by > > experts. This is from before the time that 'idiot' companies started > > using email addresses for logins, so it is easier (to track users > >

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
> > Windows is my development environment. Later the website will be hosted > on linux and the linux hosting provider will provide SSL certificate. > But should your development be not protocol independent? If your code works on http it should also work on https. I am getting sick of these

RE: Uppercase username emails are rejected

2024-04-16 Thread Marc via dovecot
> > John Stoffel via dovecot skrev den 2024-04-16 14:51: > > > In general, usernames should NOT be case sensitive, that way leads > > madness. > Linux user names are case sensitive. I tend not to argue with basis unix/linux implementations, those are mostly well thought through by experts.

RE: [users@httpd] openssl comand(s) for https mode on apache 2.4 on windows.

2024-04-16 Thread Marc
> > I was looking for openssl command(s) to generate server side certificate > and key so that https start working on my apache 2.4 web server on > windows. > > I looked on Internet but found few commands but they all used different > arguments to openssl. > > Can someone please give me exact

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
I think this is actually the correct new behaviour for the security update...could you please try using ap_trust_cgilike_cl as instructed here: https://bz.apache.org/bugzilla/show_bug.cgi?id=68872 ** Bug watch added: bz.apache.org/bugzilla/ #68872

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
Thanks for testing, I'll keep digging... -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2061816 Title: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired To

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
I have uploaded a package with a possible fix to the security team PPA here: https://launchpad.net/~ubuntu-security- proposed/+archive/ubuntu/ppa/+packages Once it's finished building, could you please give it a try and see if it solves the issue for you? If so, I will publish it as a security

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
I believe I've spotted the regression and will have a package to test soon. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2061816 Title: apache2 2.4.41-4ubuntu3.17 defaults to

Re: [PATCH v5 1/3] ui/console: Introduce dpy_gl_qemu_dmabuf_get_..() helpers

2024-04-16 Thread Marc-André Lureau
ccessed, replacing > them with calls to these new helper functions. > > Suggested-by: Marc-André Lureau > Cc: Philippe Mathieu-Daudé > Cc: Vivek Kasireddy > Signed-off-by: Dongwon Kim > --- > include/ui/console.h| 17 + > hw/display/vhost-user-gpu.c

[Bug 2061816] Re: apache2 2.4.41-4ubuntu3.17 defaults to transfer-encoding=chunked where this is undesired

2024-04-16 Thread Marc Deslauriers
Thanks for filing this bug, I'll investigate the changes and will report back. Have you seen this behaviour on anything other than focal? ** Changed in: apache2 (Ubuntu) Assignee: (unassigned) => Marc Deslauriers (mdeslaur) ** Information type changed from Public to Public Secur

Re: SIGSEGV on current master when saving with cursor in subscript

2024-04-16 Thread Jean-Marc Lasgouttes
xes the cursors). Now, we have to fix it at the right place. I propose the following patch. Can you check that it works? JMarc From 3b51ab67228f1014432b99ac2037871bc45e1feb Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 16 Apr 2024 11:45:09 +0200 Subject: [PATCH] Sanitize cursors af

Re: [PATCH] chardev/char-win-stdio: Fix keyboard input after exit Qemu on

2024-04-16 Thread Marc-André Lureau
Hi Irina On Mon, Mar 25, 2024 at 10:44 AM Marc-André Lureau wrote: > > Hi > > On Sun, Mar 24, 2024 at 7:23 PM Irina Ryapolova > wrote: > > > > After exit Qemu need to return the terminal to the default state. > > > > Signed-off-by: Irina Ryapolova &g

Re: [PATCH] vhost-user-gpu: fix import of DMABUF

2024-04-16 Thread Marc-André Lureau
Hi On Tue, Apr 16, 2024 at 1:00 AM Kim, Dongwon wrote: > > Hi Marc-André, > > > -Original Message- > > From: marcandre.lur...@redhat.com > > Sent: Monday, April 15, 2024 4:16 AM > > To: qemu-devel@nongnu.org > > Cc: Kim, Dongwon ; dbas...@redhat.

[users@httpd] better configtest

2024-04-16 Thread Marc
With the forced upon us 90 day certificate renewal crap, my httpd was down today although I have a 'restart procedure' that verifies a bit for errors with apachectl configtest. 1. what is the point of having a apachectl configtest, when a restart can still fail? It can't be to difficult to

RE: Re[2]: spamassassin with gmail

2024-04-15 Thread Marc
> >Why not just forward messages? Register a domain put some mx servers in > front of gmails mx. I recently was testing with such relay/forward, works > perfectly, I am only changing the envelope nothing else. DKIM, spf > everyting perfectly working. > > > I'd be interested to know if anyone runs

[USN-6733-1] GnuTLS vulnerabilities

2024-04-15 Thread Marc Deslauriers
== Ubuntu Security Notice USN-6733-1 April 15, 2024 gnutls28 vulnerabilities == A security issue affects these releases of Ubuntu and its derivatives:

[USN-6732-1] WebKitGTK vulnerabilities

2024-04-15 Thread Marc Deslauriers
== Ubuntu Security Notice USN-6732-1 April 15, 2024 webkit2gtk vulnerabilities == A security issue affects these releases of Ubuntu and its

[USN-6734-1] libvirt vulnerabilities

2024-04-15 Thread Marc Deslauriers
== Ubuntu Security Notice USN-6734-1 April 15, 2024 libvirt vulnerabilities == A security issue affects these releases of Ubuntu and its derivatives:

[Bug 2058023] Re: New versions of amavis with security fixes

2024-04-15 Thread Marc Deslauriers
There are packages for focal, jammy, and mantic available for testing in the security team PPA here: https://launchpad.net/~ubuntu-security- proposed/+archive/ubuntu/ppa/+packages If they work in your environment, please mention it in this bug. Thanks! -- You received this bug notification

Re: [sage-devel] Re: Proposal (redo): Make python_build (and its dependency pyproject_hooks) a standard package

2024-04-15 Thread Marc Culler
a sage that works and will remain working and that is the most recently released version of sage. This is true with the current configuration of Sage. - Marc -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from

RE: spamassassin with gmail

2024-04-15 Thread Marc
> > Do any of you use spamassassin with a gmail account, and if so, how are > people doing it? The reason to do this is gmail's spam filtering isn't > perfect You can add to this, that gmail actually is also losing email and annoying is that you can't send zip files. I am constantly asking

Re: [PATCH v5 1/3] ui/console: Introduce dpy_gl_qemu_dmabuf_get_..() helpers

2024-04-15 Thread Marc-André Lureau
fic fields from the QemuDmaBuf struct. It also updates all instances > where fields within the QemuDmaBuf struct are directly accessed, replacing > them with calls to these new helper functions. > > Suggested-by: Marc-André Lureau > Cc: Philippe Mathieu-Daudé > Cc: Vivek Kasire

[gentoo-commits] repo/gentoo:master commit in: net-dns/unbound/

2024-04-15 Thread Marc Schiffbauer
commit: d8a51658d025676fe092069ece3964554530ac4b Author: Marc Schiffbauer gentoo org> AuthorDate: Mon Apr 15 08:52:26 2024 + Commit: Marc Schiffbauer gentoo org> CommitDate: Mon Apr 15 08:52:53 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8

[gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/

2024-04-15 Thread Marc Schiffbauer
commit: dfb13f97a998343c1ce620bae6167307fea182bc Author: Marc Schiffbauer gentoo org> AuthorDate: Mon Apr 15 08:33:48 2024 + Commit: Marc Schiffbauer gentoo org> CommitDate: Mon Apr 15 08:35:17 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df

[gentoo-commits] repo/gentoo:master commit in: app-admin/lib_users/

2024-04-15 Thread Marc Schiffbauer
commit: 27404215f61bf88d09e6f90aaf8365e8f09240af Author: Marc Schiffbauer gentoo org> AuthorDate: Mon Apr 15 08:25:49 2024 + Commit: Marc Schiffbauer gentoo org> CommitDate: Mon Apr 15 08:25:49 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27

Re: SOLVED (was: Re: using mbuffer: what am i doing wrong?)

2024-04-14 Thread Marc SCHAEFER
On Thu, Apr 11, 2024 at 04:14:33PM +0200, DdB wrote: > - the resulting transfer is way faster than say ... ssh. AFAIK ssh is mono-threaded (like OpenVPN, unless you use the kernel module). wireguard is multi-threaded. The symptom will be one CPU ("core") at 100% and the rest mostly idle.

<    5   6   7   8   9   10   11   12   13   14   >