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.
3001
Archived fixes / Re: Admin search issues
« on July 23rd, 2012, 02:56 AM »
So, aside from the internal mess of the admin search (and, sadly, I don't see a better way to deal with it!), is there anything about it that doesn't work as expected?
From my perspective, there's a few minor areas that could be cleaned up and made sure to be added to it - but I'm thinking that's almost into overkill territory at this point. (E.g. we could make all the possible custom field templates into searchable items.)
From my perspective, there's a few minor areas that could be cleaned up and made sure to be added to it - but I'm thinking that's almost into overkill territory at this point. (E.g. we could make all the possible custom field templates into searchable items.)
3002
Bug reports / Re: Reply post showing as 'New'
« on July 23rd, 2012, 02:55 AM »
I'm still not sure how best to deal with this particular little quagmire. I'm sure SMF's solution is not the best, but at the same time I'm not sure how best to fix it, since I'm not sure I'd want it to flag a given board as read if I've only replied to something very new.
Perhaps we should just do that, if your post is the newest in a given board, mark the board as read.
Perhaps we should just do that, if your post is the newest in a given board, mark the board as read.
3003
Archived fixes / Re: Time offset (auto detect)
« on July 23rd, 2012, 02:53 AM »
Hmm, I can't remember what else I need to do with this >_>
3004
The Pub / Re: Some admin options required
« on July 23rd, 2012, 02:36 AM »3. Feeds
There's no way to have feeds active but disable the feed block in the sidebar. Do we need an option for that somewhere?
3005
Archived fixes / Re: Logging password errors
« on July 23rd, 2012, 02:35 AM »
r1644 adds in an option for this. I couldn't think of a more reliable method that would actually stand up to scrutiny and in the mean time this'll do.
3006
(8 files, 3KB)
Revision: 1644
Author: arantor
Date: 23 July 2012 01:32:49
Message:
! Couple of miscellaneous grammar fixes. One of them even seems to have been mine. (ManageSettings.english.php)
! Add a checkbox, on by default, to show the feed block in the sidebar. Of course it won't show if feeds are disabled, but at least now it's optional. (index.php, install.sql, ManageNews.php, ManageSettings language file)
! Make password error logging be optional. (install.sql, Login2.php, ManageSettings.php, ManageSettings language file)
! Don't log certain user account errors as errors. So what if users are trying to register with reserved names? They get stopped at the door, but there's really no need to log that fact too. (Subs-Members.php)
! Sync BB implementation to BB 2.2.7. (Security.php)
----
Modified : /trunk/Sources/Login2.php
Modified : /trunk/Sources/ManageNews.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/Security.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/Themes/default/languages/ManageSettings.english.php
Modified : /trunk/index.php
Modified : /trunk/other/install.sql
Revision: 1644
Author: arantor
Date: 23 July 2012 01:32:49
Message:
! Couple of miscellaneous grammar fixes. One of them even seems to have been mine. (ManageSettings.english.php)
! Add a checkbox, on by default, to show the feed block in the sidebar. Of course it won't show if feeds are disabled, but at least now it's optional. (index.php, install.sql, ManageNews.php, ManageSettings language file)
! Make password error logging be optional. (install.sql, Login2.php, ManageSettings.php, ManageSettings language file)
! Don't log certain user account errors as errors. So what if users are trying to register with reserved names? They get stopped at the door, but there's really no need to log that fact too. (Subs-Members.php)
! Sync BB implementation to BB 2.2.7. (Security.php)
----
Modified : /trunk/Sources/Login2.php
Modified : /trunk/Sources/ManageNews.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/Security.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/Themes/default/languages/ManageSettings.english.php
Modified : /trunk/index.php
Modified : /trunk/other/install.sql
3007
Features / Re: Github & stuff
« on July 19th, 2012, 05:28 PM »
@Norodo: That's the level of bad-ass I seek to attain, I'm still learning.
3008
The Pub / Re: When can I download Wedge? / Where can I download Wedge?
« on July 17th, 2012, 01:01 PM »
Considering that I've only just got back off holiday (not that you'd know it)...?
3009
Off-topic / Re: Smf out of the game?
« on July 17th, 2012, 01:01 PM »
It has been sluggish lately.
3010
Features / Re: Github & stuff
« on July 16th, 2012, 06:42 PM »And I guess you're wary of going back to a similar system...
So, even though the development process is now public, it's pretty much as if SMF had given commit access to all of their teamies. No need to go public indeed.
I could suggest that we open a private git or mercurial or svn repo somewhere with a bug tracker (with a good one I mean... I don't know if RH's is any good?), and then we give commit access to anyone who requests it (basically people in our Friends and Consultants groups).
I'm not sure about this anymore..? I remember SMF 2.1 was at one point hidden away at Spuds' repo, but now it's at SimpleMachines..?
3011
The Pub / Re: When can I download Wedge? / Where can I download Wedge?
« on July 16th, 2012, 05:39 PM »
You cannot wait for me to have a full breakdown?
3013
The Pub / Re: When can I download Wedge? / Where can I download Wedge?
« on July 16th, 2012, 04:39 PM »This year will be a public version?
Given that only a couple of weeks ago I was practically having a breakdown, let's just say I'm not motivated to run back into development from morning until night because I don't want to relapse, burn out again and disappear into the night.
3014
@Pete> What style by Nas? The thing I'm talking about was cooked up by Dragooon for AeMe...
And... did you bother to report that...? I don't remember hearing about that.
3015
Nope. There's quite a bit to it really.
Firstly you have to declare the animation.
Code: [Select]
(or @-moz-keyframes or @-webkit-keyframes for now)
Then tell the relevant item to use it:
Code: [Select]
I can't imagine anything that would specifically upset WeCSS in this, and honestly if it were reformatted to use normal WeCSS layout it should work just fine.
Firstly you have to declare the animation.
@keyframes myanim
{
from: { top: 0px}
to: { top: 100px }
}(or @-moz-keyframes or @-webkit-keyframes for now)
Then tell the relevant item to use it:
#mydiv
{
animation: myanim 5s infinite
}I can't imagine anything that would specifically upset WeCSS in this, and honestly if it were reformatted to use normal WeCSS layout it should work just fine.