Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [HTCondor-users] Extra quotes in ClassAd attribute name
- Date: Wed, 24 Jan 2024 16:35:00 -0600 (CST)
- From: Todd L Miller <tlmiller@xxxxxxxxxxx>
- Subject: Re: [HTCondor-users] Extra quotes in ClassAd attribute name
Forgot to mention two things.
The submit language allows multiline attribute definitions, and
the queue statement isn't an attribute assignment, so you'll have to be
careful in your parser if you want to pursue this course.
A good start for a general embedding to valid attribute names
might be to use '_' as the escape character (using '__' for a literal '_')
and convert everything else that's not alphanumeric in the URL encoding
style.
- ToddM