<div dir="ltr">As always - thanks!   I am absolutely loving everything about the new GUI.   Your hard work really shines !</div><div class="gmail_extra"><br clear="all"><div>Dan Porter<br>Twin Wolf Technology Group, LLC<br>
</div>
<br><br><div class="gmail_quote">On Thu, Sep 4, 2014 at 7:07 PM, Michael Stauber <span dir="ltr"><<a href="mailto:mstauber@blueonyx.it" target="_blank">mstauber@blueonyx.it</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="">Hi Dan,<br>
<br>
>> > When attempting to generate a SSL signing request for a new certificate,<br>
>> > the "Organization" field will not allow any blank space characters.   When<br>
>> > typing the name of the organization, an error appears in red "Please fix<br>
>> > this field".<br>
><br>
> Confirmed. Thanks for reporting this. I'll fix it.<br>
<br>
</div>Ok, this is fixed in SVN and YUM. Updates have been published. Sadly, it<br>
was a bit more complicated than anticipated.<br>
<br>
Allowing a space between multiple words was easy. We just don't want a<br>
leading and trailing space. That blew the regular expression for this to<br>
3x the previous size.<br>
<br>
Then I looked at it again. The company name, state, organizational unit<br>
and such might have additional unicode characters in it. With umlauts<br>
and accents. One example (fictional) company name: "Bärbelweiß &<br>
Trüffelköter GmbH"<br>
<br>
The GUI wouldn't take that as is. Due to the umlauts. Validating with<br>
\pL instead (or in PREC with \p{L}) would validate all Unicode input as<br>
valid. Which would even have worked for Japanese. Sadly, we validate<br>
with jQuery and that only allows a subset to be validated natively and<br>
macros such as \pL won't work.<br>
<br>
So I had to incorporate a bit of a work around so that the SSL input<br>
also accepts a limited subset of Unicode input. Should be good for now,<br>
but might need some fine tuning down the road.<br>
<div class="HOEnZb"><div class="h5"><br>
--<br>
With best regards<br>
<br>
Michael Stauber<br>
_______________________________________________<br>
Blueonyx mailing list<br>
<a href="mailto:Blueonyx@mail.blueonyx.it">Blueonyx@mail.blueonyx.it</a><br>
<a href="http://mail.blueonyx.it/mailman/listinfo/blueonyx" target="_blank">http://mail.blueonyx.it/mailman/listinfo/blueonyx</a><br>
</div></div></blockquote></div><br></div>