Add string to the URL

2001-04-18 Thread MATSUMOTO Masakazu
Hi, I made a small hack which enable us to add memo string when we copy URL to MemoPad. It will remind you why you stored the URL :-) (I also wanted to paste tag string in the field by default, but it was too difficult for me.) /matto Index: externalform.c

Re: Performance Problem

2001-08-30 Thread MATSUMOTO Masakazu
I also found that problem. Perhaps it is because the smallest grain size of rendering is not a line but a paragraph. Plucker viewer becomes very slow when a paragraph size in the viewport is very large. Current plucker viewer quickly reads through the document to the end at the first open and

RE: Performance Problem

2001-08-30 Thread MATSUMOTO Masakazu
At Thu, 30 Aug 2001 14:03:36 -0700 (PDT), David A. Desrosiers [EMAIL PROTECTED] wrote: It is difficult currently. Once the page is drawn, its just a long bunch of pixels. A scrollbar for showing the position in the long bunch of pixels needs to be calculated also, which would require doing

Re: character sets used in Plucker Document format?

2001-10-01 Thread MATSUMOTO Masakazu
At Sun, 30 Sep 2001 23:51:21 +0200, Dirk Heiser [EMAIL PROTECTED] wrote: Have you try to switch to the Small Font in the Viewer preferences or use the pre tag in the HTML? :-) I did not know the feature! It works with Japanese (of course width of Japanese characters are not narrowed though).

CopyToMemo feature

2001-10-18 Thread MATSUMOTO Masakazu
I'm testing the feature to copy text and link URLs to memopad, which has been wanted on this list. When Copy To Memo in the menu is selected, it forces to redraw screen and copies the text in the viewport to the memo. URLs of the links in the viewport is also added after the tag strings. I

Re: CopyToMemo feature

2001-10-19 Thread MATSUMOTO Masakazu
At Fri, 19 Oct 2001 01:30:11 -0700 (PDT), David A. Desrosiers [EMAIL PROTECTED] wrote: HOLY Patch Batman! Can you gzip it and attach it as a compressed file next time? Please =) Sorry. Really it is too big. When Copy To Memo in the menu is selected, it forces to redraw screen

Re: CopyToMemo feature

2001-10-19 Thread MATSUMOTO Masakazu
I am sorry I included my private hack to fit the viewer for J-OS (Japanization Hack). I remade the patch (and also gzipped :P). diff-for-hardcopy.gz

Re: CopyToMemo feature

2001-10-19 Thread MATSUMOTO Masakazu
At Fri, 19 Oct 2001 17:25:20 +0900, MATSUMOTO Masakazu wrote: I put a compiled one at http://www.chem.nagoya-u.ac.jp/matto/plucker/viewer_en_test.prc I replaced with the one compiled with newest CVS. /matto

Re: CopyToMemo feature

2001-10-21 Thread MATSUMOTO Masakazu
Thank you for your advices. I will modifiy the code (and style) in a week. And I'm looking forward to your linux version also. At Sun, 21 Oct 2001 22:03:25 +0200, Michael Nordstrvm wrote: - ScribeMemo should probably not be included in externalform.c. I think all the functions involved in

Re: CopyToMemo feature

2001-10-22 Thread MATSUMOTO Masakazu
Here is the refined patch. All the points Micke suggested must be changed. You can also try this with http://www.chem.nagoya-u.ac.jp/matto/plucker/viewer_en_test.prc /matto hardcopy.tgz

Re: CopyToMemo feature

2001-10-22 Thread MATSUMOTO Masakazu
A patch was missing. Sorry. document.c.diff.gz

Re: CopyToMemo feature

2001-10-24 Thread MATSUMOTO Masakazu
At Wed, 24 Oct 2001 20:27:27 +0100, Robert O'Connor wrote: Perhaps Export To Memo? if the function ends up being written with it being on the clipboard. This seems to be the most common term for this type of program functionality. I agree. /matto

Re: Problem with Delete All (was: Default categories)

2001-10-24 Thread MATSUMOTO Masakazu
Newest version 1.1.13 seems to have this problem... /matto At Sat, 11 Aug 2001 11:18:00 +0200, Michael Nordström wrote: On Sat, Aug 11, 2001, MATSUMOTO Masakazu wrote: In the newest viewer, when I choose Delete All in database manager, not all documents in the current category

Re: Support for Japanese characters.

2001-10-29 Thread MATSUMOTO Masakazu
At Sat, 27 Oct 2001 16:26:14 +0200, Michael Nordstrvm wrote: On Sat, Oct 27, 2001, David A. Desrosiers wrote: I think I'm going to make my own web-page which has patches for Plucker original sources. Why not integrate your useful changes into the main Plucker tree? Or even

Re: character sets used in Plucker Document format?

2001-09-28 Thread MATSUMOTO Masakazu
At Wed, 26 Sep 2001 07:17:53 +0200, Dirk Heiser [EMAIL PROTECTED] wrote: Bill == Bill Janssen [EMAIL PROTECTED] writes: Bill What about the character set in text data? Is it restricted to Bill Latin-1? Well, just make a test: A Plucker DB contain some German Text (contain some

Re: Support for Asian language

2002-01-09 Thread MATSUMOTO Masakazu
At Tue, 08 Jan 2002 20:20:29 +0100, Florent Pillet wrote: Is the i18n branch an experimental playground for internationalizing Plucker, or are you planning on having two different versions for performance reasons ? I looked at the i18n side of the code, and it seems to me that you

Leading spaces

2002-03-05 Thread MATSUMOTO Masakazu
It seems that the viewer removes the leading spaces even in pre environment, and destroys the indentation in the source listing protected by pre tags I think the parser should remove the leading spaces of each paragraph if necessary, and the remaining spaces in pdb file should not be removed

initial string to add bookmark

2002-07-17 Thread MATSUMOTO Masakazu
As current viewer does not allow to make unnamed bookmark, it requires many actions to make new bookmark. In the following patch, the paragraph number is given as the candidate for bookmark name. Please take a look and give me your opinions. Index: bookmarkform.c

Re: External link

2003-10-06 Thread Matsumoto, Masakazu
On 2003.Oct.6, at 03:34 PM, Michael Nordstrom wrote: On Mon, Oct 06, 2003, Matsumoto Masakazu wrote: I feel the external links form is somewhat redundant Well, I think it is a good way to inform the user about the missing link. On my Treo 600 I have also added a browse online button

Re: External link

2003-10-06 Thread Matsumoto, Masakazu
On 2003.Oct.6, at 05:15 PM, Michael Nordstrom wrote: On Mon, Oct 06, 2003, Matsumoto Masakazu wrote: Actually, it is checked every time when rendering in my current implementation. It makes rendering a little bit slower only when you enable this feature. What is this feature supposed to add

Re: External link

2003-10-06 Thread Matsumoto, Masakazu
On 2003.Oct.7, at 01:33 AM, Chris Hawks wrote: ---Reply to mail from Michael Nordstrom about External link On Mon, Oct 06, 2003, Matsumoto Masakazu wrote: I feel the external links form is somewhat redundant Well, I think it is a good way to inform the user about the missing link. On my Treo

Re: Handspring SDK w/o fiveway SDK

2003-10-13 Thread Matsumoto, Masakazu
Michael Nordstrom wrote: On Sun, Oct 12, 2003, Matsumoto Masakazu wrote: Compilation fails with handspring SDK and without 5-way SDK. Perhaps these SDKs are mutually dependent. I build it with the Handspring SDK and without the 5-way SDK for my Treo600; no problems. I looked the Handspring SDK

tiny/small fonts in Clie with OS5

2003-12-08 Thread Matsumoto, Masakazu
On OS5, Sony's HiRes extension is integrated to PalmOS, but some difference still remain. On the newest clie, tiny/small Japanese fonts are not displayed correctly. It seems that some special treatment is required for those fonts on Japanese OS5 Clie devices. Here is a patch, which KIRA*

Re: Mark history manually

2003-12-12 Thread Matsumoto, Masakazu
On 2003/12/13, at 5:41, Michael Nordstrom wrote: On Tue, Dec 09, 2003, Matsumoto Masakazu wrote: Here is a very quick hack to mark the current position manually to the history stack. When you add this to CVS you also have to remember to add the $$SELECT: SAVE POSITION text to the language files

Re: tiny/small fonts in Clie with OS5

2003-12-12 Thread Matsumoto, Masakazu
On 2003/12/13, at 5:54, Alexander R. Pruss wrote: Question: Is there a way of getting this to work without a patch to the code, but just by using a font package that remaps fonts? I also think the patch is not smart enough, but I don't know other way to do it. (What are font package and font

Re: tiny/small fonts in Clie with OS5

2003-12-12 Thread Matsumoto, Masakazu
Thank you for detailed instructions. It actually seems to be a better way than to modify source code. I'll try it. On 2003/12/13, at 14:56, Alexander R. Pruss wrote: From: Matsumoto, Masakazu [EMAIL PROTECTED] On 2003/12/13, at 5:54, Alexander R. Pruss wrote: Question: Is there a way of getting

Re: tiny/small fonts in Clie with OS5

2003-12-15 Thread Matsumoto, Masakazu
Thank you for your advices. BTW, did you design grayfont.c compatible to double-byte characters? If so, it will be a good idea to use antialiased CJK characters on such devices with a lot of memory. (Or I should do it?) Matto ___ plucker-dev mailing

Re: tiny/small fonts in Clie with OS5

2003-12-15 Thread Matsumoto, Masakazu
Minimal Japanese character set consists of about 3500 letters and they are mapped in 8000 character contiguous range ( in case of Shift JIS encoding ). I don't know well about unicodes. There are at least four encodings which are popularly used on the Web (JIS, EUC, ShiftJIS, and unicode). It

Re: dictionaries for plucker

2003-12-26 Thread Matsumoto, Masakazu
Alexander R. Pruss wrote: What I visualize is an added control option on which taps on non-anchortext trigger the dictionary, and an added SELECT command which makes the next tap select a word. Ummm, it would be much useful if we can select a phrase (a couple of words) instead of a word.

VFS problem with handera330

2003-12-31 Thread Matsumoto, Masakazu
On HandEra300, plucker viewer built from the newest CVS source takes (Bvery long time to detect change on VFS and often comes to fatal (Bexception when updating the document list (including many documents on (BSD card). Viewer built on Dec. 4, on the other hand, works well. Do you (Bknow the

Re: Japanese code converter kcc

2004-01-04 Thread Matsumoto, Masakazu
Alexander R. Pruss wrote: I've been asking for a long time for a way to plug in a filter (e.g., a sed filter or something). That would do the job. I agree. External code converter will be necessary, though. Does jpluck do Japanese well? Maybe no (will be the same problem in encodings).

Re: Japanese code converter kcc

2004-01-05 Thread Matsumoto, Masakazu
Chris Hawks wrote: ---Reply to mail from Matsumoto, Masakazu about Japanese code converter kcc Matto: You can test it by removing the first two lines and inserting the commandline for kcc for the filter variable (command = kcc [opts] + tempfile) ---End reply Thank you. It works well

Re: dict lookup committed

2004-01-08 Thread Matsumoto, Masakazu
Here is a quick hack which copies the selected word to clipboard. Some search applications (like Q-pocket) and many DA(Desktop accessory, e.g. KDIC DA, Google DA, etc.) retrieves the string in the clipboard as the initial string (to search/lookup), so it will be useful with them. Matto diff

Re: Japanese code converter kcc

2004-01-11 Thread Matsumoto, Masakazu
Chris Hawks wrote: Sounds like you both want something like this: Right before line 799 in Spider.py insert this: SNIP I made a sample patch for the filter feature. (Sorry for bad code. it is my first try in python.) In this patch, the name of the filter wrapper is specified in

Filtering in the parser

2004-01-16 Thread Matsumoto, Masakazu
I saw the newest parser code. I wonder why filtering is limited to text files. If it is applicable to any content types, people can prepare pdf/word/excel/anything-to-html filter for their purposes. matto ___ plucker-dev mailing list [EMAIL

Sort in libraryform

2004-05-28 Thread Matsumoto, Masakazu
I want to make sorting in libraryform faster. Currently sorting by document name in ascendant order is very fast but other sorting methods are slow. Do you know why it is so assymmetric? Matto ___ plucker-dev mailing list [EMAIL PROTECTED]

Font size change (on parser?)

2004-06-30 Thread Matsumoto, Masakazu
Three browsers are compared in the following site and judged that iSilo is more expressive than plucker because the plucker parser ignores font size change. http://pocketgames.jp/modules.php? op=modloadname=Newsfile=articlesid=2822mode=threadorder=0thold=0

Anchor in history

2004-07-20 Thread Matsumoto, Masakazu
For people using jog, it would be more useful if the position of the focus (highlighted link) is restored when back button is pressed. Matto ___ plucker-dev mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-dev

Re: Plucker and SiteScooper

2002-01-29 Thread matto (Matsumoto Masakazu)
David A. Desrosiers wrote: Ideally, a mix between the two for sites which do not already have a Palm-sized site layout would be ideal, and we really should start capturing these and merging them together in some sort of system. I'd love to get some user-submitted home.html

Re: Leading spaces

2002-03-08 Thread matto (Matsumoto Masakazu)
Spaces should not be honored ANYWHERE except in pre /pre tags, and that's still not required, just proper to do. The problem is that the information of pre environment is lacking in the plucker .pdb file. So the solution will be 1. Believe that the spaces are already properly

Re: MemoURL

2002-03-18 Thread matto (Matsumoto Masakazu)
I put a sample viewer with MemoURL feature at http://www.chem.nagoya-u.ac.jp/~matto/plucker/viewer_en_18MAR02.prc Pressing the new button MemoURL appearing in the external link dialog exports the URL to MemoURL database, which will be hotsynced with MemoURL conduit and launched with the

Dana device

2002-06-18 Thread matto (Matsumoto Masakazu)
I found a very interesting handheld computer working with PalmOS. http://www.alphasmart.com It has very wide screen and keyboard, but is compatible with our Palm devices. Imagine plucker viewer is running on this huge screen! Matto==Masakazu Matsumoto