J.M. Maurer | 2 Jul 20:22

Re: msevior - r27088 - abiword/trunk/src/wp/impexp/xp


On Wed, 2009-07-01 at 09:56 +0200, cvs <at> abisource.com wrote:
> Author: msevior
> Date: 2009-07-01 09:56:40 +0200 (Wed, 01 Jul 2009)
> New Revision: 27088
> 
> Modified:
>    abiword/trunk/src/wp/impexp/xp/ie_exp_HTML.cpp
>    abiword/trunk/src/wp/impexp/xp/ie_imp_RTF.cpp
>    abiword/trunk/src/wp/impexp/xp/ie_imp_RTF.h
>    abiword/trunk/src/wp/impexp/xp/ie_imp_RTFObjectsAndPicts.cpp
> Log:
> 
> Don't import textboxes with no content. Fix a NULL string crash in export to HTML.

What is wrong with empty textboxes?

  Marc

J.M. Maurer | 2 Jul 20:16

Re: hub - r27085 - abiword/trunk/src/af/util/xp


On Wed, 2009-07-01 at 06:07 +0200, cvs <at> abisource.com wrote:
> UT_go_file_create now works if also passed a plain
> absolute path. This should fix the various exporters
> that were using it that way.

This won't work on win32

  Marc

J.M. Maurer | 2 Jul 19:18

Re: uwog - r27102 - in abiword/trunk: plugins/openxml/common/xp plugins/openxml/exp/xp plugins/openxml/imp/xp src/text/fmt/xp


frt: please hack in trunk from now on :)

I tested the docx filter on some random downloaded documents, and I must
say I'm very impressed. Rock!

  Marc

On Thu, 2009-07-02 at 17:20 +0200, cvs <at> abisource.com wrote:
> Author: uwog
> Date: 2009-07-02 17:20:55 +0200 (Thu, 02 Jul 2009)
> New Revision: 27102

Jaroslav Rynik | 1 Jul 11:01

Slovak translation updated

Hello,

I've updated Slovak translation of Abiword and made some string shorter and more natural.

Cheers,

Jaro

      
Attachment (sk-SK.zip): application/x-zip-compressed, 48 KiB
Robert Staudinger | 30 Jun 07:41

Re: dom - r27066 - in enchant/trunk: src tests


Hi Dom,

On Tue, Jun 30, 2009 at 3:51 AM, <cvs <at> abisource.com> wrote:
>
> Author: dom
> Date: 2009-06-30 03:51:52 +0200 (Tue, 30 Jun 2009)
> New Revision: 27066
>
> Modified:
>   enchant/trunk/src/enchant.c
>   enchant/trunk/tests/enchant-ispell.c
> Log:
> bug 12173 - fix some small memory leaks. from Caolan.
>
> Modified: enchant/trunk/src/enchant.c
> ===================================================================
> --- enchant/trunk/src/enchant.c 2009-06-30 01:47:02 UTC (rev 27065)
> +++ enchant/trunk/src/enchant.c 2009-06-30 01:51:52 UTC (rev 27066)
> @@ -606,6 +606,7 @@
>
>        session = enchant_session_new_with_pwl (provider, dic, excl, lang, fail_if_no_pwl);
>
> +       g_free (excl);
>        g_free (dic);
>        g_free (excl);

This looks like it would introduce a double free.

- Rob
(Continue reading)

bruno | 29 Jun 16:51
Favicon

To create a spellchecker's exe for Abiword


Hi all,

I did the spellchecker's occitan (language from south of France) for 
OpenOffice.org.
I should know, what is the process to create a spellchecker's exe (with 
the dic's file and aff's file) for Abiword and who I must contact to 
begin this process in Abiword 's project ?

Thanks a lot,
Bruno.

Hubert Figuiere | 29 Jun 08:58

Re: msevior - r27061 - abiword/trunk/src/text/fmt/xp


On 06/29/2009 02:54 AM, cvs <at> abisource.com wrote:
> Modified: abiword/trunk/src/text/fmt/xp/fv_View_cmd.cpp
> ===================================================================
> --- abiword/trunk/src/text/fmt/xp/fv_View_cmd.cpp	2009-06-29 03:57:06 UTC (rev 27060)
> +++ abiword/trunk/src/text/fmt/xp/fv_View_cmd.cpp	2009-06-29 06:54:21 UTC (rev 27061)
> @@ -5502,8 +5502,8 @@
>  	UT_ByteBuf latexBuf;
>  	mathBuf.ins(0,reinterpret_cast<const UT_Byte *>(sMath.utf8_str()),static_cast<UT_uint32>(sMath.size()));
>  	latexBuf.ins(0,reinterpret_cast<const UT_Byte *>(sLatex.utf8_str()),static_cast<UT_uint32>(sLatex.size()));
> -	m_pDoc->createDataItem(sMathName.utf8_str(),false,&mathBuf,"",NULL);
> -	m_pDoc->createDataItem(sLatexName.utf8_str(),false,&latexBuf,"",NULL);
> +	m_pDoc->createDataItem(sMathName.utf8_str(),false,&mathBuf,"MathML",NULL);
> +	m_pDoc->createDataItem(sLatexName.utf8_str(),false,&latexBuf,"iTex",NULL);
>  	// OK Insert the MathML Object
>  	const gchar * atts[9]={"dataid",NULL,"latexid",NULL,"props",NULL,NULL,NULL,NULL};
>  	atts[1] = static_cast<const gchar *>(sMathName.utf8_str());

Martin,

I'm not sure if that commit was intentionnal, but neither "MathML"  nor
"iTex" are valid MIME types.
At least the empty string was empty.

Nor do I think it relate to bug 11777

Hub

J.M. Maurer | 28 Jun 11:48

Re: hub - r27043 - in abiword/trunk/src/af/xap: gtk xp


> Set a mnemonic for the filetype widget in the
> File dialog. Closes bug 9255

> +// probably much slower....
> +std::string & convertMnemonics(std::string & s)

iirc we already have a similiar function in the Unix menu building code,
which we may want to share.

  Marc

Hubert Figuiere | 28 Jun 02:20

Re: sum1 - r27039 - abiword/trunk/src/text/fmt/xp


>    abiword/trunk/src/text/fmt/xp/fv_View_protected.cpp
> Log:
> Prevent a 'memset used with constant zero length parameter' warning.

> 
> Modified: abiword/trunk/src/text/fmt/xp/fv_View_protected.cpp
> ===================================================================
> --- abiword/trunk/src/text/fmt/xp/fv_View_protected.cpp	2009-06-27 23:18:46 UTC (rev 27038)
> +++ abiword/trunk/src/text/fmt/xp/fv_View_protected.cpp	2009-06-27 23:44:27 UTC (rev 27039)
> @@ -228,7 +228,7 @@
>  	{
>  		UT_sint32 i = 0;
>  		UT_GenericVector<PD_DocumentRange *> vecRanges;
> -		vecRanges.clear();
> +

UT_Vector must be fixed instead.
I thought I already did it.

What does spew these warnings?

Hub

bruno | 26 Jun 15:54
Favicon

About spellchecker Enchant and .dic and .aff


Hi all,

I did the spellchecker' s files for OpenOffice for a language from south 
of France, the occitan-lengadocian's speaking.
I should like know, how can I do to make one spellchecker for Abiword. I 
have readen that the Enchant's library was compatible with the files 
.dic and .aff of OpenOffice.org. Is it true ?

Thanks for your patience and for all the informations you can give me,

Best regards,

Bruno

Hubert Figuiere | 26 Jun 04:44

JPEG plugin & win32gfx


Hi,

Is there any objection that I remove the JPEG plugin?

Win32 is supposed to support JPEG with the win32gfx importer, Mac has it
already, and there is GdkPixbuf that is supported.

Also, I would like to see us move the win32gfx plugin into the core (and
not plugins). src/wp/impexp/win has none unlike the other platforms.

This is one of the final adjustment for the JPEG support.

What says you?

Hub


Gmane