9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  8:12 okamoto
  0 siblings, 0 replies; 19+ messages in thread
From: okamoto @ 2001-02-02  8:12 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 435 bytes --]

You are quite right.  It was my misunderstanding.

The right byte sequence of
もしもPlan 9で日本語を使いたいなら、私
are
[E3 82 82][E3 81 97][E3 82 82][Plan 9][E3 81 A7][E6 97 A5]
[E6 9C AC][E8 AA 9E][E3 82 92][E4 BD BF][E3 81 84][E3 81 9F]
[E3 81 84][E3 81 AA][W3 82 89][E3 80 81][E7 A7 81].

Anyway, thank you very much Russ, now we can use UTF-8 on your
Wiki server.  I replaced the bogus one.

Kenji


[-- Attachment #2: Type: message/rfc822, Size: 2237 bytes --]

From: rsc@plan9.bell-labs.com
To: 9fans@cse.psu.edu
Subject: Re: [9fans] plan 9 wiki experiment
Date: Fri, 2 Feb 2001 00:05:00 -0500
Message-ID: <200102020505.AAA22677@smtp4.fas.harvard.edu>

  0x20 is not part of a valid UTF-8 sequence except when it represents
  a space character.  "[E6 97 20]" is not a valid UTF-8 sequence.

Right.  He was (intentionally or not) quoting the
munged UTF that was coming back from wikifs rather
than the original.  It was actually that UTF sequences like
日 [E6 97 A5] were turning into bogus sequences like [E6 97 20]
in the wikifs parse routine that condenses runs of whitespace into
single spaces.

Russ

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02 13:51 nemo
  0 siblings, 0 replies; 19+ messages in thread
From: nemo @ 2001-02-02 13:51 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 132 bytes --]

: Captain nemo?

Hmmm, Errr, Yep.
I was sleeping, sorry.
Any problem w/ nautilus engines?
Or is it already time for a dive?


[-- Attachment #2: Type: message/rfc822, Size: 1479 bytes --]

From: okamoto@granite.cias.osakafu-u.ac.jp
To: 9fans@cse.psu.edu
Subject: Re: [9fans] plan 9 wiki experiment
Date: Fri, 2 Feb 2001 11:24:56 0900
Message-ID: <20010202022519.F362F199D5@mail.cse.psu.edu>

>Excellent page, but by no means the first!

Captain nemo?

By the way, utf-8 will not pass safely. --> Russ

Kenji

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  5:05 rsc
  0 siblings, 0 replies; 19+ messages in thread
From: rsc @ 2001-02-02  5:05 UTC (permalink / raw)
  To: 9fans

  0x20 is not part of a valid UTF-8 sequence except when it represents
  a space character.  "[E6 97 20]" is not a valid UTF-8 sequence.

Right.  He was (intentionally or not) quoting the
munged UTF that was coming back from wikifs rather
than the original.  It was actually that UTF sequences like
日 [E6 97 A5] were turning into bogus sequences like [E6 97 20]
in the wikifs parse routine that condenses runs of whitespace into
single spaces.

Russ


^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  4:56 rob pike
  0 siblings, 0 replies; 19+ messages in thread
From: rob pike @ 2001-02-02  4:56 UTC (permalink / raw)
  To: 9fans

> I checked my UTF-8 document somemore bits, and found Wiki server may
> transrate '0x20' to '0x0a', which destroyes Japanese text.

0x20 is not part of a valid UTF-8 sequence except when it represents
a space character.  "[E6 97 20]" is not a valid UTF-8 sequence.

-rob



^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  4:55 rsc
  0 siblings, 0 replies; 19+ messages in thread
From: rsc @ 2001-02-02  4:55 UTC (permalink / raw)
  To: 9fans

I just fixed that, a minute ago.
I was dutifully using isspace() rather than
reinvent the wheel, and isspace() didn't work
on UTF bytes (with the high-bit set, it thought
they were negative).

So the return value on bytes in UTF sequences
was mostly bogus.  Retype the UTF, it should
stay this time.

Russ


^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  4:49 okamoto
  0 siblings, 0 replies; 19+ messages in thread
From: okamoto @ 2001-02-02  4:49 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 699 bytes --]

I checked my UTF-8 document somemore bits, and found Wiki server may
transrate '0x20' to '0x0a', which destroyes Japanese text.

Like this,

I wrote (say, /mnt/wiki/22/index.txt),

もしもPlan 9で日本語を使いたいなら、私

the byte sequence of abobe sentence will be

[E3 82 82][E3 81 97][E3 82 82][506C616E2039][E3 81 20][E6 97 20]
[E6 9C 20][E8 AA 9E][E3 82 92][E4 BD 20][E3 81 84][E3 81 9F]
[E3 81 84][E3 81 AA][E3 82 20][E7 20 81][E9 81 20].

The runes which has '0x20' in that UTF-8 sequence are destroyed,
but the others are written right. Here, I enclosed one Kanji
character(rune) in [].

Couldn't we stop this translation from '0x20' to '0x0a'?

Kenji


[-- Attachment #2: Type: message/rfc822, Size: 1634 bytes --]

From: okamoto@granite.cias.osakafu-u.ac.jp
To: 9fans@cse.psu.edu
Subject: Re: [9fans] plan 9 wiki experiment
Date: Fri, 2 Feb 2001 11:24:56 0900
Message-ID: <20010202022519.F362F199D5@mail.cse.psu.edu>

>Excellent page, but by no means the first!

Captain nemo?

By the way, utf-8 will not pass safely. --> Russ

Kenji

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-02  2:24 okamoto
  0 siblings, 0 replies; 19+ messages in thread
From: okamoto @ 2001-02-02  2:24 UTC (permalink / raw)
  To: 9fans

>Excellent page, but by no means the first!

Captain nemo?

By the way, utf-8 will not pass safely. --> Russ

Kenji



^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-01 12:20 nigel
  2001-02-05  6:07 ` Dan Cross
  0 siblings, 1 reply; 19+ messages in thread
From: nigel @ 2001-02-01 12:20 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

> Ahh, Dan you are the first person to do it!  Congratulations!

> >I should have read the Wiki syntax guide before

Excellent page, but by no means the first!



[-- Attachment #2: Type: message/rfc822, Size: 1390 bytes --]

From: okamoto@granite.cias.osakafu-u.ac.jp
To: 9fans@cse.psu.edu
Subject: Re: [9fans] plan 9 wiki experiment
Date: Thu, 1 Feb 2001 13:28:39 0900
Message-ID: <20010201042842.0AF9D199D7@mail.cse.psu.edu>

Ahh, Dan you are the first person to do it!  Congratulations!

>I should have read the Wiki syntax guide before

This word is not for you, but to me.  :-)

>well, so I had to use FreeeBSD and netscape.  Oh well....

However, the result is same.  yes, I've read your article there.

Kenji

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-01  4:28 okamoto
  0 siblings, 0 replies; 19+ messages in thread
From: okamoto @ 2001-02-01  4:28 UTC (permalink / raw)
  To: 9fans

Ahh, Dan you are the first person to do it!  Congratulations!

>I should have read the Wiki syntax guide before

This word is not for you, but to me.  :-)

>well, so I had to use FreeeBSD and netscape.  Oh well....

However, the result is same.  yes, I've read your article there.

Kenji



^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-02-01  3:01 okamoto
  0 siblings, 0 replies; 19+ messages in thread
From: okamoto @ 2001-02-01  3:01 UTC (permalink / raw)
  To: 9fans

Congratulations!
This is a very interesting experiment.

I access it by your Acme client, and tried to add a new Edit link, such as
Internationalization in the first page.  I chose 'New' menu command, and
set a first line as its title like "INTERNATIONALIZATION" and wrotea short
sentence below.  Then, I clicked 'put' command.  Can this new page appear?

Kenji



^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-01-31 18:06 nemo
  0 siblings, 0 replies; 19+ messages in thread
From: nemo @ 2001-01-31 18:06 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 80 bytes --]

I think is would interest others as well.
Regarding the wiki port number...


[-- Attachment #2: Type: message/rfc822, Size: 814 bytes --]

From: rsc@plan9.bell-labs.com
To: nemo@gsyc.escet.urjc.es
Subject: Re: [9fans] plan 9 wiki experiment
Date: Wed, 31 Jan 2001 06:48:50 -0500
Message-ID: <200101311148.GAA15163@smtp4.fas.harvard.edu>

i just realized i forgot that.
it's 17035 for both tcp and il.

^ permalink raw reply	[flat|nested] 19+ messages in thread
* Re: [9fans] plan 9 wiki experiment
@ 2001-01-31 11:57 Russ Cox
  2001-02-01  4:03 ` Dan Cross
  0 siblings, 1 reply; 19+ messages in thread
From: Russ Cox @ 2001-01-31 11:57 UTC (permalink / raw)
  To: 9fans

The port information along with a couple-sentence
explanation of the browser is linked off the
main wiki page as "Acme wiki instructions".

Russ


^ permalink raw reply	[flat|nested] 19+ messages in thread
* [9fans] plan 9 wiki experiment
@ 2001-01-31 11:27 Russ Cox
  2001-02-01  8:08 ` Quinn Dunkan
  0 siblings, 1 reply; 19+ messages in thread
From: Russ Cox @ 2001-01-31 11:27 UTC (permalink / raw)
  To: 9fans

I have set up a Plan 9 wiki.

A wiki is a web server that anyone on the 
internet can edit, traditionally by using 
a web browser.  The one I have set up is a 
bit different from the others since it can
be accessed either using a web browser or
using an Acme client.  The wiki itself is
provided by a file system (what else?) that
runs underneath the web server or underneath
the Acme client.  This means that it is equally
accessible to Plan 9 and non-Plan 9 users.

I have seeded the wiki with the contents of
the Plan 9 "Getting Started" document, but my
hope is that various readers of this list will
find it worth their while to fix up or add 
whatever they feel is wrong, unclear, or missing.
I think that collectively we can do a good job
of presenting useful information in an accessible
manner.  Recent converts especially may have a much
better feel for what needs more explanation than
is currently there.

There is, of course, a huge potential for abuse.
Please don't.  If the server fills with various
objectionable material, we'll take it down, and
I really don't want to do that.

The web interface is at 
http://plan9.bell-labs.com/wiki/plan9,
and you can download the Acme client from
the usual updates page.

Enjoy.

Russ


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2001-02-05 18:55 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-02-02  8:12 [9fans] plan 9 wiki experiment okamoto
  -- strict thread matches above, loose matches on Subject: below --
2001-02-02 13:51 nemo
2001-02-02  5:05 rsc
2001-02-02  4:56 rob pike
2001-02-02  4:55 rsc
2001-02-02  4:49 okamoto
2001-02-02  2:24 okamoto
2001-02-01 12:20 nigel
2001-02-05  6:07 ` Dan Cross
2001-02-01  4:28 okamoto
2001-02-01  3:01 okamoto
2001-01-31 18:06 nemo
2001-01-31 11:57 Russ Cox
2001-02-01  4:03 ` Dan Cross
2001-01-31 11:27 Russ Cox
2001-02-01  8:08 ` Quinn Dunkan
2001-02-01  8:01   ` Dan Cross
     [not found]     ` <cross@math.psu.edu>
2001-02-01 19:38       ` Tom Duff
2001-02-05 18:55         ` Dan Cross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).