Re: [mapserver-dev] App crash in mapparser.y

2022-02-22 Thread Steve Lime
If there is no layer named "Height of Buildings (2013)" then lexer would see that as an attribute binding and with no quotes around it (the outer "'s are stripped off beforehand) it would be interpreted as a numeric binding. I guess the initial questions I have are: 1. is there a layer with

Re: [mapserver-dev] App crash in mapparser.y

2022-02-22 Thread Tamas Szekeres
Hi Steve, I've got the corresponding mapfile causing the crash, it looks like each LABELREQUIRES expression has a corresponding layer with the same name. The only thing I see is that some of the expressions contain brackets (either in the expression and in the layer name) like so: *LABELREQUIRES

Re: [mapserver-dev] Dropping Version Output?

2022-02-22 Thread Steve Lime
FWIW I added an option to suppress the version from server output, see: https://github.com/MapServer/MapServer/pull/6480 --Steve On Fri, Feb 18, 2022 at 8:43 AM Steve Lime wrote: > So it turns out that suppressing the version string itself is trivial - a > one-liner. However, that string is

Re: [mapserver-dev] Call for more listed Service Providers

2022-02-22 Thread Jeff McKenna
Hi Jukka, agreed, sending now to -users. -jeff On 2022-02-22 12:07 p.m., Rahkonen Jukka (MML) wrote: Hi, There might be some people providing training and help with configuration etc. who has subscribed only to the users list, what do you think? -Jukka Rahkonen- -Alkuperäinen

Re: [mapserver-dev] Call for more listed Service Providers

2022-02-22 Thread Rahkonen Jukka (MML)
Hi, There might be some people providing training and help with configuration etc. who has subscribed only to the users list, what do you think? -Jukka Rahkonen- -Alkuperäinen viesti- Lähettäjä: MapServer-dev Puolesta Jeff McKenna Lähetetty: tiistai 22. helmikuuta 2022 17.59

[mapserver-dev] Call for more listed Service Providers

2022-02-22 Thread Jeff McKenna
Hi everyone, Short story: Please add your company to the list of MapServer service providers, if you handle this type of work (see the related ticket at https://github.com/MapServer/MapServer-documentation/pull/674 ) Longer explanation: It's time to give an update to the MapServer Service

Re: [mapserver-dev] MapCache 1.12.0rc1 - feedback

2022-02-22 Thread Lime, Steve D (MNIT)
+1! From: MapServer-dev On Behalf Of jbo-...@mailo.com Sent: Monday, February 21, 2022 2:42 AM To: MapServer Dev Mailing List Subject: Re: [mapserver-dev] MapCache 1.12.0rc1 - feedback Hi Jeff, hi all, Since my announcement on mapserver-dev last week, and

Re: [mapserver-dev] App crash in mapparser.y

2022-02-22 Thread Steve Lime
Hi Tamas: Ok, reacquainting myself with that code. There are actually two lexers in play - msyylex() is the main one that is used to parse a mapfile and also expression strings - it is not thread-safe. With regards to expressions, msyylex() is used to generate a series of tokens - see