Did Tippy.js add Popper2 to Jenkins core?

2023-05-22 Thread Basil Crow
https://github.com/jenkinsci/bootstrap5-api-plugin/pull/213 (comment) concerns me: > Popper2 is now part of Jenkins core. As far as I can tell the Popper dependency was added when replacing YUI tooltips with Tippy in https://github.com/jenkinsci/jenkins/pull/6408. Has this abstraction now leaked

Re: GSoC 2023 Building jenkins.io with alternative tools project feedback solicitation

2023-05-22 Thread Mark Waite
On Friday, May 19, 2023 at 11:24:09 AM UTC-6 Gavin wrote: Having been around for a number of the GSOC projects, and a number of the migration projects. I'm very worried about half finished state that nobody finishes. And honestly spent a lot of time cleaning up content on jenkins.io (some

Re: CDF Project Representative nominations

2023-05-22 Thread Alyssa Tong
Thank you Oleg for your role in the CDF TOC. I am +1 for Mark as TOC candidate for Jenkins. BR, alyssa On Mon, May 22, 2023 at 11:42 AM Oleg Nenashev wrote: > Hi all, > > As it was announced in the CDF today, the nominations for CDF project > representatives are open: >

Re: Default selection in jelly with cookies

2023-05-22 Thread Ullrich Hafner
Ah, you want to use it on the server side. Sorry, then there is no equivalent available. > Am 22.05.2023 um 17:03 schrieb Michael Carter : > > Turns out I was thinking way to complicated: > >value="${h.getCookie(request,'project').getValue()}" /> >

CDF Project Representative nominations

2023-05-22 Thread Oleg Nenashev
Hi all, As it was announced in the CDF today, the nominations for CDF project representatives are open: https://github.com/cdfoundation/foundation/issues/442 . The nomination period starts on May 22, 2023 and ends on June 5, 2023. 4 of the 9 CDF TOC seats are elected from CDF Project

Default selection in jelly with cookies

2023-05-22 Thread Michael Carter
Got a page with some with filldependson set. Trying to use cookies to remember the last selection. So few questions. Is there an example of this I can follow in some plugin somewhere? I can use jquery to select using jQuery('#object').val(cookie.select1)

Re: Default selection in jelly with cookies

2023-05-22 Thread Ullrich Hafner
Why do you want to use cookies? This is better implemented by storing the value in the browser's local storage. Example: https://github.com/jenkinsci/data-tables-api-plugin/blob/831d74b746337e6990c6aae5bff2591b2308103d/src/main/webapp/js/table.js#L148 > Am 22.05.2023 um 16:36 schrieb

Re: Default selection in jelly with cookies

2023-05-22 Thread Michael Carter
Turns out I was thinking way to complicated: Then on the object: So on the local storage front. Is there a h. function equivalent? How would I change the set? On Monday, May 22, 2023 at 10:57:18 AM UTC-4 ullrich...@gmail.com wrote: > Why do you want to use cookies? This is