SourceForge logo
SourceForge logo
Menu

phpwiki-talk

From: Reini U. <ru...@x-...> - 2008年08月03日 17:25:06
FYI
Marc-Etienne Vargenau just added:
 Implement Wikicreole headers
 Implement Wikicreole syntax for subscript
 Implement Wikicreole syntax for line break
 Implement Wikicreole syntax for links
 Implement "{{foo?version=5}}" syntax for templates
and several minor fixes to CVS.
Thanks!
-- 
Reini Urban
http://phpwiki.org/ http://murbreak.at/
From: Marc-Etienne V. <Mar...@al...> - 2008年08月04日 15:45:21
Reini Urban a écrit :
> FYI
> Marc-Etienne Vargenau just added:
> Implement Wikicreole headers
> Implement Wikicreole syntax for subscript
> Implement Wikicreole syntax for line break
> Implement Wikicreole syntax for links
> Implement "{{foo?version=5}}" syntax for templates
> 
> and several minor fixes to CVS.
> Thanks!
Hello to all,
Concerning the Wikicreole headers, what should work is
== My title
=== My subtitle
What does not yet work is
== My title ==
=== My subtitle ===
(Mediawiki style)
Reini, can you have a look in file BlockParser.php
class Block_heading_wikicreole
for the best way to do that?
I am currently working on CreateToc plugin so that the
Wikicreole headers are taken into account.
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
From: Marc-Etienne V. <Mar...@al...> - 2008年08月04日 15:56:19
Reini Urban a écrit :
> FYI
> Marc-Etienne Vargenau just added:
> Implement Wikicreole headers
> Implement Wikicreole syntax for subscript
> Implement Wikicreole syntax for line break
> Implement Wikicreole syntax for links
> Implement "{{foo?version=5}}" syntax for templates
> 
> and several minor fixes to CVS.
> Thanks!
Hello to all,
Concerning the Wikicreole syntax for links,
the syntax [[foo]] almost works in the sense
that a link names "foo" is created, but is displayed
with a extra ']'.
Reini, can you have a look in file InlineParser.php
class Markup_bracketlink extends SimpleMarkup
{
 var $_match_regexp = "\\#? \\[ .*? [^]\\s] .*? \\]";
 // TODO: include second ] in regexp
Thank you in advance.
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
From: Sabri L. <sab...@gm...> - 2008年08月05日 07:33:28
On Mon, Aug 4, 2008 at 5:42 PM, Marc-Etienne Vargenau <
Mar...@al...> wrote:
> Reini Urban a écrit :
> > FYI
> > Marc-Etienne Vargenau just added:
> > Implement Wikicreole headers
> > Implement Wikicreole syntax for subscript
> > Implement Wikicreole syntax for line break
> > Implement Wikicreole syntax for links
> > Implement "{{foo?version=5}}" syntax for templates
> >
> > and several minor fixes to CVS.
> > Thanks!
>
Thanks Marc-Etienne for this good initiative.
> Hello to all,
>
> Concerning the Wikicreole headers, what should work is
>
> == My title
> === My subtitle
>
> What does not yet work is
>
> == My title ==
> === My subtitle ===
>
> (Mediawiki style)
>
> Reini, can you have a look in file BlockParser.php
>
> class Block_heading_wikicreole
>
> for the best way to do that?
>
> I am currently working on CreateToc plugin so that the
> Wikicreole headers are taken into account.
>
While you're in, could you please check if there is something wrong in
numbering code! There is a bug in CreateToc plugin numbering. I can't find
the exact scenario to reproduce it. What is happening is that top level
sections numbers are sometimes like X.X while they should be X.
I didn't tried the new creole markup yet. I use '!' for headings.
I would also like to address the point related to non creole wiki pages
conversion to a creole syntax. Is it possible ?
Cheers,
-- Sabri.
From: Marc-Etienne V. <Mar...@al...> - 2008年08月20日 09:07:48
Sabri LABBENE a écrit :
> Marc-Etienne Vrgenau a écrit : 
> I am currently working on CreateToc plugin so that the
> Wikicreole headers are taken into account.
> 
> While you're in, could you please check if there is something wrong in 
> numbering code! There is a bug in CreateToc plugin numbering. I can't 
> find the exact scenario to reproduce it. What is happening is that top 
> level sections numbers are sometimes like X.X while they should be X.
> I didn't tried the new creole markup yet. I use '!' for headings.
Hello Sabri,
The numbering bug is corrected.
// $Log: CreateToc.php,v $
// Revision 1.43 2008年08月19日 18:29:12 vargenau
// Correct TOC numbering
I have also added letter and roman numbering. Enjoy!
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
From: Sabri L. <sab...@st...> - 2008年08月20日 11:52:41
Marc-Etienne Vargenau wrote:
>Sabri LABBENE a écrit :
>> Marc-Etienne Vrgenau a écrit : 
>> I am currently working on CreateToc plugin so that the
>> Wikicreole headers are taken into account.
>> 
>> While you're in, could you please check if there is 
>something wrong in 
>> numbering code! There is a bug in CreateToc plugin 
>numbering. I can't 
>> find the exact scenario to reproduce it. What is happening is that 
>> top level sections numbers are sometimes like X.X while they 
>should be X.
>> I didn't tried the new creole markup yet. I use '!' for headings.
>
>Hello Sabri,
>
>The numbering bug is corrected.
>
>// $Log: CreateToc.php,v $
>// Revision 1.43 2008年08月19日 18:29:12 vargenau // Correct TOC 
>numbering
Oh! Good catch !
Thanks for the fix.
>I have also added letter and roman numbering. Enjoy!
And how we use them (letters and roman numbers) ?
May be it’s a good idea to update the help page :)
Best Regards,
-- Sabri.
From: Marc-Etienne V. <Mar...@al...> - 2008年08月20日 12:02:06
Sabri LABBENE a écrit :
> Marc-Etienne Vargenau wrote:
>> The numbering bug is corrected.
>>
>> // $Log: CreateToc.php,v $
>> // Revision 1.43 2008年08月19日 18:29:12 vargenau // Correct TOC 
>> numbering
> 
> Oh! Good catch !
> Thanks for the fix.
> 
>> I have also added letter and roman numbering. Enjoy!
> 
> And how we use them (letters and roman numbers) ?
> May be it’s a good idea to update the help page :)
Hello Sabri,
In fact I updated the documentation before I released
the code :-)
http://phpwiki.cvs.sourceforge.net/phpwiki/phpwiki/pgsrc/Help%252FCreateTocPlugin?r1=1.5&r2=1.6
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
From: Sabri L. <sab...@gm...> - 2008年08月20日 12:41:36
On Wed, Aug 20, 2008 at 1:58 PM, Marc-Etienne Vargenau <
Mar...@al...> wrote:
> Sabri LABBENE a écrit :
> > Marc-Etienne Vargenau wrote:
> >> The numbering bug is corrected.
> >>
> >> // $Log: CreateToc.php,v $
> >> // Revision 1.43 2008年08月19日 18:29:12 vargenau // Correct TOC
> >> numbering
> >
> > Oh! Good catch !
> > Thanks for the fix.
> >
> >> I have also added letter and roman numbering. Enjoy!
> >
> > And how we use them (letters and roman numbers) ?
> > May be it's a good idea to update the help page :)
>
> Hello Sabri,
>
> In fact I updated the documentation before I released
> the code :-)
>
>
> http://phpwiki.cvs.sourceforge.net/phpwiki/phpwiki/pgsrc/Help%252FCreateTocPlugin?r1=1.5&r2=1.6
>
> Great !
Thanks,
-- Sabri.
From: Sabri L. <sab...@gm...> - 2008年08月20日 12:59:24
On Wed, Aug 20, 2008 at 2:41 PM, Sabri LABBENE <sab...@gm...>wrote:
>
>
> On Wed, Aug 20, 2008 at 1:58 PM, Marc-Etienne Vargenau <
> Mar...@al...> wrote:
>
>> Sabri LABBENE a écrit :
>> > Marc-Etienne Vargenau wrote:
>> >> The numbering bug is corrected.
>> >>
>> >> // $Log: CreateToc.php,v $
>> >> // Revision 1.43 2008年08月19日 18:29:12 vargenau // Correct TOC
>> >> numbering
>> >
>> > Oh! Good catch !
>> > Thanks for the fix.
>> >
>> >> I have also added letter and roman numbering. Enjoy!
>> >
>> > And how we use them (letters and roman numbers) ?
>> > May be it's a good idea to update the help page :)
>>
>> Hello Sabri,
>>
>> In fact I updated the documentation before I released
>> the code :-)
>>
>>
>> http://phpwiki.cvs.sourceforge.net/phpwiki/phpwiki/pgsrc/Help%252FCreateTocPlugin?r1=1.5&r2=1.6
>>
>> Great !
>
Still another issue in TOC titles.
When you try to escape a wikiword in a heading title, the "~" char will be
displayed in the title inside the TOC.
Cheers,
-- Sabri.
From: Marc-Etienne V. <Mar...@al...> - 2008年08月21日 11:32:15
Sabri LABBENE a écrit :
> 
> Still another issue in TOC titles.
> When you try to escape a wikiword in a heading title, the "~" char will 
> be displayed in the title inside the TOC.
Hello,
The problem is even worse than that. See Help page.
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
From: Reini U. <ru...@x-...> - 2008年08月05日 08:39:24
2008年8月4日 Marc-Etienne Vargenau:
> Reini, can you have a look in file InlineParser.php
>
> class Markup_bracketlink extends SimpleMarkup
> {
> var $_match_regexp = "\\#? \\[ .*? [^]\\s] .*? \\]";
> // TODO: include second ] in regexp
Sure, but this week I'm on a business trip in germany and will
rarely have to time to debug though the InlineParser and BlockParser.
This is really hairy and we'll have to get the order of regexp's right.
I rather want to hide WikiCreole support behind a ENABLE_WIKICREOLE
and add those checks behind that.
WikiCreole should be supported at all (config-default: = TRUE), but who knows,
maybe we get into hairy parser problems and then we can easily disable that
as fallback.
-- 
Reini Urban
http://phpwiki.org/ http://murbreak.at/
From: Marc-Etienne V. <Mar...@al...> - 2008年08月05日 09:02:40
Reini Urban a écrit :
> 2008年8月4日 Marc-Etienne Vargenau:
>> Reini, can you have a look in file InlineParser.php
>>
>> class Markup_bracketlink extends SimpleMarkup
>> {
>> var $_match_regexp = "\\#? \\[ .*? [^]\\s] .*? \\]";
>> // TODO: include second ] in regexp
> 
> Sure, but this week I'm on a business trip in germany and will
> rarely have to time to debug though the InlineParser and BlockParser.
> This is really hairy and we'll have to get the order of regexp's right.
> 
> I rather want to hide WikiCreole support behind a ENABLE_WIKICREOLE
> and add those checks behind that.
> WikiCreole should be supported at all (config-default: = TRUE), but who knows,
> maybe we get into hairy parser problems and then we can easily disable that
> as fallback.
Hello,
No problem, it is not urgent. I will be on vacation till 17 August.
I did not do it precisely because I was not sure to get the regexp right.
Best regards,
Marc-Etienne
-- 
================================================================== ------
| Marc-Etienne Vargenau | / \
| Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE | / /|'` \
| +33 (0)1 30 77 28 33, Mar...@al... | | /'| ' |
================================================================== \ |/ /
| L'essence des Mathématiques est dans leur liberté. | \ /
| Georges Cantor | ------
==================================================================
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /