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 « 59 60 61 62 6390 >
 

Nov 9 2010, 10:42 pm poison_us Post #1201

Back* from the grave

The dropdown doesn't bug for me :/




Nov 10 2010, 5:59 pm Forsaken Archer Post #1202



Quote
Error: SEN.getCookie("jcollapsed").split is not a function
Source File: http://www.staredit.net/support/global.js
Line: 65

Code
                          if (T.data("collapse-save-state") && T.attr("id")) {
                             var SwitchID = T.attr("id");
                             if (S)
                                SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").split(",").concat([SwitchID])).join(",") , 1);
                             else
                                SEN.setCookie(
                                   "jcollapsed",
                                   $.grep(
                                      SEN.getCookie("jcollapsed").split(",").concat([SwitchID]),
                                      function(value) {
                                         return value != SwitchID;
                                      }
                                   ).join(","),
                                   1
                                );
                          }




None.

Nov 10 2010, 9:04 pm DavidJCobb Post #1203



Quote from Devourer
David, I changed both to the stuff you've suggested, did not work :S
There was another bug that I've now found a fix for. Browsers like to slap weird shit at the end of cookies, tripping up my scripts.

Open /support/global.js and find the method SEN.GUI.Collapse._collapse, it starts at Line 50. In that body of that function only, find all instances of SEN.getCookie("jcollapsed").split(",") and replace them with SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(","). (Should be two replacements.)

This alters the script to ignore the weird shit that browsers tack onto the end of the cookie; as a result, the function that powers my Collapse code will accurately parse and append to the "jcollapsed" cookie.



None.

Nov 10 2010, 9:06 pm DavidJCobb Post #1204



Quote from Forsaken Archer
Quote
Error: SEN.getCookie("jcollapsed").split is not a function
Source File: http://www.staredit.net/support/global.js
Line: 65

Code
                          if (T.data("collapse-save-state") && T.attr("id")) {
                             var SwitchID = T.attr("id");
                             if (S)
                                SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").split(",").concat([SwitchID])).join(",") , 1);
                             else
                                SEN.setCookie(
                                   "jcollapsed",
                                   $.grep(
                                      SEN.getCookie("jcollapsed").split(",").concat([SwitchID]),
                                      function(value) {
                                         return value != SwitchID;
                                      }
                                   ).join(","),
                                   1
                                );
                          }
Can you do me a favor? Clear your cache and see if you still get the error. If so, type this into your address bar, run it, and tell me what it says in the alert box:
javascript:alert(SEN.getCookie("jcollapsed"));
If it says false, then the first fix I posted for the Turtle Forum Index Collapse isn't working for some reason.



None.

Nov 10 2010, 9:47 pm poison_us Post #1205

Back* from the grave

I would very much like the login remember me thing to work once more. Thank you in advance.




Nov 10 2010, 10:42 pm DevliN Post #1206

OVERWATCH STATUS GO

Quote from DavidJCobb
Quote from Devourer
David, I changed both to the stuff you've suggested, did not work :S
There was another bug that I've now found a fix for. Browsers like to slap weird shit at the end of cookies, tripping up my scripts.

Open /support/global.js and find the method SEN.GUI.Collapse._collapse, it starts at Line 50. In that body of that function only, find all instances of SEN.getCookie("jcollapsed").split(",") and replace them with SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(","). (Should be two replacements.)

This alters the script to ignore the weird shit that browsers tack onto the end of the cookie; as a result, the function that powers my Collapse code will accurately parse and append to the "jcollapsed" cookie.
I changed line 65 from
SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").split(",").concat([SwitchID])).join(",") , 1);
to
SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(",").concat([SwitchID])).join(",") , 1);

I changed line 70 from
SEN.getCookie("jcollapsed").split(",").concat([SwitchID]),
to
SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(",").concat([SwitchID]),

Collapsed boxes still don't remain collapsed. :(

EDIT:
Unless I put the replace(/;[^\b]*$/,"") in the wrong area...?

Post has been edited 1 time(s), last time on Nov 10 2010, 10:48 pm by DevliN.



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

Nov 11 2010, 1:55 pm Devourer Post #1207

Hello

Quote
Private Messages
The default PM Reply should be "To All."
When reading a PM in the folder "Sent", there is a "reply to Sender" textfield although the last message in this thread was composed by you.
Done and changed the button text to "Attach to thread", "send to group" or "reply to sender", depending on the PM.



Please report errors in the Staredit.Network forum.

Nov 11 2010, 2:06 pm Devourer Post #1208

Hello




Post has been edited 24 time(s), last time on Nov 11 2010, 2:49 pm by Devourer.



Please report errors in the Staredit.Network forum.

Nov 11 2010, 2:19 pm Devourer Post #1209

Hello

Fixed the Lines-Bug.
Fixed the "First URL does not get parsed inside of encase" bug.
Fixed "Contact/Offline"-offset in epic.
Updated OP.

Post has been edited 2 time(s), last time on Nov 11 2010, 2:38 pm by Devourer.



Please report errors in the Staredit.Network forum.

Nov 11 2010, 2:44 pm poison_us Post #1210

Back* from the grave



Code
[line=100px]

Still not fixed. The bug was when line=100px, SEN reads it as line=100%.





Nov 11 2010, 2:48 pm Devourer Post #1211

Hello

Err, sorry... fixd.
However, everything above 600 is set to 100% to avoid skin-scretching.



Please report errors in the Staredit.Network forum.

Nov 11 2010, 2:55 pm poison_us Post #1212

Back* from the grave









Code
[line=50][line=60][line=70][line=80][line=90][line=100][line=700]


Post has been edited 10 time(s), last time on Nov 11 2010, 3:07 pm by Devourer.




Nov 11 2010, 2:57 pm Devourer Post #1213

Hello

http://www.staredit.net/?p=raffle
Raffle now shows the participants.

Fixd lines... again?

Post has been edited 1 time(s), last time on Nov 11 2010, 3:08 pm by Devourer.



Please report errors in the Staredit.Network forum.

Nov 11 2010, 7:46 pm DevliN Post #1214

OVERWATCH STATUS GO

The Offline/Online and Contact images still aren't centered.

Also I think this was mentioned before, but the raffle doesn't send a notification to the winner anymore.



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

Nov 11 2010, 8:04 pm Devourer Post #1215

Hello

Anyone edited the cron tasks?



Please report errors in the Staredit.Network forum.

Nov 11 2010, 8:46 pm UnholyUrine Post #1216





Code
[line=1337]




None.

Nov 11 2010, 9:01 pm DevliN Post #1217

OVERWATCH STATUS GO

Would it just be easier to go back to lines being a percent?



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

Nov 12 2010, 1:54 am payne Post #1218

:payne:

Wow Devourer, you've just updated stuff I've been asking for for so long! :wub:



None.

Nov 13 2010, 1:10 am DavidJCobb Post #1219



Quote from DevliN
Quote from DavidJCobb
Quote from Devourer
David, I changed both to the stuff you've suggested, did not work :S
There was another bug that I've now found a fix for. Browsers like to slap weird shit at the end of cookies, tripping up my scripts.

Open /support/global.js and find the method SEN.GUI.Collapse._collapse, it starts at Line 50. In that body of that function only, find all instances of SEN.getCookie("jcollapsed").split(",") and replace them with SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(","). (Should be two replacements.)

This alters the script to ignore the weird shit that browsers tack onto the end of the cookie; as a result, the function that powers my Collapse code will accurately parse and append to the "jcollapsed" cookie.
I changed line 65 from
SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").split(",").concat([SwitchID])).join(",") , 1);
to
SEN.setCookie("jcollapsed" , SEN.Utilities.makeStringArrayUnique(SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(",").concat([SwitchID])).join(",") , 1);

I changed line 70 from
SEN.getCookie("jcollapsed").split(",").concat([SwitchID]),
to
SEN.getCookie("jcollapsed").replace(/;[^\b]*$/,"").split(",").concat([SwitchID]),

Collapsed boxes still don't remain collapsed. :(

EDIT:
Unless I put the replace(/;[^\b]*$/,"") in the wrong area...?
The Turtle Forum Index now remembers collapse state, so the specific bug I was attempting to address is now fixed.

If collapsedness is breaking on other parts of the site (or on the Forum Indexes of other skins), then it would seem to be because it's saved, but not re-applied when you load the page. Add this to /support/global.js:
Code
$(function() {
  var e = SEN.getCookie('collapsed').replace(/;[^\b]*$/,"").split(",");
  var i=0, el = e.length;
  for(;i<el;i++) {
     if (e[i]) {
        hide($("#show_"+e[i]));
        show($("#hide_"+e[i]));
     }
  }
});

It runs through the cookie used by the old collapse code, and collapses all referenced elements when the page loads. I tested; with this new code, Forum Index collapse state is remembered on Epic. It should work for anything that uses the old collapse code.

If the problem is that collapse boxes in posts aren't having their states saved... I don't think the site ever did that, but I could script such functionality if desired.



None.

Nov 13 2010, 4:52 am DevliN Post #1220

OVERWATCH STATUS GO

Fantastic! Works perfectly on Epic.

Now there's just this issue of SEN remembering logins... :D



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

Options
Pages: < 1 « 59 60 61 62 6390 >
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[01:39 am]
Ultraviolet -- no u elky skeleton guy, I'll use em better
[10:50 pm]
Vrael -- Ultraviolet
Ultraviolet shouted: How about you all send me your minerals instead of washing them into the gambling void? I'm saving up for a new name color and/or glow
hey cut it out I'm getting all the minerals
[10:11 pm]
Ultraviolet -- :P
[10:11 pm]
Ultraviolet -- How about you all send me your minerals instead of washing them into the gambling void? I'm saving up for a new name color and/or glow
[2024-4-17. : 11:50 pm]
O)FaRTy1billion[MM] -- nice, now i have more than enough
[2024-4-17. : 11:49 pm]
O)FaRTy1billion[MM] -- if i don't gamble them away first
[2024-4-17. : 11:49 pm]
O)FaRTy1billion[MM] -- o, due to a donation i now have enough minerals to send you minerals
[2024-4-17. : 3:26 am]
O)FaRTy1billion[MM] -- i have to ask for minerals first tho cuz i don't have enough to send
[2024-4-17. : 1:53 am]
Vrael -- bet u'll ask for my minerals first and then just send me some lousy vespene gas instead
[2024-4-17. : 1:52 am]
Vrael -- hah do you think I was born yesterday?
Please log in to shout.


Members Online: Frabotta