[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2022-01-20 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Andreas Heinisch  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |andreas.heini...@yahoo.de
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2020-09-23 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||89606


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=89606
[Bug 89606] [META] Table of Contents and Indexes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2020-09-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Pietro  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||8910

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

--- Comment #9 from Julien Nabet  ---
Keeping on debugging, I put some traces on 3 methods quoted in comment 7.
I confirm that when opening the file, it goes into
SwEntryBrowseBox::ReadEntries

"osl_getThreadTextEncoding()" returns 1 (so "RTL_TEXTENCODING_MS_1252", see
https://opengrok.libreoffice.org/xref/core/include/rtl/textenc.h?r=189abcf0#38)
to "eTEnc" variable (type "rtl_TextEncoding")

Forcing "eTEnc" to "RTL_TEXTENCODING_UTF8" allows to see Greek characters.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

--- Comment #8 from Julien Nabet  ---
I checked the attached file with online hexa editor and it doesn't contain BOM
(should be the sequence 0xEF,0xBB,0xBF since it's UTF-8, see 
https://en.wikipedia.org/wiki/Byte_order_mark)
Anyway I also gave a try with BOM file, it doesn't change anything, still
scrambled letters but no surprise considering LO code (see my previous
comment).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

--- Comment #7 from Julien Nabet  ---
UI comes from "createautomarkdialog.ui"

This file is used by sw/source/ui/index/cnttab.cxx
Search "encod" here gives 3 locations:
3815  void SwEntryBrowseBox::ReadEntries(SvStream& rInStr)
3816  {
3817  AutoMarkEntry* pToInsert = nullptr;
3818  rtl_TextEncoding  eTEnc = osl_getThreadTextEncoding();
3819  while (rInStr.good())

3866  void SwEntryBrowseBox::WriteEntries(SvStream& rOutStr)
3867  {
3868  //check if the current controller is modified
...
3878  rtl_TextEncoding  eTEnc = osl_getThreadTextEncoding();
3879  for(std::unique_ptr & rpEntry : m_Entries)

3956  IMPL_LINK_NOARG(SwAutoMarkDlg_Impl, OkHdl, Button*, void)
3957  {
3958  bool bError = false;
3959  if(m_pEntriesBB->IsModified() || bCreateMode)
3960  {
3961  SfxMedium aMed( sAutoMarkURL,
3962  bCreateMode ? StreamMode::WRITE
3963  : StreamMode::WRITE|
StreamMode::TRUNC );
3964  SvStream* pStrm = aMed.GetOutStream();
3965  pStrm->SetStreamCharSet( RTL_TEXTENCODING_MS_1253 );

So it seems it doesn't try to detect the encoding of the file.
Also, line 3965 seems weird to me, why fixed encoding RTL_TEXTENCODING_MS_1253
?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

--- Comment #6 from Julien Nabet  ---
Sorry, don't take into account previous comment.
Getting some info about sdi, I followed this link (in French) to open sdi
correctly:
https://dutailly.net/un-fichier-de-concordance-pour-indexer-un-document

On Win10 with master sources updated today I have scrambled letters but no
specific console logs.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Julien Nabet  changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||serval2...@yahoo.fr

--- Comment #5 from Julien Nabet  ---
On Windows 10 with 6.2.4 or with master sources updated today, I could
reproduce this.

I just opened Writer, then File/open and select sdi file.

Here are console logs which may be relevant:
Throwing InvalidHeaderException
Throwing InvalidHeaderException
warn:oox.storage:36748:26504:oox/source/helper/zipstorage.cxx:67:
ZipStorage::ZipStorage exception opening input storage
com.sun.star.io.IOException
Throwing InvalidHeaderException
Throwing InvalidHeaderException
AbiDocument::isFileFormatSupported
Found xml parser severity error Document is empty

Throwing InvalidHeaderException
warn:oox.storage:36748:26504:oox/source/helper/zipstorage.cxx:67:
ZipStorage::ZipStorage exception opening input storage
com.sun.star.io.IOException
...
VisioDocument: version 0
Found xml parser severity error Document is empty

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Michael Herbst  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Michael Herbst  ---
About has:

Version: 6.1.6.3
Build-ID: 5896ab1714085361c45cf540f76f60673dd96a72
CPU-Threads: 4; BS: Windows 6.1; UI-Render: Standard; 
Gebietsschema: de-DE (de_DE); Calc: group threaded

It's obviously the Encoding witch scrambles the greek Letters.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #3 from Xisco Faulí  ---
it works fine for me in

Versió: 6.1.4.2
ID de la construcció: 1:6.1.4-0ubuntu0.16.04.1~lo2
Fils de CPU: 4; SO: Linux 4.15; Renderitzador de la IU: per defecte; VCL: gtk3; 
Configuració local: en-AU (ca_ES.UTF-8); Calc: group threaded

Could you please paste the info from Help - about LibreOffice ?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the information has been provided

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Xisco Faulí  changed:

   What|Removed |Added

   Assignee|her...@tampier.de   |libreoffice-b...@lists.free
   ||desktop.org

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Michael Herbst  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED
   Assignee|libreoffice-b...@lists.free |her...@tampier.de
   |desktop.org |

--- Comment #2 from Michael Herbst  ---
Created attachment 152086
  --> https://bugs.documentfoundation.org/attachment.cgi?id=152086=edit
SDI File requested by Xisco Faulí

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-10 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 125496] SDI file with greek letters does not work

2019-06-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125496

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs