Re: [maemo-developers] Re: maemo-developers Digest, Vol 4, Issue 26

2005-08-24 Thread Jose Manrique Lopez de la Fuente
Just a miniwiki?

Have you tired didiwiki[1] ?

Best regards,

[1] http://didiwiki.org/

2005/8/24, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> Hi,
> 
> I tried it, but it does not seem to work. I could not do exactly as the 
> instructions say because
> "right click" (long press with stylus) menu does not have "Save link as.." or 
> similar option. I tried
> by saving it manually but then it pops up dialog "it's not possible to save 
> changes using this
> browser" when I press the save changes link of the local copy.
> 
> BR; Kimmo
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of ext Roger Sperberg
> Sent: 24 August, 2005 06:02
> To: maemo-developers@maemo.org
> Subject: [maemo-developers] Re: maemo-developers Digest, Vol 4, Issue 26
> 
> 
> Since TiddlyWiki is "just" an html file, you'd think it would run fine on the 
> Nokia 770.
> 
> However the TiddlyWikiTutorial site says it may not work with Opera, which 
> the 770 will come with. The TiddlyWiki.com site says only Firefox, IE 6 and 
> Safara can save changes. Without that feature, TiddlyWiki isn't really useful.
> 
> Perhaps someone with a device could visit tiddlywiki.com and try to save 
> changes (well, clicking that in the sidebar will give you instructions on how 
> to save things to a file to which changes can be saved).
> 
> Roger Sperberg
> 
> --
> firstinitial lastname at gmail.com
> Teleread (e-books: http://teleread.org/blog/)
> Electric Forest (digital libraries: http://altheim.com/ef/)
> 
> 
> 
> 
> Date: Fri, 19 Aug 2005 15:14:28 -0400
> From: "John B. Holmblad" < [EMAIL PROTECTED]>
> Subject: [maemo-developers] Tiddlywiki: will it run on Maemo?
> To: maemodevelop < maemo-developers@maemo.org>
> 
> All,
> 
> I discovered this today from a Linux user group to which I belong:
> 
>  http://www.tiddlywiki.com/  
> 
> Do you think a tiddlywiki will work with the N770 browser?
> 
> Note that one of the tiddlywiki authors mentioned on the aforementioned home 
> page has a site devoted to tablet pc's.  I guess we need to educate 
> Christopher about the forthcoming Nokia N770 so I have copied him on this 
> email!
> 
> --
> Best Regards,
> 
> John Holmblad
> 
> 
> 
> ___
> maemo-developers mailing list
> maemo-developers@maemo.org
> https://maemo.org/mailman/listinfo/maemo-developers
> 


-- 
J. Manrique López de la Fuente
http://www.jsmanrique.net
msn: [EMAIL PROTECTED]
jabber: [EMAIL PROTECTED]
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] Problem adding application to the menu

2005-08-24 Thread Eduardo de Barros Lima
Hi all, 

   Does anyone have any points to this topic? I am facing have the
same problem with my application.

Best Regards.

-- 
Eduardo de Barros Lima
[EMAIL PROTECTED]

On 8/18/05, Alberto Garcia Hierro <[EMAIL PROTECTED]> wrote:
> Hi all,
> I'm trying to add an application to the menu. I've created the 
> .desktop
> and .service files, and also the application initializes osso without
> problems. The application entry appears in the menu, but when you click on
> it, it does nothing. If I comment the X-Osso-Service entry in the .desktop
> file, the application starts but doesn't appear in the taskbar. I have
> revised every file for two hours and I can't find the error. Could anybody
> please take a look at the files attached to this email and try to find the
> problem?
> 
> Thanks in advance,
> Alberto
> 
> 
> P.S.: Full source code is in
> http://zeus.linuxlover.org/~skyhusker/maemo-xchat-0.1.tar.bz2
> and the osso initializacion is in src/fe-gtk/fe-gtk.c:292
> --
> /* Alberto García Hierro (Skyhusker) */
> http://www.handhelds.org/~skyhusker
>
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Bug in the maemo GTK+ patches

2005-08-24 Thread Johan Bilien
Hi,

I post it here because there is no GTK+ component in the bugzilla. 

When playing with gtkmm for minisip, I've encountered a crash using
the maemo version of GTK+ which does not occur on upstream GTK+. 

The included test program results in a division by zero. This occurs
when a notebook has no more visible elements. 

In the patch applied to gtknotebook.c, an ideal_tab_width is computed
by dividing the width by the number of visible tabs, which can be zero.

Having

- ideal_tab_width = (total_width / n);
+ ideal_tab_width = n?0:(total_width / n);

or something similar is necessary.

Regards,
-- 
Johan
#include


int main( int argc, char ** argv ){
	GtkWidget * nb;
	GtkWidget * w;
	GtkWidget * l;

	gtk_init( &argc, &argv );

	w  = gtk_window_new( GTK_WINDOW_TOPLEVEL );
	nb = gtk_notebook_new();
	l = gtk_label_new( "Hello, World" );

	gtk_container_add( GTK_CONTAINER( nb ), l );
	gtk_container_add( GTK_CONTAINER( w ), nb );

	gtk_widget_show_all( w );
	gtk_widget_hide( l );

	gtk_main();
}
	
	
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers