Staredit Network > Forums > Staredit Network > Topic: List of Known Bugs/Needed Features
List of Known Bugs/Needed Features
This topic is locked. You can no longer write replies here.
Mar 24 2008, 1:13 am
By: DevliN
Pages: < 1 « 57 58 59 60 6190 >
 

Nov 3 2010, 1:55 am Symmetry Post #1161

Dungeon Master

Quote from poison_us
Wouldn't it be so much simpler just to fix Carbonite, because that's the skin all the :awesome: people use anyways? I mean, seriously, who likes stretched forums on a widescreen monitor?

I do, and I'm far more important than you. Fixed width is balls on sen.



:voy: :jaff: :voy: :jaff:

Nov 3 2010, 3:43 am NudeRaider Post #1162

We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

Quote from poison_us
Wouldn't it be so much simpler just to fix Carbonite
I don't know, is it simple to fix carbonite?




Nov 3 2010, 4:32 am poison_us Post #1163

Back* from the grave

Quote from Symmetry
Fixed width is balls on sen.
I never knew that a style of page stretch is considered to be spherical, or to be part of male anatomy...so odd.





Nov 3 2010, 7:43 am DevliN Post #1164

OVERWATCH STATUS GO

I don't use Carbonite myself, but if "Mark as read" is broken then I'll look into it. I'm not sure how it would be, though, since the php code for it should be the same as the other skins (namely Epic). I'll figure it out.



\:devlin\: Currently Working On: \:devlin\:
My Overwatch addiction.

Nov 3 2010, 10:54 am NudeRaider Post #1165

We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

If you're actually willing to fix the skins then fix turtles filter buttons and make the collapse states of the forums in the index remembered.

Post has been edited 1 time(s), last time on Nov 4 2010, 11:02 am by NudeRaider.




Nov 3 2010, 11:09 am DevliN Post #1166

OVERWATCH STATUS GO

I'm pretty sure I can't fix the bugs (DJC, Devourer, or IP would have to, unfortunately), but I can at least look at why the "mark as read thing" is gone since Carb's php is supposed to be identical to Epic's.



\:devlin\: Currently Working On: \:devlin\:
My Overwatch addiction.

Nov 3 2010, 7:19 pm poison_us Post #1167

Back* from the grave

It doesn't even trigger the bottom right AJAX popup, so I think the whole thing is broken....but I don't know. Also, it seems like the "Time: date" at the top of the page when viewing a thread is off-centered, and the member's name is sometimes bumped down a line. That might be what's throwing the "Time: date" off.




Nov 3 2010, 8:15 pm DavidJCobb Post #1168



Quote from NudeRaider
If you're actually willing to fix the skins then fix turtles filter buttons and make the collapse states of the forums in the index remembered. The Maplantis bugs seem to have been fixed.
Filter buttons are PHP-controlled. PHP is used to write out their link targets (which make them work) and their display states (active-colored/inactive-grey). If there's a problem with them and it's not a display issue, then it's a backend issue with the PHP.

As for remembering collapse states of the Forum Index... I thought I fixed that in Turtle... Or do you mean another skin? What browser are you using?


Quote from poison_us
It doesn't even trigger the bottom right AJAX popup, so I think the whole thing is broken....but I don't know. Also, it seems like the "Time: date" at the top of the page when viewing a thread is off-centered, and the member's name is sometimes bumped down a line. That might be what's throwing the "Time: date" off.
The function used for the Forum Index's "mark as read" links is skin-specific. This is because when the AJAX call completes, it needs to apply the "this forum has no new stuff" style to the specific thing you marked as read; this process is, as one might expect, different for each skin.

Carbonite doesn't have a ajax_mark function in its skin.js; this is the function that actually marks a forum as read. Devlin needs to copy that function out of the skin.js file from another skin, and then edit the stuff at the bottom of the function so that it updates the particular row that was marked as read.

This oughta do the trick; I did some rudimentary testing using Chrome's god-awful debugging tools. Slap it into Carbonite's skin.js, test in other browsers, and you should be good to go.

Code
function ajax_mark() {
  this.params=params;
  this.parser=parser;
  this.status=status;
  this.url=url;
  this.limit=limit;
  this.cleared=cleared;

  function status(tmp) { }
  function limit() { }
  function cleared() { }
  function url() {
     return "/ajax/mark.php";
  }
  function params(ze, amid, vars) {
     return "ze="+ze+"&ajaxmid="+amid+"&mark="+vars;
  }
  function parser(html, vars) {
     var TD;
     if (html.toString() == "all") {
        if (vars && $("forum-listing-"+vars)) {
           $("#imgmark_"+vars).attr("src","/skins/2/images_global/forums/2/"+vars+"_shaded.png").attr("alt","No New");
           TD = $("#mark_return_"+vars).removeAttr("id")[0];
           TD.onmouseover = TD.onmouseout = TD.onclick = function(){};
        } else if (html)
           $("img[id^=imgmark]").each(
              function(index, element) {
                 var ForumID = (element.id.match(/^imgmark_(\d+)$/)||[0,NaN])[1];

                 if (isNaN(ForumID))
                    return; // Well, that's odd. This isn't what we're looking for, though it looks similar.

                 element.alt = "No New";
                 element.src = "/skins/2/images_global/forums/2/" + ForumID + "_shaded.png";

                 var TD = element.parentNode;
                 $(TD).removeAttr("id");
                 TD.onmouseover = TD.onmouseout = TD.onclick = function(){};
              }
           );
     } else {
        if (vars && $("forum-listing-"+vars)) {
           $("#imgmark_"+vars).attr("src","/skins/2/images_global/forums/2/"+vars+"_shaded.png").attr("alt","No New");
           TD = $("#mark_return_"+vars).attr("id","")[0];
           TD.onmouseover = TD.onmouseout = TD.onclick = function(){};
        } else if (html)
           $("img[id^=imgmark]").each(
              function(index, element) {
                 var ForumID = (element.id.match(/^imgmark_(\d+)$/)||[0,NaN])[1];

                 if (isNaN(ForumID))
                    return; // Well, that's odd. This isn't what we're looking for, though it looks similar.

                 element.alt = "No New";
                 element.src = "/skins/2/images_global/forums/2/" + ForumID + "_shaded.png";

                 var TD = element.parentNode;
                 $(TD).removeAttr("id");
                 TD.onmouseover = TD.onmouseout = TD.onclick = function(){};
              }
           );
     }
  }
}




None.

Nov 3 2010, 10:23 pm NudeRaider Post #1169

We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

Quote from DavidJCobb
As for remembering collapse states of the Forum Index... I thought I fixed that in Turtle... Or do you mean another skin? What browser are you using?
Lol. Just because I gave up reporting it doesn't mean it's fixed. :P
Not entirely apparently. Afaik it works in every skin except Turtle. Got FF 3.6.12.

Carbonite has a very unprofessionally looking quirk:


And maplantis' BBcode buttons when writing a reply aren't working properly. When you press them the dialog that is supposed to pop up is opened at the bottom of the page. Same for the image fullview.

Post has been edited 1 time(s), last time on Nov 3 2010, 10:32 pm by NudeRaider.




Nov 4 2010, 6:27 am DevliN Post #1170

OVERWATCH STATUS GO

Quote from NudeRaider
Carbonite has a very unprofessionally looking quirk:
Yeah, I've talked to Devourer about that and hopefully he can help fix it. Unfortunately, that's a major problem with using the skin control php files from the other skins and using it for a skin that is fixed width.



\:devlin\: Currently Working On: \:devlin\:
My Overwatch addiction.

Nov 5 2010, 1:00 pm Devourer Post #1171

Hello

Not really a problem, just a "find n fix" task. Hold on...

EDIT:
fixd?

EDIT2:
Also fixd a bug in which you had not been able to mark forums as read in carbonite. Ups, tripple post.
Fixd visual bug that (carbonite) the posting time of a post is two rows large

Post has been edited 1 time(s), last time on Nov 5 2010, 1:43 pm by NudeRaider. Reason: merged posts



Please report errors in the Staredit.Network forum.

Nov 5 2010, 1:46 pm NudeRaider Post #1172

We can't explain the universe, just describe it; and we don't know whether our theories are true, we just know they're not wrong. >Harald Lesch

2 problems solved, 1 to go:
Mark as read inside a forum (when you see the topic list, not in the index) still doesn't work. (javascript void(0))




Nov 5 2010, 1:55 pm Devourer Post #1173

Hello

fixd, though the image does not change when clicking it. Will be fixed somewhen.



Please report errors in the Staredit.Network forum.

Nov 5 2010, 11:00 pm poison_us Post #1174

Back* from the grave

A Staredit Network error has occured:
MySQL Error '1054': Unknown column 'mid' in 'where clause'
Query failed: SELECT * FROM sessions WHERE mid=4200 ORDER BY running DESC LIMIT 1
Waited: 0.0739097595215 ms
Please contact administration with all the details.


When trying to view my profile.





Nov 5 2010, 11:02 pm Devourer Post #1175

Hello

Fixd, was temporarily.



Please report errors in the Staredit.Network forum.

Nov 5 2010, 11:34 pm DevliN Post #1176

OVERWATCH STATUS GO

Clicking "Reload" on the active members list on the forum index gives me this:
"MySQL Error '1054': Unknown column 'ip' in 'field list'
Query failed: SELECT count(distinct(ip)) as count FROM sessions WHERE s_mid=0 AND s_refresh > 1288999122
Waited: 0.118017196655 ms"

EDIT:
Also, the site doesn't remember collapsed states on all the skins. Something must have changed the js when IP updated this morning. It worked fine last night.

EDIT2:
Updated the OP with more recent bugs and suggestions (everything worth putting there from pages 35 onward). I'll try to keep it updated as much as possible, and delete anything that gets fixed.

EDIT3:
Searching takes 10x longer than it did before, and I got the mySQL error due to how long it took. :P

Post has been edited 3 time(s), last time on Nov 6 2010, 12:38 am by DevliN.



\:devlin\: Currently Working On: \:devlin\:
My Overwatch addiction.

Nov 6 2010, 1:54 am payne Post #1177

:payne:

Quote from DevliN
EDIT2:
Updated the OP with more recent bugs and suggestions (everything worth putting there from pages 35 onward). I'll try to keep it updated as much as possible, and delete anything that gets fixed.
I'm just wondering why you decided to split up my post in categories while you simply linked to David's. :O



None.

Nov 6 2010, 11:29 am DevliN Post #1178

OVERWATCH STATUS GO

Because David's list is a to-do list of things that he will fix, or at least has some control of. Your list is a bunch of suggested features and bugs that you cannot fix yourself.



\:devlin\: Currently Working On: \:devlin\:
My Overwatch addiction.

Nov 6 2010, 4:11 pm poison_us Post #1179

Back* from the grave

Is the "remember me" function funky for other people, or is that just me? I have to re-login every time I come to SEN now, since yesterday. I thought it was a one-time thing, but this is the third time I had to look at Epic and "Welcome, Guest".




Nov 6 2010, 4:14 pm Devourer Post #1180

Hello

Cookies allowed/enabled?



Please report errors in the Staredit.Network forum.

Options
Pages: < 1 « 57 58 59 60 6190 >
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[06:36 pm]
RIVE -- Nah, I'm still on Orange Box.
[04:36 pm]
Oh_Man -- anyone play Outside the Box yet? it was a fun time
[12:52 pm]
Vrael -- if you're gonna link that shit at least link some quality shit: https://www.youtube.com/watch?v=uUV3KvnvT-w
[11:17 am]
Zycorax -- :wob:
[2024-4-27. : 9:38 pm]
NudeRaider -- Ultraviolet
Ultraviolet shouted: NudeRaider sing it brother
trust me, you don't wanna hear that. I defer that to the pros.
[2024-4-27. : 7:56 pm]
Ultraviolet -- NudeRaider
NudeRaider shouted: "War nie wirklich weg" 🎵
sing it brother
[2024-4-27. : 6:24 pm]
NudeRaider -- "War nie wirklich weg" 🎵
[2024-4-27. : 3:33 pm]
O)FaRTy1billion[MM] -- o sen is back
[2024-4-27. : 1:53 am]
Ultraviolet -- :lol:
[2024-4-26. : 6:51 pm]
Vrael -- It is, and I could definitely use a company with a commitment to flexibility, quality, and customer satisfaction to provide effective solutions to dampness and humidity in my urban environment.
Please log in to shout.


Members Online: Roy