Thank you for a reply and a valuable opinion.

 # I cannot speak, write and read English well.

>> 1) XLS Export
> If somebody wants to impment the class for XSLX he/she is welcome. Though
> the UTF-8 support for SpreadSheet_Excel _Writer does not really work I want
> to keep this since Excel2007 format is just understood by newer software
> versions (Latin1 works fine...). So just somebody needed to use the current
> XSL code and modify/add the few lines for XSLX.
>
> It's also possible to create HTML and tell the browser that it receives an
> Excel file, if you click on 'open with...' it loads the HTML into Excel.
> Same is true for MS Word.

It turned out that it was my mistake not to move by 2007 environments.

The XLS patch for the Japanese user (and ms4w) is put on the apology.

-- start --
Index: /ms4w/apps/nngis/plugins/export/export.xls.php
===================================================================
--- /ms4w/apps/nngis/plugins/export/export.xls.php
+++ /ms4w/apps/nngis/plugins/export/export.xls.php
@@ -62,5 +62,5 @@
         $r = 0;
         foreach ($groups as $grp) {
-            $worksheet->write($r, 0, utf8_decode($grp->description),
$format_title);
+            $worksheet->write($r, 0,
mb_convert_encoding($grp->description,"SJIS","UTF-8"), $format_title);
             $r++;

@@ -73,5 +73,5 @@
                     //$col--;
                 } else {
-                    $worksheet->write($r, $col,
utf8_decode($headline), $format_bold);
+                    $worksheet->write($r, $col,
mb_convert_encoding($headline,"SJIS","UTF-8"), $format_bold);
                     $col++;
                 }
@@ -92,9 +92,9 @@
                         $hyperlink = $v->hyperlink;
                         if ($hyperlink) {
-                            $worksheet->write($r, $vcol,
utf8_decode($hyperlink[2]));
+                            $worksheet->write($r, $vcol,
mb_convert_encoding($hyperlink[2],"SJIS","UTF-8"));
                             $vcol++;
                         }
                     } else {
-                        $worksheet->write($r, $vcol, utf8_decode($v));
+                        $worksheet->write($r, $vcol,
mb_convert_encoding($v,"SJIS","UTF-8"));
                         $vcol++;
                     }
-- end --
With php.ini
extension=php_mbstring.dll
Please make effective.

>> 2) Version of TCPDF
> Last time I tried TCPDF 4.x the produced output for larger legends created
> corrupted PDF. Since this is difficult to debug I gave up and kept at the
> 3.x. Just replace the 3 with 4 for testing will need only few modifications
> to the beginning of tcpdf.php, so you could try it yourself (I think I
> unfortunately threw away the adapted one).
It challenges.

>> 3) Integration
> I don't have a clue what you mean with that...
sorry.
For instance, print.xml is customized in the print of pdf in actual work.
It is search.xml in the retrieval.
In RESULT_HYPERLINK, pm_cjs.js.
After that, config.ini and php_config.php.
Two or more files will be customized.
I did not think that it made this one file if possible.

>> 4) Is this explanation answered correctly? (var pmExportFormatList)
> if nothing is defined in the js_config.php then default values are taken in
> export.js
It confirms it again.

thx armin.

--
Takashi Ota.

2008/12/10 Armin Burger <[EMAIL PROTECTED]>:
> On 09/12/2008 15:09, TTO wrote:
>>
>> Hi all.
>>
>> # I cannot speak, write and read English well.
>>
>> Thank you for developing work.
>>
>> It uses it in Japanese, and it wants to describe a little inconvenient
>> point, and to
>> help some.
>> It is likely to be able to help possibly.
>>
>> 1) XLS Export
>> I want you to shift to PHPExcel from SpreadSheet_Excel _Writer and OLE.
>> My environment does for OLE not to operate by 2007 versions by being.
>> (The Excel of Japan should use mb_string_encoding for the Shift+JIS
>> encode.)
>
> If somebody wants to impment the class for XSLX he/she is welcome. Though
> the UTF-8 support for SpreadSheet_Excel _Writer does not really work I want
> to keep this since Excel2007 format is just understood by newer software
> versions (Latin1 works fine...). So just somebody needed to use the current
> XSL code and modify/add the few lines for XSLX.
>
> It's also possible to create HTML and tell the browser that it receives an
> Excel file, if you click on 'open with...' it loads the HTML into Excel.
> Same is true for MS Word.
>
>>
>> 2) Version of TCPDF
>> I want to use it in the Multibyte String ..becoming it.. environment
>> though it was also in the mailing list.
>> (May be 4.x series  full support.)
>
> Last time I tried TCPDF 4.x the produced output for larger legends created
> corrupted PDF. Since this is difficult to debug I gave up and kept at the
> 3.x. Just replace the 3 with 4 for testing will need only few modifications
> to the beginning of tcpdf.php, so you could try it yourself (I think I
> unfortunately threw away the adapted one).
>
>>
>> 3) Integration
>> Integration of configuration files such as print.xml ,search.xml other.
>> (fonts...embarrassed.)
>
> I don't have a clue what you mean with that...
>
>>
>> 4) Is this explanation answered correctly? (var pmExportFormatList)
>> http://svn.pmapper.net/trac/wiki/AvailablePlugins
>> I made it to turning off with export.js.
>>
>> Which is the priority level?
>
> if nothing is defined in the js_config.php then default values are taken in
> export.js
>
>>
>> --
>> Takashi Ota
>>
>>
>> ------------------------------------------------------------------------------
>> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
>> Nevada.
>> The future of the web can't happen without you.  Join us at MIX09 to help
>> pave the way to the Next Web now. Learn more and register at
>>
>> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
>> _______________________________________________
>> pmapper-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/pmapper-users
>>
>
>

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
pmapper-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pmapper-users

Reply via email to