Wish List - WebDialog communication model
-
Here and elsewhere communication models appear to be built on software solutions. A healthier approach is for the communication model to be designed to lead to software solutions. For example webdialogs can be software solutions for viewing communication models assembled by working the Internet as I suggested here and here.
It is worth repeating the quote in that last post:
All of the features of NLS were in support of Engelbart's goal of augmenting collective knowledge work and therefore focused on making the user more powerful, not simply on making the system easier to use.
With this in mind I think it is very wrong to expect those gifted 3d modeling software designers to be responsible for communication modeling beyond the simplest of connections. Those who use Sketchup know what needs to be communicated for whatever they use it for yet there is little support for capturing and modeling their expertise - for example, why has builder Andrew Dwight had to go out on a limb?.
-
thanks Chris, I am not sure if developing custom software is going out on a limb (unless Trimble removes access to the back end of Sketchup). I designed it for me to increase the amount of work that myself and other builders can get done in a day. We are all doing this in one way or another. I hope that the rest of the world will get to reap the benefits of my work in the future. I guess we will find out sooner or later.
My 2 bobs worth is: you can only achieve a certain amount with ruby and using all languages is imperative considering the access we have to Sketchups rear end.
-
@aadbuild said:
thanks Chris, I am not sure if developing custom software is going out on a limb ...
I don't think there was anything to thank me for, but have a read of this and its related posts. It may be you have put all your eggs in one basket - in which case you are very certainly out on a limb.
Obviously I don't know the detail of your plug in but you mention some interaction with suppliers and so forth. You know most people have JavaScript enabled so if you are relying entirely on Ruby that may go against you. I would really think about minimising Ruby content to the simplest of bridges to Sketchup capturing and manipulating enabling data cross platform.
-
Try building the protocol message as a single-quoted string ??
Also.. the HTMl & codes are not valid in URIs, because & is used mark a field. Special characters should be replaced with %nn hexidecimal codes. ie & is %26
-
@dan rathbun said:
Try building the protocol message as a single-quoted string ??
For simple messages yes, but if I can't predict what characters the message contains, I can't simply brute-force replace all double quotes by single quotes.
I ended up writing my own escape function the gets rid of all characters that need escaping (be it for urls or string manipulation). The normal escape function would replace\
by\\
and"
by\"
which both could later require escaping again (\\\\\\\\\\\\ ). -
I have encountered similar "hair-pulling" frustration with the
UI.openURL
method. -
I'm again struggling with the skp: protocol. It is probably one of the biggest limitations:
- it supports only ~2083 characters in Internet Explorer
- it unescapes html named characters (JS sends
%(#000080)["& &"]
and Ruby receives"& &"
)
Edit: this is solved by using%(#000080)[encodeURIComponent()]
on the whole string. - It eats sometimes backslashes (
%(#000080)[\]
as well as encoded as%(#000080)[%5C]
) - If JS sends a single quote (
%(#000080)[']
or%(#000080)[%27]
), Ruby receivesnil
. - On a JavaScript onunload event, we can only send data using this
%(#000080)[skp]
method, the more reliablewebdialog.get_element_ value("hidden_field")
method comes too late when the dialog is already closed.
-
I've published a code snippet for many of these issues: http://forums.sketchucation.com/viewtopic.php?f=180&t=46626
Input appreciated. -
@richmorin said:
As an example of quirky behavior, execute_script() imposes a fairly small (and undocumented) limit on the size of the executed code string. So, although the call can be used to transfer data (eg, as JSON), any significant amount of data will require multiple calls.
What is the limit? I was relying on this to push (sizeable) model data into a silverlight plugin in the WebDialog. I had assumed I needed to chunk, but it would really help to know what that limit is, so I can chunk to that size.
Thanks!
-
@caseychamberlain said:
@richmorin said:
As an example of quirky behavior, execute_script() imposes a fairly small (and undocumented) limit on the size of the executed code string. So, although the call can be used to transfer data (eg, as JSON), any significant amount of data will require multiple calls.
What is the limit? I was relying on this to push (sizeable) model data into a silverlight plugin in the WebDialog. I had assumed I needed to chunk, but it would really help to know what that limit is, so I can chunk to that size.
Thanks!
This is the overriding problem:
https://developers.google.com/sketchup/docs/ourdoc/webdialog#add_action_callback
Advertisement