Re: KDE 3.2.1 broken

2004-03-06 Thread Tom Badran
On Saturday 06 Mar 2004 10:50, Hendrik Sattler wrote:
> Am Samstag, 6. März 2004 11:10 schrieb Michi:
> > here are some KDE3.2.1 packages in SID now (e.g. kdelibs4 and kdebase)
>
> Strange, kde.org doesn't mention a KDE-3.2.1

The packages are marked something like 3.2.0-0pre1v1 which is quite a common 
debian naming scheme when upstream cvs patches are included from an expected 
near future release.

Tom




Re: KHTMLPart compilation failed

2004-02-19 Thread Tom Badran
On Thu 19 February 2004 18:52, [EMAIL PROTECTED] wrote:
> I want to upgrade a working kde3.14 application to kde3.2, but it
> fails compiling a KHTMLPart object of my view widget. To debug it, I
> have just changed my object with the following code (provided as part
> of an example found at the kde3.2 api reference):
>
> KURL url = "http://www.kde.org";;
> KHTMLPart *w = new KHTMLPart();
>
> but it also fails giving me the same output:
>
> myfile.o (.text +0x538)
> myfile.cpp: undefined reference to 'KHTMLPart(int, QWidget *, char
> const *, QObject *, char const *, KHTMLPart::GUIProfile)'

Should you not be using ktrader to request an object that can handle 
mimetype text/html and provides a kpart interface? This would give you 
a khtmlpart but if, in future there were multiple providers it would 
give you whichever is 'best'.

This code should do what you want:

KTrader::OfferList offers = KTrader::self()->query("text/html", 
"'KParts/ReadOnlyPart' in 
ServiceTypes");
 
KLibFactory *factory = 0;
// in theory, we only care about the first one.. but let's try all
// offers just in case the first can't be loaded for some reason
KTrader::OfferList::Iterator it(offers.begin());
for( ; it != offers.end(); ++it) {
KService::Ptr ptr = (*it);

// we now know that our offer can handle HTML and is a part.
// since it is a part, it must also have a library... let's try 
to
// load that now
factory = KLibLoader::self()->factory( ptr->library() );
if (factory) {
m_html = static_cast(factory->create(this, 
  ptr->name(), "KParts::ReadOnlyPart"));
break;
}
}

For reference it can be found at:
http://phil.freehackers.org/kde/kpart-techno/kpart-techno.html

Hope this helps




Re: k3b with ATAPI cdrom

2004-01-13 Thread Tom Badran
On Monday 12 January 2004 19:37, Todd Charron wrote:
> On January 12, 2004 08:32 am, Tom Badran wrote:
> > When calling cdrecord, k3b only passes dev=/dev/hdc instead of the
> > required dev=ATAPI:/dev/hdc and i cant find any way of changing this.
> >
> > Anyone know how?
>
> Under Settings -> Configure K3B -> Programs -> User Paramters you can tell
> K3B what options you want passed to cdrecord.

Excellent, it puts those after the where it adds a dev= parameter so this 
works great.

Tom




k3b with ATAPI cdrom

2004-01-12 Thread Tom Badran
When calling cdrecord, k3b only passes dev=/dev/hdc instead of the required 
dev=ATAPI:/dev/hdc and i cant find any way of changing this.

Anyone know how?

Thanks

Tom




Re: Storage, KDE Traffic 66, (2)

2003-10-07 Thread Tom Badran
On Tuesday 07 October 2003 17:26, Bob Tilley (AT&T) wrote:
> Warning: This concept has not been investigated for feasibility.
>
> In response to the Storage (fom Gnome) concept, is it possible to
> "connect" a Linux file system to the Google search engine?

In theory yes, however you would just be representing the results in a 
different manner. And as there are potentially millions of results from a 
google query youd have to adapt the results in some manner to make them more 
presentable. I dont really see the point as 99% of the results you get are 
just html files.

> You would be able to enter a search: "music by Beethoven" or "messages from
> Donna".  These queries would be passed of to a mini-Google, the universe of
> which would be your filesystem.  It would then search among your music or
> your email, and deliver the results?

This is possible and has already exists in a variety of  forms. The 
implementation problems however are considerable. If you do a full such for 
each query then the time to results could be considerable. Or alternatively, 
you have to keep some indexed database of meta data, which means having both 
a data base layer and the meta data itself. For some files like mp3s they 
already contain metadata, so that isnt a huge issue. However you would have 
to implement a metadata schema that covers all types of files (how can you do 
a search for "images of a tree" for instance without very very complex image 
analysis and AI object recognition, this is incredibly difficult and 
something i have worked on in the past).

> I know this is a very  basic question but much of the concept of "Storage
> for KDE" is beyond me at the moment.

Most of the hype about storage is its query mechanism rather than anything 
else. It seems just to be a keyword search which picks up on the context of a 
word in the query as well as the keyword itself. i.e it interprets "image of" 
as "files of type image/*" rather than "files containing the word image".

Tom

-- 
 ^__^| Tom Badran
 (oo)\__ | Imperial College
(__)\   )\/\ | Department of Computing
||w || ---
|| ||| Using Debian SID


pgp5ht3sCgE5V.pgp
Description: signature


Re: kde menu - software entries

2003-10-06 Thread Tom Badran
On Monday 06 October 2003 13:37, Martin Wegmann wrote:
> Hello,
>
> I cleaned up my kde menu a few days ago but I was too good ;-) now several
> entries like Office (OO+Koffice) dissappeared totaly.
> How do I obtain these entries again? Adding own subfolders and inserting
> packages with the appropriate command? or is there a more "sophisticated"
> way?
> I think I saw a tool somewhere/sometimes which searched for all installed
> packages and displayed them - the user could add them afterwards to the
> kde-menu.

kappfinder is good for pulling menus for non kde applications. Also, if youve 
accidentially deleted something, go into ~/.kde/share/applnk/ and remove the 
related files there. Run kbuildsycoca and it will resynchronise with the 
system menu.

Hope this helps.

Tom

-- 
 ^__^| Tom Badran
 (oo)\__ | Imperial College
(__)\   )\/\ | Department of Computing
||w || ---
|| ||| Using Debian SID

Linux 2.6.0-test5-mm4 #6 Mon Sep 22 12:50:10 BST 2003 i686 GNU/Linux
 14:21:44 up 1 day, 33 min,  1 user,  load average: 7.30, 7.09, 7.02


pgp2G2kiJdjzx.pgp
Description: signature


Kopete is impressive.. .

2003-09-25 Thread Tom Badran
I just installed kopete for the first time since about last november and all i 
can say is _wow_, i cant believe how much it has improved in that time, in 
fact ive even removed gaim now in favor of kopete.

Just wanted to share ;)

Tom

-- 
 ^__^| Tom Badran
 (oo)\__ | Imperial College
(__)\   )\/\ | Department of Computing
||w || ---
|| ||| Using Debian SID

Linux 2.6.0-test5-mm4 #6 Mon Sep 22 12:50:10 BST 2003 i686 GNU/Linux


pgpjIMF8nhBQ3.pgp
Description: signature


Re: Pinentry

2003-09-09 Thread Tom Badran
On Monday 08 Sep 2003 16:03, Hendrik Sattler wrote:
> No. But maybe try these packages, I built long ago:
>   http://ma2geo.mathematik.uni-karlsruhe.de/public-debian/
> If you only use the sarge line, nothing else but the openPGP packages are
> added. It works with current debian testing and should also work with
> current unstable.

Ta, those packages work fine.

Tom

-- 
 ^__^        | Tom Badran
 (oo)\__ | Imperial College
(__)\   )\/\ | Department of Computing
||w || ---
|| ||| Using Debian SID

Linux 2.6.0-test4 #4 Fri Sep 5 14:13:40 BST 2003 i686 GNU/Linux


pgp76GesDJPaU.pgp
Description: signature


Pinentry

2003-09-08 Thread Tom Badran
Is it me or are the pinentry (specifically gtk) programs not in debian sid? 
Does this mean its impossible to set up a working kmail with gpg/mime just 
using unstable packages?

Thanks

Tom

-- 
 ^__^| Tom Badran
 (oo)\__ | Imperial College
(__)\   )\/\ | Department of Computing
||w || ---
|| ||| Using Debian SID

Linux 2.6.0-test4 #4 Fri Sep 5 14:13:40 BST 2003 i686 GNU/Linux




Re: KDE Developers Conference ("Kastle")

2003-07-29 Thread Tom Badran
On Monday 28 Jul 2003 23:19, Chris Cheney wrote:
> Too bad US flights to Europe are so expensive. :\  Appears to start ~
> $1000 USD.

I fly London to New York every few months and that is about £300 ($500) for a 
return. 

Tom

-- 
 ^__^       Tom Badran
 (oo)\__Imperial College
(__)\   )\/\
||w |   
|| ||   Using Debian SID


pgpjUJfPv1ljk.pgp
Description: signature


Re: ok in gnome - big in kde

2003-06-05 Thread Tom Badran
On Thursday 05 Jun 2003 12:45 pm, Mario wrote:
> Morning
>
> I have got one badly problem with fonts in mozilla's menu.
> J had used gnome-font-properties to set font size for 8pcx and it's all
> ok buttill restart KDE. After restart fonts are again 12pcx and i
> need... run gnome-font-properties and click "CLOSE" button only:) now
> it's working great, fonts are small till next kde restart:)
> Direct reconfigurations in .gtkrc* gives me similar effects.
> In gnome i haven't got this problem.
> Someone know what's wrong in SID and how repair this?
> Many thanks for help.

To get your gnome settings under kde you need to run gnome-settings-daemon

Put it in your /usr/bin/startkde script if you want this for all users.

Tom

-- 
Tom Badran
Imperial College


pgpAIuzXDuvVJ.pgp
Description: signature


Konqueror passing URL's to applications

2003-05-12 Thread Tom Badran
Is it possible to make konqueror pass urls to applications rather than 
downloading the file and then passing the temp file location? Specifically i 
want to pass http:// to xmms for ogg vorbis files, and to mplayer for mpeg 
files.

Thanks

Tom




Re: Problem with printing in konqueror?

2003-05-09 Thread Tom Badran
> On Friday 09 May 2003 4:51 pm, Jim Mahood wrote:
> > Are you sure it's just konqueror, or could it be printing something with
> > lots of images that causes your problem?  Try some other apps and see.
>
> Ok, kmail with plain text and html messages with/without images is ok, so i
> guess its not a problem with khtml. Kword is fine for documents containing
> images, so i guess its not a problem with the image writer.
>
> Dont know if this is an upstream or debian problem or if anyone can
> reproduce.
>
> I forgot to mention im using cups btw, and all of this is printing to files
> (pdf and postscript).

And its not konqueror hanging, konqueror crashes and the print dialog thing
just sits there saying "printing page ... ", i think my first email didnt
specify that properly ;)

Tom




Re: Problem with printing in konqueror?

2003-05-09 Thread Tom Badran
On Friday 09 May 2003 4:51 pm, Jim Mahood wrote:
> Are you sure it's just konqueror, or could it be printing something with
> lots of images that causes your problem?  Try some other apps and see.

Ok, kmail with plain text and html messages with/without images is ok, so i 
guess its not a problem with khtml. Kword is fine for documents containing 
images, so i guess its not a problem with the image writer. 

Dont know if this is an upstream or debian problem or if anyone can reproduce. 

I forgot to mention im using cups btw, and all of this is printing to files 
(pdf and postscript). 

Tom




Problem with printing in konqueror?

2003-05-09 Thread Tom Badran
I dont know if this is know, but when i print from konqueror it just hangs. 
Works in kmail though. Cant specify when this started as i havent tried to 
print for ages until yesterday.

kde in unstable, updated daily

Tom




QT Cursors

2003-04-22 Thread Tom Badran
Is there any chance we can have the qt3 libraries in Sid built with that 
#define that forces it to not override the xcursors (no rush)? 

I don't know how this works with regard to xfree86 4.2 which i believe is 
still in Sid, but I'm sure many are now using 4.3 and the new cursors are 
really great.

Thanks for the great kde builds btw

Tom



pgpaGqWXgpXpS.pgp
Description: signature


Re: KDE media players

2003-04-16 Thread Tom Badran
On Wednesday 16 Apr 2003 10:22 am, Frank Van Damme wrote:
> On Wednesday 16 April 2003 05:59, Magnus von Koeller wrote:
> > Well, arts is a sound server. That means there can be multiple
> > clients, all sending audio data to the server. The server mixes these
> > multiple sound streams and plays them over your sound card.

Which is already becoming obsolete due to the alsa drivers supporting hardware 
mixers on most cards that have them, and also will be becoming the default 
sound system in the 2.6 kernel.

Tom


pgp60ic70FbLv.pgp
Description: signature


Request for package .. please ralf ;)

2003-01-28 Thread Tom Badran
I cant for the life of me get the latest liquid to build (using your woody 
debs btw). Any chance you could add a package for it.

Thanks

Tom

pgpyl6onpw8Fj.pgp
Description: signature


Re: Ralf's sid packages : only default font is available

2003-01-22 Thread Tom Badran
On Wednesday 22 Jan 2003 9:51 pm, Ralf Nolden wrote:
> You are using fontconfig on unstable. That is the root cause of the
> problem. My boss has had the same and I told him to install woody and
> XFree4.2.1 for woody + my packages to have a stable system that allows you
> to work and not play with unstable packages all day :-)).

Im using unstable fontconfig without problems. I also accidentally upgraded 
all the aegypten related stuff to those versions in unstable (libgcrypt etc) 
and it still works ;). Hopefully it wont be _too_ much longer until we see kde 
3.1 in sid and not have to use woody versions  ;) (sid ones are missing all 
the great apps and dont seem to work as well)

Great work btw

Tom

pgphYBHoLBXuf.pgp
Description: signature


Re: New packages & changes

2003-01-21 Thread Tom Badran
On Tuesday 21 Jan 2003 9:24 pm, Ralf Nolden wrote:
> 1. pinentry updated - pinentry-qt had a problem with setting the DISPLAY
> variable, Steffen Hansen sent us a patch that I merged in. The .orig.tar.gz
> from the sources is the same, the diff.gz contains the patch as a separate
> diff file and has, after retrieving and applying the diff.gz with apt-get
> source, the patch applied. Please test pinentry-qt if that works now for
> you.

Just moved from pinentry-gtk to pinenty-qt, and assuming this mail comes 
though like my others to this list all is working fine.

Tom

pgpmFID04w5k9.pgp
Description: signature


Re: kmail openpgp plugin problems [FIXED]

2003-01-19 Thread Tom Badran
Whats needed is for the GPG_AGENT_INFO environment variable to be set. As i 
was loading gpg-agent with a shell script nothing else was seeing this 
variable. The only way i can start gpg-agent properly is to put it into my 
/usr/bin/startkde script. Its in my xsession but that doesnt do anything, how 
are .xsession files supposed to work?

Tom




Re: kmail openpgp plugin problems

2003-01-19 Thread Tom Badran
On Saturday 18 Jan 2003 10:14 pm, Hendrik Sattler wrote:
> Am Samstag, 18. Januar 2003 22:30 schrieb Tom Badran:
> > Ok, i now have your versions of the above package and all the packages in
> > the aegyption directory on ktown, and rebooted to make sure i get new
> > clean gpg-agent etc running. I still get exactly the same errors about
> > not having a passphrase.
>
> Question: Your private key DOES have a passphrase, doesn't it? You might
> take a look at the goals of the aegypten project and thus keys without a
> passphrase might not be accepted.

Yes it does.

Tom




Re: kmail openpgp plugin problems

2003-01-18 Thread Tom Badran
On Saturday 18 Jan 2003 8:27 pm, Ralf Nolden wrote:
> I've updated the packages again due to that Matze found out that apparently
> it doesn't work with libgcrypt-1.1.11 but requires 1.1.10. Also please make
> sure that you *don't*  use any of the original packages from unstable in
> conjunction with the aegypten stuff, but my packages. That makes it easier
> to track down any problems. Especially those are:
>
> libgcrypt
> cryptplug
> gpgme

Ok, i now have your versions of the above package and all the packages in the 
aegyption directory on ktown, and rebooted to make sure i get new clean 
gpg-agent etc running. I still get exactly the same errors about not having a 
passphrase.

Any more ideas? Would you like to see any of my configs/.gnupg directory 
structure?

Tom




kmail openpgp plugin problems

2003-01-18 Thread Tom Badran
Firstly, i set up everything exactly as the aegypten projects website 
describes except using pinentry-gtk instead of qt as reccomended by ralf, and 
btw im using ralfs debs. I also have been using the same gpg setup for a long 
time without problems from the command line.

Strange problem, i can encrypt emails fine, im not asked for a password and 
all works well, to myself and to others. However i can sign messages, i get a 
pop up box saying :

This message could not be signed!
The Crypto Plug-In '/usr/lib/cryptplug/gpgme-openpgp.so' reported the 
following details:
#19 : No Passphrase
Your configuration might be invalid or the Plug-In damaged.
Please contact your system administrator.

Also, when recieving an encrypted message i get:

Cannot decrypt message.
Error: No passphrase.
Content could *not* be decrypted.
reason:
Crypto Plug-In /usr/lib/cryptplug/gpgme-openpgp.so could not decrypt the 
data.
proposal:
Error: No passphrase.
End of encrypted message

Like i say, it works encrypting, but not decrypting or signing, and im never 
asked for my passphrase. I am definately using the plugin and not the inline 
version (i activated the plugin and in the new message dialog it now defaults 
to "OpenPGP (plugin)".

Any Ideas?

Thanks

Tom




Re: Debian Woody packagesfor KDE 3.1 + Ägypten

2003-01-17 Thread Tom Badran
On Friday 17 Jan 2003 2:09 pm, you wrote:
> On Freitag, 17. Januar 2003 13:47, Tom Badran wrote:
> > On Friday 17 Jan 2003 12:14 pm, Magnus von Koeller wrote:
> > > On Friday 17 January 2003 12:15, Marc Schiffbauer wrote:
> > > > And what is the difference between the kmail builtin GnuPG support
> > > > and the plugin version?
> >
> > How do you setup the plugin version?
>
> 
>   http://kmail.kde.org/kmail-pgpmime-howto.html
>
>   http://www.gnupg.org/aegypten/devleopment.en.html
> 

Thankyou, works nicely. Great kde packages btw, are they the basis for the 
ones going into sid once qt gets rebuilt?

Tom




Re: Debian Woody packagesfor KDE 3.1 + Ägypten

2003-01-17 Thread Tom Badran
On Friday 17 Jan 2003 12:14 pm, Magnus von Koeller wrote:
> On Friday 17 January 2003 12:15, Marc Schiffbauer wrote:
> > And what is the difference between the kmail builtin GnuPG support
> > and the plugin version?

How do you setup the plugin version?

Tom




Re: KMail Question RE: Opening Pictures

2002-12-20 Thread Tom Badran
On Friday 20 Dec 2002 11:57 am, Robert Tilley wrote:
> When I double-click a jpeg picture in KMail, a dialog pops up asking if I
> want to Save it, Open it, or Cancel.
>
> Is there a way to set a preference so that all .jpg extensions are
> automatically open with Kuickshow, avoiding the dialog?

KMail is designed so it can never be set to automatically open attachments for 
security reason, regardless of their type. However it _should_ be inlining 
pictures where they are included as attachments. You may need to set to view 
as html for this (if you turn of load external references, this should not 
cause any security concern).

Tom




Re: Miscellaneous issues

2002-12-09 Thread Tom Badran
On Monday 09 Dec 2002 7:49 pm, David Bishop wrote:
> >  Printing m's.  I *think* this is a KWord issue.  When printing
> >  to my HP LaserJet 1200, the rightspace on m's is missing, so
> >  every m runs into the next character.  Printing from kedit (f.e.)
> >  doesn't show this problem.  Anyone else seeing this?
>
> Using the same font? Any font?  What happens if you print to a pdf, then
> use kprinter to print the pdf?

This problem is deinately a kword only problem. You will probably find it 
works well with either postscript or truetype fonts, and badly with the other 
(i forget which way round). Printing to file makes no difference as the same 
postscript is still generated. Kword has been plagued by problems with its 
printing system, most of which have been cleared up. If your not using the 
latest version it would definately be worth upgrading. I personally have 
always found openoffice.org to be better (albeit slower and less kde 
integrated) than koffice, in terms of features and reliability. Although it 
does need some LD_PRELOAD= and interface font changes before it works well 
for me.

Tom




Re: kaplan

2002-12-08 Thread Tom Badran
On Monday 09 Dec 2002 12:00 am, Alain Tesio wrote:
> No idea how to launch it, but it has problems displaying the output
> message, you can see them with "strace -f -s200 -ewrite kaplan"
> Maybe it's a program used by other applications and you're not supposed to
> run ?

Its supposed to be a programming for embedding knode/kmail/adressbook/kalendar 
into one interface, you can see screenshots of it at dot.kde.org but i cant 
find any info on how to 'use' it.

Tom




kaplan

2002-12-08 Thread Tom Badran
Using karolinas 3.1 debs, is it possible to get kaplan to do anything? When i 
run it it just returns to the konsole, and --help gives no indication that 
there are any options i can pass to it. Ive seen some screen shots of it 
running and it seems quite nice, any ideas?

Thanks

Tom




Re: kde 3 in woody - why so hard

2002-12-05 Thread Tom Badran
On Thursday 05 Dec 2002 3:48 pm, Stephen Birch wrote:
> I guess I don't get this.
>
> The advantage of debian over all other distributions is meant to be the
> ease of upgrades. Indeed, it is VERY well done, the apt mechanism is a
> beautiful piece of software engineering.
>
> So how come kde isn't trivial to upgrade?

It is. kde2 versions were trivial to upgrade, and when kde3 is in debian that 
will be a trivial upgrade too. KDE3 isnt in woody, so how can you possibly 
expect it to be easy?

> In my new user naivety, I would have thought you could just add the kde.org
> site to sources.list and apt-update/apt-upgrade.
>
> But I see a number of postings about all kinds of complicated issues.
>
> I gave it a try myself, and ended up with a horrible mess.
>
> What gives?

Like i said, kde3 isnt in woody, its not even in unstable yet. Many people use 
it on woody and unstable without any problems. Im personally running kde 3.1 
on unstable here and have never had any trouble with kde, bar a missing 
package which karolina fixed promptly once i had notified her.

A package system is only as good as the packages available for it. In this 
respect debian beats the hell out of every other distro ive ever uses. Debian 
developers go to great lengths to produce good quality packages with sensible 
and acurate dependency information. I can apt-get distupgrade unstable every 
day without a hitch hardly ever. When i was trying to keep up with mandrake 
cooker (their equivalent of unstable) i was constantly having to force 
package installs as the dependency information was always being broken. Ive 
also never had a succesful upgrade between distribution versions of any 
mandrake or redhat release, but with debian it is simple.

If your using packages not provided by debian developers as part of debian, 
you cant seriously expect there not to be issues, however most of the issues 
are incredibly simple to resolve, and people on these lists will go out of 
their way to help you.

Tom




Missing libkonq-data

2002-12-03 Thread Tom Badran
Karloina, your latest packages are missing this one :)
 
Please fix, and thanks

Tom




Re: new shakti.ath.cx mirror structure

2002-11-25 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Monday 25 Nov 2002 7:42 pm, Karolina Lindqvist wrote:
> måndagen den 25 november 2002 19.21 skrev James Tappin:
> > According to kde-devel, the 3.1-final tarballs were released to packagers
> > today. So barring fatal problems 3.1 should be out RSN.
>
> I can't access them, as I could not access kde 3.1 rc4, or I don't know
> where they are publicly available.

They are not publicly available, only package mantainers have them as there 
might still be bug fixes (very very grave bugs only) that go in.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE94oqnXCpWOla2mCcRAr2wAJ9unDawFop4cfW10BXQ84FwEuJzlQCfaLh3
rpgFSrlGR26//l0oclnllhY=
=/WYw
-END PGP SIGNATURE-




Re: Fonts problem

2002-11-24 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 24 Nov 2002 1:58 pm, Julien Louis wrote:
> Hi,
>
> I have a problem with applcations like emacs, gkrellm and other
> applications using gtk. Fonts are too big (ex:
> http://ptitlouis.dyndns.org/capture1.png)
> How can reduce my font size ?

In your XF86Config-4 put the 75dpi font lines before the 100dpi ones. Also 
edit your (if you use kdm) /etc/kde3/kdm/Xservers so the th -dpi 100 option 
becoms -dpi 75

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE94PNrXCpWOla2mCcRAjWIAKCKOfO45z+tD/BrYZ6yT9tHqh2WoQCeMSer
cmsBheWdLzOzAINZcwAejVw=
=Hbr6
-END PGP SIGNATURE-




Re: Any debs for kolab kde client ?

2002-11-01 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 01 Nov 2002 11:38 am, Christian Surlykke wrote:
> Howdy
>
> Anybody know of  any debs for the kolab kde client (kroupware project)
> anywhere?

Its under heavy development so i doubt anyone would have bothered, there hasnt 
been a release of it yet, wait till kde 3.2 :)

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE9wn6qXCpWOla2mCcRAsdVAJ4lfLCF4J7Jx7dj7vXKkZCpV/yV2wCfXwK7
zMYM/nKAnPmSpiBQ2QiugZI=
=Ngnc
-END PGP SIGNATURE-




Re: Konqueror VS Galeon -- Rendering???

2002-10-29 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> On Friday 25 October 2002 08:42 am, Bob Tilley wrote:
> > I run Debian unstable with KDE 3.1b2 from shakti.cx and upgrade nightly.
> >
> > Fonts are clearer, cleaner, and printed levelly in Galeon while in
> > Konqueror text can be badly rendered and seem like a sample of messy
> > block printing. In Konqueror any text, especially titles, is often
> > rendered so that the text is fuzzy and each letter is at a different
> > height on the line.  Such uneven lettering is most unattractive.

I find the exact opposite, kde and konqueror render my fonts beautifully (as 
does openoffice with a bit of hacking) and mozilla/galeon make them horribly 
ugly.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE9vwGFXCpWOla2mCcRAmtWAKC7n+Y95hBt5/q21COgGc1n2cltugCaA+9Y
ARjKNC5J4sQ0z0Aqdbi6z5k=
=hj6L
-END PGP SIGNATURE-




Gnome2 in KDM menu

2002-10-29 Thread Tom Badran
Im using kde 3.1b2 (karolinas packages) and wish to add gnome 2 to the list of 
available session in KDM, how can i do this?

Thanks

Tom

-- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100




Re: Browser Rendering Uncovered

2002-10-27 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 27 Oct 2002 4:53 am, Rob Weir wrote:
> Are you sure?
> /usr/share/doc/libfreetype6/changelog.Debian.gz:
> freetype (2.1.2-8) unstable; urgency=low

Current version is 2.1.2-10 and it has been turned back on.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE9u98rXCpWOla2mCcRAjpNAJwKtmmvlJHoY32Sy8JlXBzz+TppFwCgpmuy
7O6ffhpSizM3JhoVS0kKRxc=
=pk9q
-END PGP SIGNATURE-




Re: Problem with file associations in 3.1beta2

2002-10-16 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 16 Oct 2002 8:00 am, Christian Surlykke wrote:
> Hi
>
> I'm running Karolina's 3.1beta2 from the segfault.info mirror.
> Whenever i click a file in the file manager i get a popup box saying that
> the file type is associated with konqueror.
> For example if I click a java source file, it says:
>
>   Error Konqueror:
>   There appears to be a configuration error. You have associated Konqueror
>   with text/x-java, but it can't handle this file type.
>
> I have the text/x-java file type set to be opened by gnuclient. I've tried
> setting kate as the viewing app instead, but to no avail.
>
> Any hints anybody?

I have exactly the same problem, even with a brand new user account. You can 
still right click and use the 'open with'  option though.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.0 (GNU/Linux)

iD8DBQE9rRoXXCpWOla2mCcRAv9iAJ949vtV2brOp7TyDZ1fqrWj0Z6pagCcDj7U
HxbuPOJeszEw+GWY75C9mCU=
=SpWL
-END PGP SIGNATURE-




Re: looking for MP3-PLAYER FOR KDE

2002-10-09 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 09 Oct 2002 8:21 pm, bob parker wrote:
> On Thu, 10 Oct 2002 01:58, Nikhil Goel wrote:
> > Noatun is your friend..
>
> Just installed it off the Woody CDs
> All it does on startup is instantly segfault.
> Any clues?

Use XMMS, its much better (IMO).

Tom

- --
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.0 (GNU/Linux)

iD8DBQE9pIRUXCpWOla2mCcRAtYrAJ951LssiP5R0pnLz1GGXKpFx/EymgCfdBtO
CpEUDXcrpAvf3zqhHXqnVIc=
=jjed
-END PGP SIGNATURE-




Re: Kmail and gpg

2002-10-03 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 03 Oct 2002 10:30 am, José Manuel Pérez wrote:
> Hi all.
>
> I've got KDE 3.0.3 and gnupg 0.13-3 from Debian unstable. I've generated my
> keys and configure kmail (1.4.3) in order to use gpg, but it never signs
> nor encripts my messages.
>
> Someone knows what can I do? I don't get any error/warning message about
> it, and I know gpg works ok.

When composing you need to press either the sign or encrypt button in the 
toolbar. You can also set it to do this automatically in the options.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.0 (GNU/Linux)

iD8DBQE9nCMPXCpWOla2mCcRAsT+AKDF3xF3P7fsp/zN7fZQCICC19+A7gCcD8Eu
R/3q/Z6trcnQidZ9qhh44OQ=
=ZMic
-END PGP SIGNATURE-




Re: Wanted: text editor where word wrap does not insert newline

2002-09-04 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 04 Sep 2002 6:51 pm, Bruce Miller wrote:
> I would welcome suggestions for strong text editors with a "no newline"
> implementation of word wrap.

Jedit is a very good text editor written in Java so it will run on many
platforms (ive used it on solaris big iron machines and linux pcs). As its a
java app though it is slow to load, and uses quite a lot of ram. It does have
a very good feature set however, and many good plugins for project
management, cvs integration, auto formatting etc. See www.jedit.org if your
interested.

Tom

- --
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9dle2XCpWOla2mCcRAm7xAJ4prkZbvR9+HNVUJsqvRodqRju96QCgkvax
a7+S0F/elKeFzrDRMul3LQs=
=UTdf
-END PGP SIGNATURE-




Re: kde3.1-beta1

2002-09-03 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 03 Sep 2002 4:42 pm, Karolina Lindqvist wrote:
> tisdagen den 3 september 2002 13.24 skrev Tom Badran:
> > The kdevelop packages you compiled seem to not have any kdevelop
> > executable. I installed all of them just in case but it wasnt there.
>
> It's called gideon. If gideon is not kdevelop, I guess there is no kdevelop
> for KDE 3.1 (yet).

Yeah, i looked through the files in the packages before i had a chance to 
check my mail :)

It seems very unfinished which is a shame, because it looks promising, it even 
mentions my website in the documentation :) Any chance (if you have time) you 
could produce debs for the current stable kdevelop also as that would be very 
very appreciated.

Thanks for the great packages

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9dRx3XCpWOla2mCcRAjB4AJ99FC07iK5WUjtcU4o/iqtBpwrnSACgmCS4
fB6KYWkLmyObZqtYOJtSxgE=
=vBKD
-END PGP SIGNATURE-




Re: kde3.1-beta1

2002-09-03 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 03 Sep 2002 12:05 pm, Mark Purcell wrote:
> > >You can look in:
> > >http://cgi.algonet.se/htbin/cgiwrap/pgd/debian
> > >which leads you to my ftp area containing KDE3.1-beta
>

The kdevelop packages you compiled seem to not have any kdevelop executable. I 
installed all of them just in case but it wasnt there. 

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9dJvVXCpWOla2mCcRAingAJ9zfACRveBwaV5isZoskHF783Ly0wCfWFsC
LEyrLANzhqFO8UCHI+orlkU=
=zVDA
-END PGP SIGNATURE-




Re: (Sorry) PPP asks my ISP for password

2002-09-01 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Sorry, should have gone to debian-user :)

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9copNXCpWOla2mCcRArsvAKCYDDtwBSMmJcLdCfUba3XjEF+AAACgq00q
N2iFPlTYkuMetFpG7Ckx0Y4=
=idqo
-END PGP SIGNATURE-




Re: PPP asks my ISP for password

2002-09-01 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 01 Sep 2002 10:25 pm, Anna Lawless wrote:
> Having finally got what I thought was a working box, I can't dial
> out. Whichever method I use, I either can't connect to my ISP or
> the connection is refused by my box.
> I type 'pon', having set up ppp in the normal Debian way. Nothing
> happens. I'll go back into it to try to find the log message.
> I can dial out with kppp, but as soon as I'm connected pppd dies,
> with the message 'cannot obtain a password for this IP address'.
> Obviously I can't get a password from my ISP and I've searched
> everywhere to try to find out which file it's in.

You need to edit your /etc/ppp/options file an have the option noauth (i think 
it is commented out by default). Also make sure there is no 'auth' option 
somewhere else in the file.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9com2XCpWOla2mCcRAt+KAJ49UWURUSS/bKjQH0N5ukW3RLJbnwCfWxi8
3sEY8Jb6CgWqxKVZQthCiI4=
=s7Cw
-END PGP SIGNATURE-




Re: kmail and gpg

2002-09-01 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 01 Sep 2002 9:25 pm, Russell Coker wrote:
> Is there some way to reconfigure kmail to make it behave better?  Or is it
> just buggy?

I have never had any problem with this across kde 1/2/3. Do you have an 
exceptionally large number of keys stored, or some weird configuration 
options for GPG? Do you also have a keyserver setup for GPG to use? Its 
possible it is trying to remotely pull a key, without a server, and is 
synchronsing with a while() rather than semaphores or something.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9cok/XCpWOla2mCcRAtbBAJ9TeJtKocnQx1qR339REFwoHuZXdgCg0y5E
loPFrj2GrPyrpiDQIK3VrmA=
=N3id
-END PGP SIGNATURE-




Re: kde3.1-beta1

2002-08-30 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 30 Aug 2002 2:53 pm, Johannes Wilm wrote:
> I've put your packages upt http://folk.uio.no/johannwi/kde3.1-beta1
>
> måndagen den 26 augusti 2002 22.23 skrev Karolina:
> >You can look in:
> >http://cgi.algonet.se/htbin/cgiwrap/pgd/debian
> >which leads you to my ftp area containing KDE3.1-beta
>

These packages are sweet, but i cant start kdevelop anymore. It wants 
libkjava.so.1 but i cant find which package provides it. Any help?

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9b5PZXCpWOla2mCcRAkimAKDEtcWjM9siZlMqoWXSTf9XKcvXVQCfVlBY
cHxeHRQZjG2Be3ec3+G2KsQ=
=hgdd
-END PGP SIGNATURE-




Re: probs with transparent menus in KDE3

2002-08-16 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 16 Aug 2002 9:32 am, Jan Ulrich Hasecke wrote:
> Hi,
>
> I've just installed KDE3 on debian 3.0 and it works. (Seems to be
> faster than KDE2. Is this possible?)

Yes, its much faster than kde2 (will be even faster after the move to gcc 3.2)

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9XNvNXCpWOla2mCcRAuG8AJ436YGNhBeu+Bpinj1slfgtoBB1zACfb/O/
Ww/3n3nUUNUIe/SNLddaJPk=
=kgK5
-END PGP SIGNATURE-




kdm seems to have died?

2002-08-05 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Just updated the new kde3 packages (as of today) and it seems that kdm has 
stopped loading on boot up. It works fine when started with both 
"/etc/init.d/kdm start" or just "kdm", but it wont load on boot. 

The link is in my /etc/rcX.d (specifically 2 in my case, and its an S* not a 
K*) and i havent changed anything. Ive looked at the script, and there is 
nothing that appears wrong, i even get "starting kde desktop manager" appear 
in the console.

Im happy to provide any more info if needed.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9TsfzXCpWOla2mCcRAnCbAKDMBZKTByBqc5SYUrhQ5v9hM4DkswCgwK/9
9eOrO+LPK13sS+TC4Vl8ur0=
=qaIG
-END PGP SIGNATURE-




Re: Latest qt-mt breaks some kde3 stuff

2002-08-02 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 02 Aug 2002 3:04 pm, Chris Cheney wrote:
> Yep, known issue, I will be preparing new debs soon.

Ok, thanks.

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9SpLKXCpWOla2mCcRAqQsAJ43dlPeUmxDX5m14e+IBPkmRISnvgCbBELA
1QIuIO+0p8cO91p89Han/WQ=
=HmEv
-END PGP SIGNATURE-




Latest qt-mt breaks some kde3 stuff

2002-08-02 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I know kde3 is not part of main debian, but i thought id post here anyway. 
Todays libqt-mt updates in unstable have stopped all the kde (not the qt 
ones) styles from working, or even appearing in the kcontrol center.

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9SoOFXCpWOla2mCcRAhAhAKCG4GP2aO0JKu5LgYnMcWv6lvtTzwCfXIRX
oyK2dojpX8tsSvlKY+msVuo=
=oVx8
-END PGP SIGNATURE-




Re: Is this Konq 2.2 bug fixed in 3.0 ?

2002-07-26 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 26 Jul 2002 10:17 am, Nick Leverton wrote:
> I apologise that this is a bit off topic for the list.  Please
> could someone with Konqueror 3.0.2 or better have a look at
> http://www.leverton.org/innaturtle/ , and tell me whether it is possible
> to use the six links in the panel with bubbles in ?  With Konq 2.2.2,
> I click but nothing happens.  I need to know if this is now fixed, and
> I can't spare the machine to upgrade it to 3.0.2 myself at the moment !
>
> Thanks
>
> Nick Leverton

Works fine

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9P8M2XCpWOla2mCcRAtoUAJ9axZiVxdA271LKpH4ri3HKoElsswCfSDJs
IJsECB2eEKkvZU8bvJkHaME=
=84tF
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Massive fonts in non KDE apps

2002-07-25 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

In kde my fonts all look nice, however in non kde apps (mozilla / gtk apps /
acrobat reader etc) all my fonts are very big. I have even tried setting my
screen to 75 dpi but that doesnt fix it. I dont have gnome or any other
window manager installed, so how can i change the default fonts that X uses.

Thanks

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9QW2vXCpWOla2mCcRAkCiAKCEr85/01P+U/avbR9oPFfHwt1lGgCfbMZ8
MdIY3F3DCzzNTpntX6mlF24=
=P9h/
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Mouse problem

2002-07-23 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ive had the same problem on one particular laptop. There is no fix, it is a 
problem in X (>4.0) and there is no fix available (nor is it a simple 
problem). It stems from certain combinations of graphics cards and ps2 
controllers. Even using software mouse emulation it will not fix the problem.

I did find that suspending to disk would fix the problem temporarily, and it 
seems (not measured in any way, just my general feel) that the problem 
exhibits itself much less in X 4.2.0

There are debian packages for this version of X, search on google and you will 
find them. 

Sorry this isnt more helpful

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9PxeOXCpWOla2mCcRAup0AJoCEjDd2uaWxyQk3QMulKuk2RuLsgCgkHZq
TyquHKNIcoSNMdgQ/ydzwWI=
=pYV0
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: KDE3 in sid update

2002-07-19 Thread Tom Badran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Friday 19 Jul 2002 7:40 pm, Derek Gladding wrote:
> It's in the list archives - iirc, Debian will be changing to gcc 3.0.1
> after woody, and KDE3 will be entering sid at this point.

Do you not mean 3.1? 3.0.1 wont even compile KDE if i remember correctly (and 
it was a very crappy release anyway, most of the 3.0 series were).

Tom

- -- 
Email: [EMAIL PROTECTED] || Jabber: [EMAIL PROTECTED]
Homepage:   http://www.doc.ic.ac.uk/~tb100
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9OcrlXCpWOla2mCcRAuvvAJ9cMLQfpiUyZg0kzDTzcc9C/8bhhQCfROdb
FkNI2eDWl46R47GR8pymglY=
=Xm43
-END PGP SIGNATURE-


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]