Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-23 Thread Stuart Rackham



On 22/08/12 01:35, Cunningham, Robert wrote:

My solution was to globally replace all left square brackets with #91;

-BobC



Thank you for the suggestion, unfortunately if won't work in embedded style or
script tags. My original response (with examples and more details) was dropped
(twice) but I have since been able to post it to this thread:

http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg09434.html


Cheers, Stuart



-Original Message-
From: fossil-users-boun...@lists.fossil-scm.org [mailto:fossil-users-
boun...@lists.fossil-scm.org] On Behalf Of Stuart Rackham
Sent: Monday, August 20, 2012 10:21 PM
To: Fossil SCM user's discussion
Subject: Re: [fossil-users] Is there a way to disable wiki links when using
HTML?



On 21/08/12 17:08, rene wrote:

   nowiki?


I tried enveloping the HTML in the nowiki tag but it had not effect. I also took
a look at the the source in wikiformat.c for clues but it looks to me like the
nextRawToken() function is unconditionally parsing wiki links.



On Tue, 21 Aug 2012 05:10:04 +0200, fossil-users-bounces@lists.fossil-

scm.org wrote:

Hi

The text in my HTML wiki pages contains square brackets and they are
being translated into HTML links to non-existent wiki pages.  I've
ticked the 'Use HTML as wiki markup language' configuration option to
allow me to use pure HTML in my wiki pages but I've been unable to
find a way of disabling wiki links [...]. Does anyone know how I can
do this?

Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-user
s


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-22 Thread Rene

On 2012-08-21 07:21, Stuart Rackham wrote:

On 21/08/12 17:08, rene wrote:

  nowiki?


I tried enveloping the HTML in the nowiki tag but it had not effect.
I also took a look at the the source in wikiformat.c for clues but it
looks to me like the nextRawToken() function is unconditionally
parsing wiki links.


On Tue, 21 Aug 2012 05:10:04 +0200, 
fossil-users-boun...@lists.fossil-scm.org wrote:

Hi

The text in my HTML wiki pages contains square brackets and they 
are

being translated into HTML links to non-existent wiki pages.  I've
ticked the 'Use HTML as wiki markup language' configuration option 
to

allow me to use pure HTML in my wiki pages but I've been unable to
find a way of disabling wiki links [...]. Does anyone know how I 
can

do this?

Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Weird I just used
nowiki

h2this is a footnote /h2
[Footnote|http://localhost:8080/wikiedit]

/nowiki

and the link is not activated i just get plain 
[Footnote|http://localhost:8080/wikiedit]


I used Fossil version [b6a7e52c93] 2012-08-22 11:51:01
--
Rene
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-22 Thread Stuart Rackham



On 23/08/12 08:09, Rene wrote:

On 2012-08-21 07:21, Stuart Rackham wrote:

On 21/08/12 17:08, rene wrote:

  nowiki?


I tried enveloping the HTML in the nowiki tag but it had not effect.
I also took a look at the the source in wikiformat.c for clues but it
looks to me like the nextRawToken() function is unconditionally
parsing wiki links.



On Tue, 21 Aug 2012 05:10:04 +0200, fossil-users-boun...@lists.fossil-scm.org
wrote:

Hi

The text in my HTML wiki pages contains square brackets and they are
being translated into HTML links to non-existent wiki pages.  I've
ticked the 'Use HTML as wiki markup language' configuration option to
allow me to use pure HTML in my wiki pages but I've been unable to
find a way of disabling wiki links [...]. Does anyone know how I can
do this?

Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org

http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Weird I just used
nowiki

h2this is a footnote /h2
[Footnote|http://localhost:8080/wikiedit]

/nowiki

and the link is not activated i just get plain
[Footnote|http://localhost:8080/wikiedit]

I used Fossil version [b6a7e52c93] 2012-08-22 11:51:01


I think this is because  the 'Use HTML as wiki markup language' option is not 
ticked, I need it ticked so I can use unsantized HTML, if this option is not 
ticked tags not listed in http://fossil-scm.org/xfer/wiki_rules are escaped.
nowiki does suppress wiki links but only if the 'Use HTML as wiki markup 
language' option is ticked.


Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-21 Thread Cunningham, Robert
My solution was to globally replace all left square brackets with #91;

-BobC

 -Original Message-
 From: fossil-users-boun...@lists.fossil-scm.org [mailto:fossil-users-
 boun...@lists.fossil-scm.org] On Behalf Of Stuart Rackham
 Sent: Monday, August 20, 2012 10:21 PM
 To: Fossil SCM user's discussion
 Subject: Re: [fossil-users] Is there a way to disable wiki links when using
 HTML?
 
 
 
 On 21/08/12 17:08, rene wrote:
nowiki?
 
 I tried enveloping the HTML in the nowiki tag but it had not effect. I also 
 took
 a look at the the source in wikiformat.c for clues but it looks to me like the
 nextRawToken() function is unconditionally parsing wiki links.
 
 
  On Tue, 21 Aug 2012 05:10:04 +0200, fossil-users-bounces@lists.fossil-
 scm.org wrote:
  Hi
 
  The text in my HTML wiki pages contains square brackets and they are
  being translated into HTML links to non-existent wiki pages.  I've
  ticked the 'Use HTML as wiki markup language' configuration option to
  allow me to use pure HTML in my wiki pages but I've been unable to
  find a way of disabling wiki links [...]. Does anyone know how I can
  do this?
 
  Cheers, Stuart
  ___
  fossil-users mailing list
  fossil-users@lists.fossil-scm.org
  http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-user
  s
 
  ___
  fossil-users mailing list
  fossil-users@lists.fossil-scm.org
  http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


[fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-20 Thread Stuart Rackham

Hi

The text in my HTML wiki pages contains square brackets and they are
being translated into HTML links to non-existent wiki pages.  I've
ticked the 'Use HTML as wiki markup language' configuration option to
allow me to use pure HTML in my wiki pages but I've been unable to
find a way of disabling wiki links [...]. Does anyone know how I can
do this?

Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-20 Thread rene
 nowiki? 
On Tue, 21 Aug 2012 05:10:04 +0200, fossil-users-boun...@lists.fossil-scm.org 
wrote:
 Hi
 
 The text in my HTML wiki pages contains square brackets and they are
 being translated into HTML links to non-existent wiki pages.  I've
 ticked the 'Use HTML as wiki markup language' configuration option to
 allow me to use pure HTML in my wiki pages but I've been unable to
 find a way of disabling wiki links [...]. Does anyone know how I can
 do this?
 
 Cheers, Stuart
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Is there a way to disable wiki links when using HTML?

2012-08-20 Thread Stuart Rackham



On 21/08/12 17:08, rene wrote:

  nowiki?


I tried enveloping the HTML in the nowiki tag but it had not effect. I also took 
a look at the the source in wikiformat.c for clues but it looks to me like the 
nextRawToken() function is unconditionally parsing wiki links.




On Tue, 21 Aug 2012 05:10:04 +0200, fossil-users-boun...@lists.fossil-scm.org 
wrote:

Hi

The text in my HTML wiki pages contains square brackets and they are
being translated into HTML links to non-existent wiki pages.  I've
ticked the 'Use HTML as wiki markup language' configuration option to
allow me to use pure HTML in my wiki pages but I've been unable to
find a way of disabling wiki links [...]. Does anyone know how I can
do this?

Cheers, Stuart
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users