Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
109 user(s) are online (62 user(s) are browsing Forums)

Members: 0
Guests: 109

more...

Headlines

 
  Register To Post  

« 1 ... 10 11 12 (13) 14 15 16 »
Re: fastfix for 1.23
Quite a regular
Quite a regular


See User information
@kas1e

Quote:
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!


So easily done

Glad to hear you found the problem and had not too much to do to fix it

Go to top
Re: fastfix for 1.23
Just popping in
Just popping in


See User information
How can I fix the position of an iconified OWB?

SAM 460 @ 1150 Mhz , 2GB RAM, 1TB HD +250 GB HD, 4x SATA Controller,Club 3D R7 250 + Warp3D Driver,PCIe 7.1 Soundcard,Fractal Design Define R3 artic white,AmigaOS 4.1FE, Ultra Accounts ,Mace, Dir me up, Gimp ,YAM. Turboprint 7.6
Go to top
Re: fastfix for 1.23
Just popping in
Just popping in


See User information
@jabirulo

Can you show me URL configuration, please.

SAM 460 @ 1150 Mhz , 2GB RAM, 1TB HD +250 GB HD, 4x SATA Controller,Club 3D R7 250 + Warp3D Driver,PCIe 7.1 Soundcard,Fractal Design Define R3 artic white,AmigaOS 4.1FE, Ultra Accounts ,Mace, Dir me up, Gimp ,YAM. Turboprint 7.6
Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
@Younghippie
MAILTO:
ClientName="YAM" ClientPath="APPDIR:yam" CMDFORMAT="MAILTO=%s"

Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@All
Will it make any sense to add ringhio message when user click on "mailto" (so when it will spawn for him mail client, there will be some note like "go to mail client, to write mail to balblalb, etc") ?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@kas1e

No need i think ..

Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
Has anyone had any success in getting embedded videos from Facebook to play?

AmigaOne X1000.
Radeon RX550

http://www.tinylife.org.uk/
Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
@Kas1e

I do not think it would be useful.

--
AmigaONE X1000 and Radeon RX 560
Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@all

New beta then:
http://www.sendspace.com/file/km3s26


What new:

- default useragent have "Macintosh" back now (as on morphos), instead of "Amiga" (which we previously change in hope to be "more teh omg true"), so some sites (like google.com) will not switch you to mobile modes now, and you have no needs to setup manually user-agent envs.

- ringhio notification support with fancy icon image (so not flat/empty look).

- support now and ULROpen and OpenURL. As URLOpen come with os by default, that will be first one in use (so you will have all those launcher-windowses, etc). And if you still want openurl by any of reasons (arexx support and co), you can or just rename DEVS:Dosdrivers/URL to something else (so openurl will be in use), or do redirection to openurl from urlopen as xenic do: setup URL prefs set to pass the URL to OpenURL instead of a browser like this: C:OpenURL "URL=*"http://%s*""

Btw, if you for example have some apps (old one for example) which support only openurl, but you want inbuild os4 urlopen, then you can setup redirection in openurl prefs to urlopen instead , so you will always have that launcher-window and all will looks clean and the same (tested, and it works).

You may want also add some arexx functionality to URLOpen (to have open webpages in new tabs, or to write mails without running new instance of yam or simplemail, etc), so you just can follow that way:

---mailto---

simlemail:

client name: simplemail
client path: rexx:simplemail
commandline format: "MAILTO=%s"

and rexx:simplemail script will be:

/*
* SimpleMail mailto: script for URLOpen
*
* Check if simplemail already running, and:
*
*  -- if not running, run new instance of simplemail and create mail
*  -- if running, not run new instance of simplemail, just create mail in current one
*
*/

parse arg incomingbuffer

if ~show('PORTS','SIMPLEMAIL.1'then do
 
address command 'APPDIR:simplemail' incomingbuffer
end
else do
 
address SIMPLEMAIL.1
 MAILWRITE incomingbuffer 
end



YAM

WARNING, YAM SCRIPT DONE FOR BETA URLOpen I USE NOW, THE WAY PARSING OF INCOMING BUFFER DONE SHOULD BE DONE FOR PUBLIC ONE DIFFERENT (minimal changes, just split mailto/subject pieces correctly to make it works on public launcher-handler)

client name: YAM
client path: rexx:yam
commandline format: "MAILTO=%s"
(i.e. the same as for simplemail)

and rexx:yam:

/*
* YAM mailto: script for URLOpen

* WARNING : launch-handler 53.38 need it for correct parsing
*
* Check if YAM already running, and:
*
*  -- if not running, run new instance of YAM and create mail
*  -- if running, not run new instance of YAM, just create mail in current one
*
*/

parse arg incomingbuffer 'MAILTO=' mailto ' Subject="' subject '"'

if ~show('PORTS','YAM'then do
 
address command 'APPDIR:YAM' 'MAILTO='mailto'' 'Subject="'subject'"'
end
else do 
 
address YAM
 
'Show'
 'MailWrite'
 'WriteMailTo "'
||mailto||'"'
 'WriteSubject "'
||subject||'"'
end


---http--- (the same for https/file/www, just change http on what you need)

Odyssey

client name: Odyssey
client path: rexx:odyssey
commandline format: "*"http://%s*""

and rexx:odyssey will be:

/*
* Odyssey's http/https/www/file script for URLOpen
*
* Check if Odyssey already running, and:
*
*  -- if not running, run new instance of Odyssey with given url
*  -- if running, not run new instance of Odyssey, just create new tab with given url
*
*/

parse arg url

if ~show('PORTS','ODYSSEY.1'then do
 
address command 'APPDIR:Odyssey' url
end
else do
 
address ODYSSEY.1
 OPEN NAME url NEWPAGE
end


Of course mailto settings will cover all your system, that not only related to odyssey, so from any browser you will handle them nice by that. And odyssey script to cover all http/https/file/etc can be reused with minimal changes for any other browsers. Probably for TW will be need to write another script, python based or something, but logic will be the same: check if , then, if not, then.

Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
Did some test with mailto: links and works fine with OS4 URLOpen, great!!!
Nice little icon on download notification too.
THX

Just a minor,minor typo I found on ABOUT window:
"for his icons & other images for AmigaOS4 port"

misses a '\033n' at end of string so TRANSLATORS doesn't show in italics too.

Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@Javier
Quote:

misses a '\033n' at end of string so TRANSLATORS doesn't show in italics too


Right, fixed

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: fastfix for 1.23
Quite a regular
Quite a regular


See User information
@kas1e
Installed and works well.

Go to top
Re: fastfix for 1.23
Just popping in
Just popping in


See User information
@kas1e

May be someone thinks I'm stupid, but where do I copy the scripts?

Edit: O.K. I think about and I decided to copy them to rexx:.
Correct?


Edited by Younghippie on 2014/4/21 16:44:28
Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@kas1e

Tested and finally URLopen works perfectly !

Just for the next beta you should include the latest codeset.library 6.18, and please make the new strings translable

Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@Younghippie
You add scripts anywhere you want, just point out on them in the url prefs in the client path (but yes, in my example you just put them to REXX: directory). In other words:

mailto

Resized Image

http

Resized Image

But as i say, yam script will not works on current-public launch-handler, you need to parse incoming buffer a bit different (ask someone to do it for you if you need it). The purpose of mail scripts just to avoid running new instances of mail client if it already running, but instead just spawn "write me" window. Without scripts all will works too, just for every "mailto" you do, you will have new instance off mail client. Same for odyssey script: its just to open links in the new tabs, to avoid running all the time that 60mb binary (and not forget to setup the same for https/file/www in url prefs, while www and file can be skipped, https links also common enough as http ones, so http/https settings must).

Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@All

New beta:
http://www.sendspace.com/file/mwz3l2

- minor fix in about on which javier point out in revious posts

- fixed long-standing and problematic bug : locale agnostic accept-language headers. Before (since and include first 1.9 port), it was just all the time EN, so, all the locale-agnosic sites you visit always was in English by default.

Now, depends on what your prefs:locale settings is, odyssey will produce correct accept-language header , as it was on morphos since 1.2 version. The differences now is that aos4 native code is used where need it, list of counties are bigger (~50 instead of ~15) and it works. The good tests that it works can be http://facebook.com. Or, if you are interesting in more low-level tests, then: http://www.reliply.org/tools/requestheaders.php

Thanks go to Joerg for help with

Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
Thanks for the latest beta.
I find that when running it from the OdysseyLauncher icon, the splash screen appears, but the program does not start. It starts from the Odyssey icon and build the fonts OK.

AmigaOne X1000.
Radeon RX550

http://www.tinylife.org.uk/
Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@ddni
Yep, you are right, there was some debug-code left which cause that, so another beta (004) then:

http://www.sendspace.com/file/r51ivn

Check this out plz.

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: fastfix for 1.23
Just can't stay away
Just can't stay away


See User information
@kas1e

Works now. Thank you.

Go to top
Re: fastfix for 1.23
Home away from home
Home away from home


See User information
@kas1e

I never noticed this accept-language issue with Odyssey (just verified and of course it works in Joerg's OWB and NetSurf too)
Now most of my visited pages are in italian, pretty cool

BTW: You again forgot to update the codeset

Well done

Go to top

  Register To Post
« 1 ... 10 11 12 (13) 14 15 16 »

 




Currently Active Users Viewing This Thread: 2 ( 0 members and 2 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project