sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    WebDialog set_file

    Scheduled Pinned Locked Moved Developers' Forum
    24 Posts 7 Posters 5.9k Views 7 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • thomthomT Offline
      thomthom
      last edited by

      ah. .set_file was passed the URI. now I see.

      Thomas Thomassen — SketchUp Monkey & Coding addict
      List of my plugins and link to the CookieWare fund

      1 Reply Last reply Reply Quote 0
      • Dan RathbunD Offline
        Dan Rathbun
        last edited by

        @thomthom said:

        ah. .set_file was passed the URI. now I see.

        No I thought .set_file was doing this:

        def set_file(filename, path='') %(#F0F0F0)[__]protocol='file://' %(#F0F0F0)[__]set_url( File.join(protocol,path,filename)) end

        But Ruby's File.join is actually kinda smart. Google may have used their own dumb version that adds extra /s.

        But I'm not sure:

        my_dialog.set_file('C:/scite/WebDialogTips.html','')
        Works

        my_dialog.set_file('C:/scite/WebDialogTips.html')
        Works

        my_dialog.set_file('WebDialogTips.html','C:/scite')
        Error ('Cannot Load Webpage' Error Webpage, but NOT MSIE Error dialog.)

        my_dialog.set_file('WebDialogTips.html','C:/scite/')
        Works

        EDIT NOTE: For this test, I copied file 'WebDialogTips.html' into 'C:/scite/' because the sciTE folder is in my System PATH (not my Ruby $LOAD_PATH.)

        my_dialog.set_file('WebDialogTips.html','')
        and
        my_dialog.set_file('WebDialogTips.html')
        both produce the MSIE Error Dialog, that says:
        "Cannot find 'file:///WebDialogTips.html'. Make sure the path or Internet address is correct."

        So the Win System PATH makes no difference.
        _

        I'm not here much anymore.

        1 Reply Last reply Reply Quote 0
        • Dan RathbunD Offline
          Dan Rathbun
          last edited by

          @thomthom said:

          file:/// is a valid URI. http://en.wikipedia.org/wiki/File_URI_scheme#Windows

          Firefox diplay local URIs like that. IE will open such URI and convert it into what you see in Windows Explorer. So odd that it'd be problems with the webdialog then.
          Yes 3 slashes work if I paste it into the addressbar of a normal MSIE browser.
          But for WebDialog, on PC (Win32),
          where path=Sketchup.find_support_file(''):

          my_dialog.set_url('file://localhost/'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file:///localhost/'+path+'/Support/webpage.html')
          Error

          my_dialog.set_url('file:////localhost/'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file://///localhost/'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file://////localhost/'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file://localhost//'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file:///localhost//'+path+'/Support/webpage.html')
          Error

          my_dialog.set_url('file:////localhost//'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file://///localhost//'+path+'/Support/webpage.html')
          Works

          my_dialog.set_url('file://////localhost//'+path+'/Support/webpage.html')
          Works

          Any more than 6 /'s before localhost or 2 following, does not work for WebDialog.

          I'm not here much anymore.

          1 Reply Last reply Reply Quote 0
          • Dan RathbunD Offline
            Dan Rathbun
            last edited by

            UI::WebDialog.set_file
            BUG found

            Found the problem on PC.
            It's a boo-boo using the File.join method. An extra SEPARATOR is getting inserted at the beginning of the URL string, so that whatever the pathname, whether you use the optional relative path (2nd argument) or not, the resulting URL passed to the browser begins with:
            file:///

            For this test I have Rick Wilson's lil' html help file in the Support folder:
            Rename it to .html and put it in the Sketchup Support folder

            my_dialog=UI;;WebDialog.new('Smustard Organizer Compatibility',true,'test',800,600,100,100,true)
            SUpath=Sketchup.find_support_file('') #empty string needed!
            my_dialog.set_file('Support/Smustard_Organizer.html',SUpath)
            my_dialog.show
            

            On the PC this results in MSIE error dialog stating that 'Internet Explorer cannot find the file:
            "file:///C:/Program Files/Google/Google SketchUp 7/Support/Smustard_Organizer.html"_'
            Trying various combinations of the set_file method: 1 argument, 2 arguments, etc., I have also been able to get 2 types of error webpages, 'Internal Server Error' and the normal useless 'Cannot Open the Webpage error' with the likely reasons ie: No Internet connection, etc.

            LESSON
            UseUI::WebDialog.set_url instead.

            my_dialog=UI;;WebDialog.new('Smustard Organizer Compatibility',true,'test',800,600,100,100,true)
            SUpath=Sketchup.find_support_file('') #empty string needed!
            # Remove leading file separator on Mac (or Win without Drive;) 
            SUpath.slice!(0,1) if SUpath[0,1]==File;;SEPARATOR
            # File.join will put it back in
            my_dialog.set_url( File.join('file;//localhost',SUpath,'Support/Smustard_Organizer.html'))
            my_dialog.show
            

            It is quite likely that .set_file actually just calls .set_url passing the latter improperly concatenated pathname string portions misusing the File.join method. (Obviously the set_file method could be fixed using the slice! technique above.)

            UI.openURL
            The same technique can (and should) be used with UI.openURL so that code is cross-plaform.

            • On Mac, testing has shown that OSX wants 'file://localhost' at the begining of the URL or it can't find the file.* On PC, Windows will adjust the URL, stripping off the 'file://localhost' and passing the rest of the path to whatever application is registered for the file extension. (Not always the browser.)

            WebDialog.new
            Two things to note here.

            Comma Separated Parameter List form: IF the pref_key argument is nil or '' (empty string), the remaining arguments are ignored. (This is why I set the key to 'test' in the examples above.) So if you are attempting to make a WebDialog that does not save settings, and it is not showing at the position and size you want, this may be why.

            Hash as Parameter form: Contrary to what has been said that the dialog_title parameter cannot be set through the hash, it CAN be. However, there is a bug in this new Hash based functionality. In that the Google coder did not take into account that there are several ways of defining a Hash, ie, with Symbol keys or String keys. The coder should have just converted each key using to_s and then made the value assignments based on the keystring, but didn't. So the Hash based form is 'quirky'. You must use Symbolsas keys, NOT Strings:
            hsh=Hash[:dialog_title=>'Title passed by Hash', :scrollable=>false, :preferences_key=>'MyDialog', :width=>800, :height=>600, :left=>100, :top=>100, :resizable=>true]
            AND once again if you omit the :preferences_key value pair, it seems the remaining arguments are ignored.. ie default position is 0,0 and size is 250,250 instead of those specified in the hash.

            Conclusion: Because of the kwappy way the WebDialog API was coded, we must pass ALL parameters or Hash keys (which actually defeats the advantage of the Hash, over a Comma Sep'd Parameter List.)
            _

            I'm not here much anymore.

            1 Reply Last reply Reply Quote 0
            • 1
            • 2
            • 2 / 2
            • First post
              Last post
            Buy SketchPlus
            Buy SUbD
            Buy WrapR
            Buy eBook
            Buy Modelur
            Buy Vertex Tools
            Buy SketchCuisine
            Buy FormFonts

            Advertisement