mwinkel-dev
mwinkel-dev
Clarification: IMAS and OMAS are abstraction layers above MDSplus and other data stores. Thus, it is unlikely that full IMAS and OMAS paths will be mirrored directly in MDSplus. However,...
@joshStillerman also suggested including the session id for the mdsip connection.
Hi @sflanagan and @ModestMC, Adding the `username` and `PID` are also a great suggestions! I haven't looked at the code yet, so don't know what is possible. But I do...
Hi @ModestMC, I glanced at the logging code in November 2024 while researching Issue #2649. At that time, I noticed that the `access` log file has timestamps, but that the...
Hi @ModestMC, Thanks for the recent post indicating that GA wants a fix for this issue. I have therefore upgraded this to "US Priority". Work on this issue will start...
The escape character processing is an inherent feature of Python strings. As is illustrated by this example. ``` >>> str1="\Tz" >>> len(str1) 3 >>> >>> str2="\tz" >>> len(str2) 2 >>>...
Some ideas for consideration . . . - Update the documentation on the mdsplus.org web site regarding use of tabs (`\t`) and other special characters in node names / paths...
The issue is that uppercasing `something` merely makes it `SOMETHING`. As is shown in the following example. ``` >>> str5 = '\tz' >>> len(str5) 2 >>> str6 = str5.upper() >>>...
Hi @ModestMC, Correct. Users should either use uppercase, raw strings, or double-backslash of special characters (such as `\\t` instead of `\t`) when entering Python strings that are passed to the...
Hi @ModestMC, Thanks for your input. I'll look at the code and get back to you. (And I am also inclined to add a few sentences to the mdsplus.org web...