Nao

  • With a Box
  • If you say so.....
  • Posts: 12,893
[FAQ] What is Wedge?
« on October 1st, 2010, 06:30 PM » Last edited on January 11th, 2012, 07:23 AM
WHAT is Wedge?



- Wedge is a fork of SMF. To be clear, SMF is Simple Machines Forum, a forum (bulletin board) system that is free to use on your own web server. When it became apparent that SMF 2.0 would be released in an open source license, we used the opportunity to 'fork' it, that is, create a new software based on the same code, going in a different direction. Hopefully an interesting one!

- Our current target release dates: early 2012 for the demo, an alpha version one to three months later, a beta version one to three months after that, and summer/autumn 2012 for the stable release.
...« I say wedge wedge (in the butt) »
 « Everyone knows rock attained perfection in 1974. It's a scientific fact. » (Homer Simpson)

Nao

  • With a Box
  • If you say so.....
  • Posts: 12,893
[FAQ] Re: What is Wedge?
« Reply #31 on November 28th, 2011, 10:05 PM »
Back on 2003 I used Spip.net and it had a much better presentation code system. { for italics, {{ for bold, it had code for footnotes too and intertitles. I missed footnotes, hence why they're in Wedge.
http://dossiers.cyna.fr was built with Spip.
...« I say wedge wedge (in the butt) »
 « Everyone knows rock attained perfection in 1974. It's a scientific fact. » (Homer Simpson)

AngelinaBelle

  • We-Gen
  • Still thinking...
  • Posts: 90
[FAQ] Re: What is Wedge?
« Reply #32 on November 29th, 2011, 02:18 AM »
I tend to use html tables on a wiki. I like the html passthrough.
I'm not sure, either, how wikitable syntax is easier than HTML.
Either wikitable or HTML beats BBcode for tables. No styling, no padding, no margins = ugly BBcode tables.
I'm an SMF doc writer.

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #33 on November 29th, 2011, 02:27 AM »
Let me clarify one thing right now.

The lack of styling, padding and margins is not a flaw of bbcode as a whole. It's a limitation *solely imposed in SMF* through one of the more... irritating 'features' it has, one of which I will be happy to note is the source of a bug that's *years* old and still not fixed because no-one wants to do the work required to fix it, which is more than a few lines of tweaking but gutting the bbcode preparser and rebuilding it.[1]

The other thing about using the html passthrough is the inherent insecurity of doing so...

As far as wikitable syntax, I'm assuming we're both thinking of the same thing, using | and - and { and } to indicate structure *shudder*.
 1. Specifically, while there is, on the surface, nothing preventing adding such attributes to the table bbcode, the way certain common structures are validated will specifically break doing so, because it will assume that it's invalid markup simply because it's not a basic table tag containing a basic tr tag. It's a flaw of a specific implementation, not of the overall concept.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


AngelinaBelle

  • We-Gen
  • Still thinking...
  • Posts: 90
[FAQ] Re: What is Wedge?
« Reply #34 on December 1st, 2011, 05:03 PM »
Starting starting over from scratch with parse_bbc might be in order.
The current design requirements for a replacement would be a bit different from the original design requirements. Times have changed.

Not only "better formatting" but also ways to use a limited bbcode set in an embedded AJAX thingy (chat or other thingy) without affecting the bbcode set available for rendering the main content of the page. etc.
Not to mention -- optimization. [Unknown] said he had to reject regexp in parse_bbc, because he realized that, though it would normally be faster, there could be some "weird posts" that would take ridiculously long to parse using a regexp-based parser.
I'm an SMF doc writer.

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #35 on December 1st, 2011, 05:18 PM »
There is already a shortened version of parse_bbc for such inline purposes, as it happens.

As for the rejection of regexp, yup such things are called ReDoS situations where a badly crafted post could tie the parser up, denying service to others. I actually don't dislike what Unknown has done in the original parse_bbc actually, I just wish it were faster, but the real problem isn't the parser, but the pre parser, which I think is ultimately going to have to be rewritten.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


Nao

  • With a Box
  • If you say so.....
  • Posts: 12,893
[FAQ] Re: What is Wedge?
« Reply #36 on December 1st, 2011, 07:54 PM »
I've proven recently that a series of strpos calls could actually be faster than even a well crafted regex. The regex is still available for comparison in a comment.

That reminds me. Pete, could you deal with adding the prepare code to thoughts? It shouldn't be too annoying as they're only treated in Ajax.php. Or just remind me when I'm on my pc.
Posted: December 1st, 2011, 06:16 PM

Added it myself...
Just one thing to note.
Before wedit::preparsecode, used in various places around Wedge, there's always an htmlspecialchars() call.
Well, while I'm wary of this kind of thing being done (because maybe it should be done inside preparsecode itself if we're going to make life easier for modders...), I did notice an intriguing detail: sometimes it's called without arguments, and sometimes it's called with ENT_QUOTES.
I have a feeling this is something that is due to different devs doing the code at different points in time, and maybe we should harmonize everything. Shouldn't we...? I'd suggest removing all ENT_QUOTES and maybe even push for ENT_NOQUOTES... Because I can't think of a reason to protect parsed BBC against quotes.

Also -- maybe add the double_encode param while we're at it?
...« I say wedge wedge (in the butt) »
 « Everyone knows rock attained perfection in 1974. It's a scientific fact. » (Homer Simpson)

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #37 on December 2nd, 2011, 01:01 AM »
Hmm. Such a thing is not simple because the preparse step is called in different ways at different times (like it's called inside sendpm as opposed to sendpm expecting it to be already done like createPost does)

The times it's called with ENT_QUOTES is where it expects to see a ' and/or a " to deal with. In posts, that is a valid situation to deal with, especially since it can manifest itself in a slightly disturbing way, notably that not doing it might potentially lead to a vulnerability. I'm not sufficiently comfortable with turning it into NOQUOTES for that reason.

Harmonisation, yes. Probably even moving it all into preparsecode, but with the caveat that it will require more than just moving a few calls, as sendpm will need updating.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


Bugo

  • Posts: 4
[FAQ] Re: What is Wedge?
« Reply #38 on January 11th, 2012, 01:56 AM »
Quote from Nao on October 1st, 2010, 06:30 PM
Our target release dates: late 2011 for the demo
Where is demo?

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #39 on January 11th, 2012, 02:50 AM »
I'm sorry, I missed the part where 'target' became 'irreversible deadline'. Probably all the personal crap I had going on made me miss that memo.

There is a demo. It isn't public, but invitation only at this time.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


Nao

  • With a Box
  • If you say so.....
  • Posts: 12,893
[FAQ] Re: What is Wedge?
« Reply #40 on January 11th, 2012, 07:24 AM »
Chuck Norris is already using the final version. He's also the one who edited the original post for more realistic dates. :P

Anyway... I'll do my best to have the demo online this months. i.e. within the next two weeks.
...« I say wedge wedge (in the butt) »
 « Everyone knows rock attained perfection in 1974. It's a scientific fact. » (Homer Simpson)

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #41 on January 11th, 2012, 12:47 PM »
* Lurker just gets annoyed when people don't realise that deadlines are a fiction created by an arbitrary guess at the future based on incomplete data at the time and are thus entirely prone to being changeable.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


Nao

  • With a Box
  • If you say so.....
  • Posts: 12,893
[FAQ] Re: What is Wedge?
« Reply #42 on January 11th, 2012, 01:36 PM »
You can reasonably expect a film producer to give you a deadline, but not someone working on something without any constraints. As long as it doesn't end like the DNF story... :P
...« I say wedge wedge (in the butt) »
 « Everyone knows rock attained perfection in 1974. It's a scientific fact. » (Homer Simpson)

Dismal Shadow

  • Madman in a Box
  • Talking Head
  • Me: Who is Arantor? Cleverbot: It stands for time and relative dimensions in space.
  • Posts: 1,184
[FAQ] Re: What is Wedge?
« Reply #43 on January 11th, 2012, 03:32 PM » Last edited on January 11th, 2012, 07:31 PM by ~DS~
“I will stand on my ground as an atheist until your god shows up...If my irreligious bothers you much, and if you think everything I do is heresy to your god I don't care. Heresy is for those who believe, I don't. So, it isn't heresy at all!


   Jack in, Wedge,
   EXECUTE!

Arantor

  • With a Box
  • As long as the planets are turning, as long as the stars are burning, as long as your dreams are coming true...
  • Posts: 13,594
[FAQ] Re: What is Wedge?
« Reply #44 on January 11th, 2012, 03:36 PM »
The Doctor: Oops.
  When we unite against a common enemy that attacks our ethos, it nurtures group solidarity. Trolls are sensational, yes, but we keep everyone honest.


stackmouse

  • Freshman
  • <--- Oh, I like this!
  • Posts: 28
[FAQ] Re: What is Wedge?
« Reply #45 on January 11th, 2012, 07:16 PM »
 :bravo: :youretheboss: