This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
871
Features / Re: New revs
« on April 21st, 2014, 01:48 PM »
[Commit revision fd1be2b]
Author: Nao
Date: Mon, 21 Apr 2014 13:48:39 +0200
Stats: 1 file changed; +2 (insertions), -0 (deletion)
Date: Mon, 21 Apr 2014 13:48:39 +0200
Stats: 1 file changed; +2 (insertions), -0 (deletion)
- Forgot to deal with the page index padding. (index.css)
872
Features / Re: New revs
« on April 21st, 2014, 01:41 PM »
[Commit revision a1cf8ad]
Author: Nao
Date: Mon, 21 Apr 2014 13:28:46 +0200
Stats: 3 files changed; +30 (insertions), -4 (deletions)
[Commit revision 810aaf4]
Author: Nao
Date: Mon, 21 Apr 2014 13:30:32 +0200
Stats: 1 file changed; +11 (insertions), -0 (deletion)
[Commit revision 540a1d6]
Author: Nao
Date: Mon, 21 Apr 2014 13:33:36 +0200
Stats: 1 file changed; +10 (insertions), -7 (deletions)
Date: Mon, 21 Apr 2014 13:28:46 +0200
Stats: 3 files changed; +30 (insertions), -4 (deletions)
- Added proper separation between blog posts and comments. In effect, the page index is now shown AFTER the main blog post. Internally, these tweaks intend to show a few of the features in the skin/skeleton system: ability to add a block dynamically (already well known), ability to pass a variable to said block, ability to access the variable from before/after blocks, and ability for Wedge to rock your socks off. (Display.php, Display.template.php, sections.css)
- Harmonizing flexbox and non-flexbox posts by setting the poster width to 20% across both. Until I'm bored with that..? (sections.css)
[Commit revision 810aaf4]
Date: Mon, 21 Apr 2014 13:30:32 +0200
Stats: 1 file changed; +11 (insertions), -0 (deletion)
- Added a strihas() helper function, which is basically strhas() but case-insensitive. Since this kind of test is usually done with lowercase strings, I don't really see the need to waste cycles lowercasing the array strings, so I'm going to assume lowercase strings are passed to it. Right..? (Subs.php)
[Commit revision 540a1d6]
Date: Mon, 21 Apr 2014 13:33:36 +0200
Stats: 1 file changed; +10 (insertions), -7 (deletions)
- Harmonized team credits with software credits. (Who.template.php)
874
Features / Re: New revs
« on April 20th, 2014, 09:06 AM »
[Commit revision c8509e4]
Author: Nao
Date: Sun, 20 Apr 2014 09:06:34 +0200
Stats: 2 files changed; +24 (insertions), -19 (deletions)
Date: Sun, 20 Apr 2014 09:06:34 +0200
Stats: 2 files changed; +24 (insertions), -19 (deletions)
- Added a minification variant for PHP that retains all whitespace, but removes comments and replaces them with empty lines (to allow for easy debugging from a line number). Enabled it for everyone. (Subs-Minify.php, index.php)
- Enabling debugging from the admin area will actually, properly disable aforementioned PHP caching. Previously, Wedge was acting as if debugging was enabled or disabled for everyone, but it didn't matter (much), because I'd disabled it anyway. (index.php)
875
Archived fixes / [Installer] Re: Blank screen and errors
« on April 19th, 2014, 09:17 AM »
Yes no..?
876
Archived fixes / [Installer] Re: Blank screen and errors
« on April 17th, 2014, 11:23 PM »
That should fix it... Please keep me posted. Honestly I haven't tested.
877
Features / Re: New revs
« on April 17th, 2014, 11:22 PM »
[Commit revision 91fcd11]
Author: Nao
Date: Thu, 17 Apr 2014 23:22:07 +0200
Stats: 1 file changed; +1 (insertion), -1 (deletion)
Date: Thu, 17 Apr 2014 23:22:07 +0200
Stats: 1 file changed; +1 (insertion), -1 (deletion)
- Fixing raw installs. I hope. I always hope. Hope is important, even if it doesn't get you anywhere. (install.php)
878
Features / [Poll] Re: Board status icons: what's the point?
« on April 17th, 2014, 04:46 PM »
Yup, all good for me... And everyone else I guess. No comments = no complaints. ;)
880
Archived fixes / [Installer] Re: Blank screen and errors
« on April 17th, 2014, 04:42 PM »
What's the value of $_SESSION['installer_temp_lang']..?
881
Archived fixes / [Installer] Re: Sub language folders are not recognized
« on April 17th, 2014, 03:21 PM »
Split the rest into its own topic. This particular topic -- fixed!
882
Archived fixes / Re : Re: [Installer] Sub language folders are not recognized
« on April 17th, 2014, 03:19 PM »
Fixed. Somehow...
The remaining problem is with 'php' tags. They act like a code tag, but yet aren't 'protected' the same way. What a bother... :-/ I could do the preparsing for them the same way, but then if you end up typing something like (code)hello (php)world();(/php)(/code), all hell will break loose.
Heck, thinking about it, if you're trying to play with NESTING code tags, the SMF (and thus Wedge) code will probably fail to protect them. It really, REALLY assumes that you're politely using a series of self-closed code tags, and nothing more.
The remaining problem is with 'php' tags. They act like a code tag, but yet aren't 'protected' the same way. What a bother... :-/ I could do the preparsing for them the same way, but then if you end up typing something like (code)hello (php)world();(/php)(/code), all hell will break loose.
Heck, thinking about it, if you're trying to play with NESTING code tags, the SMF (and thus Wedge) code will probably fail to protect them. It really, REALLY assumes that you're politely using a series of self-closed code tags, and nothing more.
883
Features / Re: New revs
« on April 17th, 2014, 03:15 PM »
[Commit revision cd033a7]
Author: Nao
Date: Thu, 17 Apr 2014 15:15:18 +0200
Stats: 1 file changed; +3 (insertions), -3 (deletions)
Date: Thu, 17 Apr 2014 15:15:18 +0200
Stats: 1 file changed; +3 (insertions), -3 (deletions)
- Protecting ampersands inside code and nobbc tags. Basically, they're parsed outside of them because you may want to output an entity that you don't know how to reproduce on your device (UTF-8 is great, but not the answer to everything), but inside these tags they really need to be left alone... I don't know how it got uncaught for so long. (Class-Editor.php)
884
Features / Re: New revs
« on April 17th, 2014, 11:28 AM »
[Commit revision 41f2f76]
Author: Nao
Date: Thu, 17 Apr 2014 09:24:05 +0200
Stats: 1 file changed; +10 (insertions), -4 (deletions)
[Commit revision ce02927]
Author: Nao
Date: Thu, 17 Apr 2014 09:26:03 +0200
Stats: 1 file changed; +2 (insertions), -1 (deletion)
[Commit revision 9a04e58]
Author: Nao
Date: Thu, 17 Apr 2014 09:28:47 +0200
Stats: 1 file changed; +3 (insertions), -4 (deletions)
[Commit revision 69b712f]
Author: Nao
Date: Thu, 17 Apr 2014 09:48:59 +0200
Stats: 1 file changed; +1 (insertion), -1 (deletion)
[Commit revision 7908c13]
Author: Nao
Date: Thu, 17 Apr 2014 11:28:12 +0200
Stats: 2 files changed; +22 (insertions), -7 (deletions)
Date: Thu, 17 Apr 2014 09:24:05 +0200
Stats: 1 file changed; +10 (insertions), -4 (deletions)
- Reused board index's color stripes for sub-board lists in board pages. (MessageIndex.template.php)
[Commit revision ce02927]
Date: Thu, 17 Apr 2014 09:26:03 +0200
Stats: 1 file changed; +2 (insertions), -1 (deletion)
- There's no alpha version... Just an alpha session. Okay? (changelog.txt)
[Commit revision 9a04e58]
Date: Thu, 17 Apr 2014 09:28:47 +0200
Stats: 1 file changed; +3 (insertions), -4 (deletions)
- And there's no 'mailq' action. That's an SMF bug, and it's also in recent versions/forks. (index.php)
[Commit revision 69b712f]
Date: Thu, 17 Apr 2014 09:48:59 +0200
Stats: 1 file changed; +1 (insertion), -1 (deletion)
- I said, no alpha version number! There's a snapshot number if you really want it... (index.php)
[Commit revision 7908c13]
Date: Thu, 17 Apr 2014 11:28:12 +0200
Stats: 2 files changed; +22 (insertions), -7 (deletions)
- Added support for language sub-folders to the installer. (install.php)
- Fixed language selector (selected language and positioning.) (install.php, install.css)
885
Archived fixes / Re : Re: [Installer] Sub language folders are not recognized
« on April 17th, 2014, 11:14 AM »
What bug are you talking about..? I'm not seeing <> etc. transformations..?
Also, I finished tweaking the installer. I fixed the language fixing bug, etc. I'll commit that soon.
Also, I finished tweaking the installer. I fixed the language fixing bug, etc. I'll commit that soon.