|
Re: fastfix for 1.23 |
Posted on: 2014/4/14 19:56
#223 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@samo
check prefs:url and you will get it (there also was thread where i even post screenshots how to setup url prefs). url prefs have 5 tabs ; file, http, https, mailto and co. in every one you add what apps you want to be shown in that requester where you choice browser. for odyssey copy all as for owb in all five tabs just add it for odyssey name and that all about urlopen. no need to worry about arexx. but if you need arexx then you use openurl. odyssey already can be used by both. all works automatically for you before because url come with configure for ib, owb and whatever. |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 14:12
#224 |
---|---|---|
Home away from home
![]() ![]() Joined:
2006/12/2 3:55 From Italy, Perugia
Posts: 3412
|
@kas1e
Ok added Odyssey and now Launch-Handler works as expected, but mailto links does not, and at the moment i can't find you old post .. Can you show me a grab of your config ? Maybe a little how-to (per images) should be added in the next version of Odyssey ![]() |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 15:15
#225 |
---|---|---|
Quite a regular
![]() ![]() Joined:
2009/6/1 14:11 From Germany
Posts: 733
|
odyssey 1.24 for Morphos is out now. Do we get an update for AmigaOs too?
Edited by tommysammy on 2014/4/15 16:31:34
|
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 16:11
#226 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@samo
lame howtos are lame ) try to find how to make it works @tommy nope, i will wait for some revisions more probably, as that all take lots of time as you can see. |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 16:20
#227 |
---|---|---|
Home away from home
![]() ![]() Joined:
2006/12/2 3:55 From Italy, Perugia
Posts: 3412
|
@kas1e
Quote: lame howtos are lame ) try to find how to make it works But it's more lame if 50% of users (statistic!) will just abandon the idea after 10 minutes of "no-luck" trying .. ![]() |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 16:55
#228 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@samo
plz stop asking me to include not related stuff. just accept my choice and skip it. feel free to create docs with copy paste of other docs and upload them for helgis ) i close suggestion about url as invalid for now |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 18:24
#229 |
---|---|---|
Just can't stay away
![]() ![]() Joined:
2008/1/6 17:56 From Pennsylvania, USA
Posts: 1342
|
@samo79
As far as I can tell, you're right; Odessey mailto doesn't work. I checked with Snoopy and nothing happens when I click that mailto link. I copied that link and entered it in the "Test" window of URL prefs and it worked. I used the same copied link with the "OpenURL" command and it works. I think if Odessey were sending that link correctly to OS4 URL or to OpenURL, it should be working. |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/15 21:22
#230 |
---|---|---|
Quite a regular
![]() ![]() Joined:
2006/11/27 14:24 From Scarfskerry
Posts: 590
|
@samo79
Quote: Ok added Odyssey and now Launch-Handler works as expected, but mailto links does not, and at the moment i can't find you old post. For some reason there is no (no obvious way at least) handling of mailto: links in any of the MUI-OWB versions. This is a real weakness in the application. IBrowse, old though it may be, has a section in the Preferences for the user to decide how mailto: links are handled, internally, externally or via OpenURL. There seems to be no equivalent setting for mailto: in Odyssey, clicking a mailto: link does absolutely nothing. Does the MorphOS version allow the use of mailto: links ? If so maybe something broke in the conversion process ? |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/16 0:42
#231 |
---|---|---|
Quite a regular
![]() ![]() Joined:
2007/2/6 13:57 From Donostia (SPAIN)
Posts: 628
|
@xenic
Tried here too a couple of MAILTO: links and OS4 Odyssey V1.23 doesn't do anything. BTW can the UserScripts (javascripts) be used in such case, I mean redirecting MAILTO: links to URL/OpenURL/whatever_you_want? Find that if you use Odyssey preferences 'Context menus' and you add CATEGORY: Link LABEL: MailTo (YAM) ACTION: URLOpen %l it works (sort of), you must click RMB to get conext menu and shows a new entry "MailTo (YAM)" and in my case it opens YAM (as I configured so in URL prefs) |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/16 12:32
#232 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@All
There was big mistake from me in code : openurl didn't works at all before: i like a sucker forget to open openurl.library. Doh! What works for us, its default inbuild urlopen (prefs:url), because it have no needs to open 3d party libs and way it handle apps not based on arexx, so, http/https/etc stuff just works as it, without needs to do anything else in code. Mailto also should works, even if i forget to open openurl.library, if not that code:
/* MailTo */
As you can see, code do check for urlopenbase, and if, then. But, as i just (sucker) forget to openurl.library at all, then of course that never works. And openurl support never works too, all what works for us its just default urlopen, because it use pure arguments of app and that all. So ! Now, i add opening of openurl.library, and with openurl malto: works as should. Through, if openurl used only for "open of urls" , and without having of it all works fine , i may just get rid of it in whole, and use our inbuild urlopen fully. I.e. just did not open openurl.library at all, and deal with that code to works without openurl.library too. Question is: is openurl offer something really necessary, what inbuild urlopen didn't ? I mean, its in end of all just to open urls. With or without openurl arexx port of odyssey works as before, and you can use the same set of commands as before with no problems. |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/16 13:48
#233 |
---|---|---|
Not too shy to talk
![]() ![]() Joined:
2006/11/27 22:28 From Germany
Posts: 304
|
@kas1e
Quote:
just for the record - the os4 urlopen also does not work. as others already mentioned running snoopy does not show any action when clicking on a mailto link. regards... michael |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/16 14:14
#234 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@michael
? that what i say in previous post and show code which handle mailto and explain why it didnt work even for default urlopen (check how i wrote it: it should if not only that code (which make it fail) ). code check if openurl.library base fine (so its open) and then do mailto. @all so any real benefits in compare openurl with os4s urlopen ? |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/16 16:29
#235 |
---|---|---|
Quite a regular
![]() ![]() Joined:
2007/2/6 13:57 From Donostia (SPAIN)
Posts: 628
|
@kas1e
Maybe you can upload a new fastfix with already openur_lib code and let users "vote". Or don't know if changing with a simple/lame function that just passes/uses 'C:URL msg->url' is enough to use OS4's urlopen |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 10:05
#236 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@All
Time for another fixes. beta001: http://www.sendspace.com/file/uv1ymw What in: 1. previously support of openurl.library was totaly broken and didn't works. We just was able to use inbuild for os4 urlopen for most of protocols, but not for mailto support. Also seems defaul inbuild to os4 urlopen can't open new tabs on already opened browsers (at least i tests joerg's owb, crhis's netsurf and odyssey). So, i make openurl works as on morphos, as well as add fat-nice-gui error-warning window on running if you didn't have openurl.library installed. After you will install openurl, you go to prefs:openurl, and in Mailers , do for example for simplemail that: --definitions: Name: SimpleMail Path: Work:SimpleMail/SimpleMail ARexx port: SIMPLEMAIL (big letters necessary) --ARexx commands: Show: SHOW To Front: SCREENTOFRONT Write mail: MAILWRITE MAILTO="%a" SUBJECT="%s" Last line taken from simple mail guide, so, if you need YAM, then you refer to YAM guide. 2. Registered with application.library, so to have all bonuses from later automatically 3. Added ringhio support (yeah!), for all the downloads: done, fail and chancel. |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 10:27
#237 |
---|---|---|
Just can't stay away
![]() ![]() Joined:
2006/11/29 8:09 From Lyon, France
Posts: 1101
|
@kas1e
Nice ! Thanks ! ![]() |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 14:21
#238 |
---|---|---|
Home away from home
![]() ![]() Joined:
2006/12/2 3:55 From Italy, Perugia
Posts: 3412
|
@kas1e
Quote: i close suggestion about url as invalid for now So you see, it seems i was right ![]() Thanks for the update, now that you add Ringhio you can also close the ticket 626, however if you have the time would be nice if you can complete it adding also a little Odyssey icon into the notification window (just eye candy aniway but it's usefull in case you have multiple notifications at the same time) For the next beta you might also include: - The new TopSites_Grid.html from Sinisrus, the default one was broken http://www.amigans.net/modules/xforum ... t_id=88743#forumpost88743 - Update to the latest codeset.library 6.18 (current one in OWB archive is the old 6.17) - Make the remained (new) strings translable ? Good job |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 14:37
#239 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@samo
Quote:
Half of: urlopen still works even before, just mailto was broken as refers on openurl. Check new poll: vote Quote:
Yes, that what i think to do too, as its a bit too empty now. Quote:
Dunno if it broken ? Probably just works different ? As if it broken, Fab should be noted to fix it on original too. Quote:
Which ones ? |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 14:51
#240 |
---|---|---|
Home away from home
![]() ![]() Joined:
2006/12/2 3:55 From Italy, Perugia
Posts: 3412
|
@kas1e
Quote: just mailto was broken as refers on openurl Yes i meant that one, not the others .. before i even didn't know how to configure them, but then when i understand how to, i wasn't able to use the mailto .. so yes that were a general question, but then also a report that help you to find the issue Quote: Dunno if it broken ? Probably just works different ? As if it broken, Fab should be noted to fix it on original too. Well, that new page from sinisrus seems better formatted, not a problem aniway Quote: Which ones ? Well just for that one: - For the new "fat-nice-gui error-warning" window you added about openurl.library - And for the 2 remained strings inside the Ringhio window (download completed and download cancelled) So we will have the full browser properly translated :) |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 16:35
#241 |
---|---|---|
Home away from home
![]() ![]() Joined:
2007/9/11 12:31 From Russia
Posts: 6955
|
@samo
![]() |
|
|
Re: fastfix for 1.23 |
Posted on: 2014/4/17 16:45
#242 |
---|---|---|
Home away from home
![]() ![]() Joined:
2006/12/2 3:55 From Italy, Perugia
Posts: 3412
|
@kas1e
Quote: Your socks need changing! Hahaha ![]() Yeah now that's fine ! |
|