Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
131 user(s) are online (76 user(s) are browsing Forums)

Members: 0
Guests: 131

more...

Headlines

Forum Index


Board index » All Posts (jabirulo)




Re: Converting catalog in UTF-8 code
Just can't stay away
Just can't stay away


@Phantom
you can use 'iconv' tool (http://www.os4depot.net/share/develop ... library/misc/libiconv.lha [libiconv-1.11/src/iconv]) it translates from/to varios codesets (iso_8859-15 to utf-8)

ex.: iconv -f iso_8859-15 -t utf-8 file_to_translate >RAM:translated.txt


Maybe it can do "on the fly" translation ex.: iconv -f iso_8859-15 -t utf-8 <óöÜñÑ
and will show/output translated to UTF-8

Go to top


Re: fastfix for 1.23
Just can't stay away
Just can't stay away


@MickJT

AFAIK they are speaking about.HTML and error.HTML files, not the About window (part of MUI code), but I'd be nice to remove such double 'HTTP' at the bottom os mos/os4 web support.

Go to top


Re: fastfix for 1.23
Just can't stay away
Just can't stay away


@kas1e

Using Ranger/SysMon Is still see OWB.1 as ARexx port too here. Seems 'Odyssey' portname didn't change inside sources.

BTW changed to MediaTheme icons/images to use TBImages: will send'em NOW!!

Go to top


Re: need to get my LaserJet 2600n working via my network router
Just can't stay away
Just can't stay away


@Raziel

Maybe crashes are due to low ram on your printer (mine has 96MB) ¿:-/

Did you try with RAW protocol instead of LPR?

LPR.DEVICE documentation
5. What configuration options should you choose?
..
   
LPR protocol:

   + 
Supported by most line printers and print servers
   
+ Print job status can be queried once the data has
     been queued
   
Comparatively safe and secure
   
May need authentication/authorization
   
Considerable overhead
   
Entire data to be printed must be spooled

   Raw socket protocol
:

   + 
Low overhead
   
No spooling necessary
   
No authentication/authorization necessary
   
No security
   
Not supported by all printers

If your Amiga is attached to a printer or print server that supports the raw
protocol
you should use itIt is the most efficient way to move data to the
printer
Typicallyall Hewlett-Packard "JetDirect" cards will support the raw
protocol
Printing will start as soon as the printer has enough data to
process
.

If 
your printer or print server does not support the raw protocolyou should
choose the LPR protocol 
and think carefully about how you want the data to be
spooled
You can either choose to keep the data in a file or you can try to
buffer all the data in memory
Putting the data into a file is slower than
buffering it in memory
but then you might have more disk space to spare than
your system has memory installed
Note that if your disk fills up (if you
choose to spool the data to a file
) or you run out of memory (if you choose to
buffer all the data in memory
), printing will eventually be abortedUnlike
the raw protocol
printing using the LPR protocol will not start until all the
data to be printed has been sent
.

The "lpr.device" also has a problem in LPR protocol modeonce the data is
being printed
you must wait for the print job to finishYou cannot reopen
"lpr.device" and send more data until the LPR print job has been processed.
..

Go to top


Re: need to get my LaserJet 2600n working via my network router
Just can't stay away
Just can't stay away


@328gts

I'm using here an old HP Lasertjet2300n without problem:

Printer prefs:
-HPLaserjet4 (driver)
-Always init printer ON
-Port device: LPR.DEVICE
-Unit: 0

Created in ENVARC: 'lpr.device' (plain text file) with following data (1 line):
HOST=192.168.1.230 RAW

The IP address is the one of the printer (I set it to manula IP settings)
lpr.device V44.6 (14-02-2006) from os4depot

Go to top


Re: Odyssey 1.23 progress
Just can't stay away
Just can't stay away


@kas1e
Maybe I'm wrong, but OS4.1 SDK headers are:
<pre>...
struct DeathMessage
{
struct Message dm_Msg; /* Embedded exec message structure. */
int32 dm_ReturnCode; /* Primary process return code, set by DOS */
int32 dm_Result2; /* The value returned from IoErr(),set by DOS */
};
...</pre>
And as it has/points to struct Message:
<pre>/****** Message *****************************************************/

struct Message
{
struct Node mn_Node;
struct MsgPort * mn_ReplyPort; /* message reply port */
uint16 mn_Length; /* total message length, in bytes,
(include the size of the Message
structure in the length) */
};

/****************************************************************************/</pre>
It could be something like:
startup_msg->tsm_Msg.<b>dm_Msg.</b>nm_Node.ln_Type = NT_MESSAGE;

Go to top


Re: Odyssey 1.23 progress
Just can't stay away
Just can't stay away


Searching in google I got:

http://code.google.com/p/os4sdl/sourc ... aos4/SDL_os4timer.c2?r=30

http://code.google.com/p/os4sdl/sourc ... gaos4/SDL_os4timer.c?r=30
<pre>..
void __os4timer_startup(void)
{
struct ExecBase *sysbase = (struct ExecBase*) IExec->Data.LibBase;
// struct ExecBase *sysbase = (struct ExecBase *)4L;
// IExec=sysbase->MainInterface;
..</pre>
So maybe replacing/#ifdef with such code will solve it.

Go to top


Re: Odyssey 1.23 progress
Just can't stay away
Just can't stay away


@kas1e
If you 'RUN OWB/Odyssey' from shell does it crashes too?

Not sure, but maybe AmiDock runs dockies/tools on its ownAmiDock process/task, check it with Ranger.

Maybe some missing shell/cli start tag in OWB/Odyssey?

Go to top


Re: OpenAmiga.org: the future of the project
Just can't stay away
Just can't stay away


Hi, I see openamiga a nice place to upload my little tools/dockies to openamiga so people can see/(ab)use/fix source code

Go to top


Re: Odyssey 1.23 progress
Just can't stay away
Just can't stay away


@kas1e

And what does MOS Odyssey debug_output/show with:

1 test: with my fix disabled (i.e. original Fab's code)


Maybe we can "see" if there is some difference between OS4 & MOS Odyssey (apart of crashing/not_crashing/working/not_working).

Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


@tomsoniq

Forget about mark+copy seems (logical) doesn't work on read only strings, so leave'em so. Don't know why didn't work for me before, now works fine. Sorry

Look at the GENRE gadget frame it looks recessed, meanwhile all others frames are "raised".

Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


@tomsoniq

Great. Just to add to your ToDO list:
-Info window, all strings be able to mark and copy.
-Info string gadgets all the same frame (like the one used in Genre) if possible.


Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


@tomsoniq

Working fine PLAYLIST tooltype with V3.14 r233!!!!

THX for so fast fix!!!

Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


@tomsoniq
Ok, no problem thx.

Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


Trying V3.14
Does PLAYLIST tooltype work with new playlist (.pls) format?
My file.pls is:
[playlist]
NumberOfEntries=222
File1=Utilidades:MUSICA/MP3/KingsAndQueens.mp3
File2=Utilidades:MUSICA/MP3/ThankYou.mp3
File3=Utilidades:MUSICA/MP3/PerlasEnsangrentadas.mp3
..
File221=Utilidades:MUSICA/MP3/Itsasoa.mp3
File222=Utilidades:MUSICA/MP3/NeguaJoanDaTa.mp3
Version=2

And if I use it via tooltypes:
PLAYLIST=<path>/file.pls

It shows a DOS requester asking for "File1=Utili..." and so with the whole playlist

Loading such file from other gagdets (menu->Open... / Load List / ..) works fine.

Go to top


Re: Ringhio Notification doesn't appear correctly
Just can't stay away
Just can't stay away


Default mode seems to use GUI prefs Gadgets->General 'Background texture', maybe you have something wrong?

Go to top


Re: AmigaAMP 3.13 released!
Just can't stay away
Just can't stay away


When trying to load from tooltypes my "renewed" playlist (pls format) it tries to load "File1=..." and so with all entries, but IMO parser should remove 'FileX=' string.
Anyone has the same problem?
TIA

Go to top


Re: Filer: file types
Just can't stay away
Just can't stay away


@gerograph
HTML
Name: WWW
Types: htm, html
Launcher: C:URLopen FILE {f}
Editor: APPDIR:NotePad {f}

If you have URL prefs configured it should pop up a window asking which browser do you want to use.


For IMAGES I don't have one defined, but something like this may work:
IMAGES
Name: PICS
Types: gif, jpg, jpeg, iff, bmp, png
Launcher: APPDIR:LoView {f}
Editor:

Go to top


Re: Reaction : How to specify position of a window with precision
Just can't stay away
Just can't stay away



Go to top


Re: Reaction : How to specify position of a window with precision
Just can't stay away
Just can't stay away


@zzd10h

Did you try if WOS_CENTERMOUSE suits your needs?

If not, try:
if( (screen = IIntuition->LockPubScreen(NULL)) )
{
top_border = screen->WBorTop + screen->Font->ta_YSize + 1;

IIntuition->UnlockPubScreen(NULL,screen);
}

copy&paste from here: http://wiki.amigaos.net/index.php/Intuition_Windows

and the use 'WA_Top, top_border'


Edited by jabirulo on 2013/11/26 20:23:55
Edited by jabirulo on 2013/11/26 20:24:59
Go to top



TopTop
« 1 ... 40 41 42 (43) 44 45 46 ... 50 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project