... Been down with flu. Try dialogplugin1.19_090114.zip at http://tech.groups.yahoo.com/group/power-pro/files/0_TEMP_/AlansPluginProvisional/ see if that gives...
... Hope you're feeling better now. ... http://tech.groups.yahoo.com/group/power-pro/files/0_TEMP_/AlansPluginProvisional/ ... Negative. Had to go all the way...
... Sorry, the correct test (92) is for pattern ?"]" not ?"[" Console pcretest program gives this compile error: Failed: ] is an invalid data character in...
... Will test. ... was broken. Try regexTest_090115.zip test 25 works with local sScript = cbx("@callback", "yes") with Function callback(pCaptureVec,...
... The original format: "."++scriptname++"@callback" still isn't working. I now get these error dialogs running regexplugintest: Test 25: Bad expression:...
Don't forget to update the date in the string returned by regex.version. Working on the doc update. Is the new version number going to be 2.0.6? ... Spoke too...
... okay ... whatever regex.version returns now. ... Dunno what that's about. I'll double check code, but I think I just map e.g. bsr_unicode into whatever...
... Both of above tests work properly in pcretest. ... The bsr_unicode and bsr_anycrlf options are kind of like the various newline_options, they override a...
... So if library default is e.g. bsr_unicode, I need to turn that off in presence of bsr_anycrlf...that makes sense. Will try. There's a bunch of nasty code...
... Sounds logical. ... I don't think anything similar would apply for bsr_unicode or bsr_anycrlf. It is possibly PCRE fixes made that step-one-character logic...
I'm getting an inexplicable "Static/Local must be in script" message from PowerPro using my normal pcf with latest regex beta. I don't know what its referring...
... I figured out that it is being caused by the use of regex plugin functions in *Info expr in the inifile-based command list being shown with menu showfile....
... I wouldn't have any of my regex alphas anywhere near daily production. Test it, then drop back to known good (1.0.4 or whatever it was). So, try...
... Try regexTest_090118_2.zip; might deal with attempts to declare local or static from within a pcf. Out of interest where you declaring global regex_tmp_var...
... No, but I thought that variable applied only to regex.pcrereplacecallback, which was not one of the functions I used from within command lists. Adding that...
... ;hRE.release ;;if used in larger test script @94 local pattern=?"\R" local hRE=regex.pcrecompile(pattern) hRE.pcreMatch("\x85") win.debug("94", "expect No...
... If over the quoted test, I can document the plugin doesn't support changing bsr_options after compilation (even though PCRE does). That would make the only...
... By debugging content of regex variables at various times with the old and new, I figured out the difference is treatment of regex_status. With the old...
... Try regexTest_090119_2.zip You wrote ... Won't match because should surely be hRE.pcreMatch("abcde\x85", ?"bsr_unicode") ... also has error is escape seq....
regexTest_090120.zip: Banged more nails in to prevent attempt to declare local when variable already declared. For all services (I think), regex_status will...
... Had a problem with regex.pcreQuoteMeta. Would it not be simpler for plugin to declare global regex_status when the regex plugin in first loaded, and after...
... What problem? ... On first use of a plugin service, I try to detect a global or local. If I find neither, and I'm in a script, I try for a static. If none...
... I had removed global declaration from my startup event. regex.pcrequotemeta was the first regex function I used (in a script). Got an error, no existing...
... Darn, and it was about the only one for which I forgot to insert call to finction that does the regex_status stuff. Sorry. Try regexTest_090122.zip ... ...
... I don't understand the above code. If exec returns NOMATCH, there is no need to do anything AFAIK. Certainly don't want to keep trying to match when there...