Search Results
Searched for posts by capristo in all forums

Showing results 1231 - 1240 out of 1645 total
Modify your search
Posted by capristo, May 1, 2009 at 7:47 am
Ok done. what tag do you want to use? right now it is [ strike ] but I can change it to something simpler. the HTML tag is <del> for example

I will be adding a button as well button added
Posted by capristo, Apr 26, 2009 at 3:52 am
Ahh, thanks for pointing that out Eagle, I fixed it. And I made the editing & normal now
Posted by capristo, Apr 25, 2009 at 4:45 pm
after somebody figures why I'm laughing about this, I can fix it, don't worry
Posted by capristo, Apr 25, 2009 at 4:44 pm
bahahahahaha. This will make more sense to people with programming experience

ok so what quickedit does is send the text information through javascript like so:
stufftosend = 'text='+(text)+'&p='+(postnumber)+'&stuff='+(morestuff)...

so the reason the + signs were disappearing is, javascript uses + for string concatenation, and if it appears in quotes, it is just replaced by a blank space. The reason half of the posts were disappearing sometimes is that they contained an ampersand (or, an escaped character such as a " which is replaced by &quot; ). It interpreted that as a new value (so for example if you typed "this & that", it would think " that" is a new variable (in addition to text, p, and stuff). So that's why the text was disappearing.

The first thing I did was figure out how to replace + with the HTML equivalent &#43;
Of course the problem now was the + was causing the same problem as other ampersands, it deleted the remainder of the post. Since &'s html ascii is just &amp;, it's a recursive problem. So there was no way to possibly escape the &. So instead, I replace & with "sometext" and then when displaying the text in the topic, use php to revert "sometext" to &
Anyways, the point is, + and & no longer destroy posts or disappear. Try posting a post with them and quickediting it twice to find out exactly what "sometext" is
Posted by capristo, Apr 23, 2009 at 2:25 pm
Okay I'll work on that. In the mean time, if you didn't know, there is a link in the top right of the forum to "mark all forums read".. you can read all the topics you're interested in, then click that link.
Posted by capristo, Apr 22, 2009 at 5:37 am
I fixed that. It was a bug not a feature
Posted by capristo, Apr 21, 2009 at 5:07 pm
Congrats and welcome. That's an impressive score! I haven't beaten Izzy yet. Actually I haven't even encountered him outside of wizard mode I don't think
Posted by capristo, Apr 19, 2009 at 3:18 am
Yes I'll add that eventually, I just couldn't think of a good layout for a delete button
Posted by capristo, Apr 19, 2009 at 1:15 am
You can now upload multiple avatars! Your old ones are saved, so you can store several on the website, and easily switch to one you used before, without having to reupload the file.
Posted by capristo, Apr 18, 2009 at 4:23 am
Okay, I believe I've fixed the ghost message bug