Sunday, 3 October 2021

Re: Fetch_NS

In message <6160be7559.DaveMeUK@BeagleBoard-xM>
David Higton <dave@davehigton.me.uk> wrote:

>Hi all,
>
>I used to use Fetch_NS daily. Recently it has stopped working, complaining
>of an incorrectly formatted filename - of course it's incorrectly formatted
>because it's the empty string. The error is coming from
>Fetch_NS.Resources.SetLatest.
>
>I'm trying to analyse why it isn't working, but the code is crunched, or
>very nearly so, which means I'm struggling to understand it.
>
>Has it stopped working for anyone else? If so, do you have a solution?

Following up my own post: it looks like my CertData file must have
contained an invalid certificate (even though it was only 3 months out
of data), because replacing that has fixed the problem.

I have updated a couple of lines in !Boot.Choices.Fetch_NS.Settings.
These are the new ones:

Set Fetch_NS$Url https://ci.netsurf-browser.org/builds/riscos/

Set Fetch_NS$Opt --ca-certificate=InetDbase:CertData -qO

First one is to use https rather than http. Second one is to use the
central InetDbase:CertData file rather than a separate (and non-
maintained) copy.

David
_______________________________________________
netsurf-users mailing list -- netsurf-users@netsurf-browser.org
To unsubscribe send an email to netsurf-users-leave@netsurf-browser.org

Re: Fetch_NS

In article <6160be7559.DaveMeUK@BeagleBoard-xM>,
David Higton <dave@davehigton.me.uk> wrote:
> Has it stopped working for anyone else? If so, do you have a
> solution?

Worked ok here, although there is nothing to fetch, since it has been
5313 since before mid Sept.

The version of SetLatest here certainly is not crunched, although it
has had changes made by me.

--
Chris Johnson
Edinburgh
_______________________________________________
netsurf-users mailing list -- netsurf-users@netsurf-browser.org
To unsubscribe send an email to netsurf-users-leave@netsurf-browser.org

Fetch_NS

Hi all,

I used to use Fetch_NS daily. Recently it has stopped working, complaining
of an incorrectly formatted filename - of course it's incorrectly formatted
because it's the empty string. The error is coming from
Fetch_NS.Resources.SetLatest.

I'm trying to analyse why it isn't working, but the code is crunched, or
very nearly so, which means I'm struggling to understand it.

Has it stopped working for anyone else? If so, do you have a solution?

David
_______________________________________________
netsurf-users mailing list -- netsurf-users@netsurf-browser.org
To unsubscribe send an email to netsurf-users-leave@netsurf-browser.org

Monday, 27 September 2021

Re: border values in libcss.

Hi,

On 25/09/2021 17:36, Rupesh gautam wrote:

> Does libcss support "border" ?
>
> div {
> width: 300px;
> * border: 10px solid #00FF00*
> padding: 50px;
> margin: 9px;
> }

Yes, that should work. You'll need a `;` before `margin`.


You will also need a non-zero device DPI in the css_unit_ctx:

http://git.netsurf-browser.org/libcss.git/tree/include/libcss/unit.h#n61


Best regards,


--
Michael Drake https://www.codethink.co.uk/
_______________________________________________
netsurf-dev mailing list -- netsurf-dev@netsurf-browser.org
To unsubscribe send an email to netsurf-dev-leave@netsurf-browser.org

Saturday, 25 September 2021

Re: border values in libcss.

Hi,

Please ignore my previous email. i got it working.

Thanks.

On Sat, Sep 25, 2021 at 10:48 PM Rupesh gautam <rupesh.gautam@gmail.com> wrote:
Hi,

corrected typo in previous email.

Does libcss support "border" ?

div {
    width: 300px;
    border: 10px solid #00FF00
    padding: 50px;
    margin: 9px;
}

I am trying to get the value using all available functions related to border computation but each function is returning 0.

i tried css_computed_border_left_width but it is returning 0. css_computed_border_left_width  appears to be wrong function for getting values from border: 10px solid #00FF00

Regards,
Rupesh

On Sat, Sep 25, 2021 at 10:06 PM Rupesh gautam <rupesh.gautam@gmail.com> wrote:
Hi,

Does libcss support "border" ?

div {
    width: 300px;
    border: 10px solid #00FF00
    padding: 50px;
    margin: 9px;
}

I am trying to get the value using all available functions related to margin computation but each function is returning 0.

i tried css_computed_border_left_width but it is returning 0. css_computed_border_left_width  appears to be wrong function for getting values from border: 10px solid #00FF00

Regards,
Rupesh

Re: border values in libcss.

Hi,

corrected typo in previous email.

Does libcss support "border" ?

div {
    width: 300px;
    border: 10px solid #00FF00
    padding: 50px;
    margin: 9px;
}

I am trying to get the value using all available functions related to border computation but each function is returning 0.

i tried css_computed_border_left_width but it is returning 0. css_computed_border_left_width  appears to be wrong function for getting values from border: 10px solid #00FF00

Regards,
Rupesh

On Sat, Sep 25, 2021 at 10:06 PM Rupesh gautam <rupesh.gautam@gmail.com> wrote:
Hi,

Does libcss support "border" ?

div {
    width: 300px;
    border: 10px solid #00FF00
    padding: 50px;
    margin: 9px;
}

I am trying to get the value using all available functions related to margin computation but each function is returning 0.

i tried css_computed_border_left_width but it is returning 0. css_computed_border_left_width  appears to be wrong function for getting values from border: 10px solid #00FF00

Regards,
Rupesh

border values in libcss.

Hi,

Does libcss support "border" ?

div {
    width: 300px;
    border: 10px solid #00FF00
    padding: 50px;
    margin: 9px;
}

I am trying to get the value using all available functions related to margin computation but each function is returning 0.

i tried css_computed_border_left_width but it is returning 0. css_computed_border_left_width  appears to be wrong function for getting values from border: 10px solid #00FF00

Regards,
Rupesh