admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Sun Oct 28, 2007 2:17 pm Post subject: |
|
|
Just spend several minutes on a bug in saving notes
It was one I have done a few time recently with all the switching between php and JavaScript. The concatinate operator is "+" in javascript and "." in php, and since "+" is a valid operator in php things fail silently if you get mixed up
I find unix/linux scripting even worse for this, each damn shell is different in many major and minor ways and I can never remember which syntax goes with which shell
Anyhow with that bug fixed, we are almost functionally ready for the alpha.
I need to break up the javascript into a more maintainable format, test in internet explorer and last but not least reintroduce automatic polling for new messages in chat boxes. With the new xajax framework I am hoping fatal memory leaks no longer occur when I do this. I need to tweak it a little anyway as the current implementation is a little crass. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Sun Oct 28, 2007 8:46 pm Post subject: |
|
|
Well we now have a decent intro window with a start on the rules and what is more to the point a bit of re-integration" with Jooma which will add some flexibility
So tomorrow will be the internet explorer fun day and then hopefully a release. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Mon Oct 29, 2007 11:25 am Post subject: |
|
|
Not a great start to the day Internet explorer 7 is falling over horribly with the code.
It is really nasty compared to firefox when it comes to debugging, let alone the fact that the the code is working reasonably well even in Konquerer. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Mon Oct 29, 2007 1:12 pm Post subject: |
|
|
Not totally our of the woods yet, but it seems the issue is that a simple javascript call appendChild and wreak havoc.
newdiv = document.createElement("div");
document.body.appendChild(newdiv);
which is a fairly simply idea, create a DIV and add it to the document body simply fries the retarded braincells of ie7.
Forunately:
var box = document.getElementById('content_inner');
newdiv = document.createElement("div");
box.appendChild(newdiv);
Gving the DIV somewhere specific to go works, and at this point a large chunk of the windows framework seems to be working. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Wed Oct 31, 2007 1:09 am Post subject: |
|
|
The switch to Ubuntu as the development machine has really slowed things down
But for all that it has revealed the odd bug that would have arisen when the code was resited, and another small little bug has been dealt with.
Not quite sure where that leaves things release wise as getting the development environment working smoothly is competing with doing the actual work  _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Wed Oct 31, 2007 2:31 pm Post subject: |
|
|
Okay we are picking up momentum again Some account creation password issues have been fixed, and a module now replaces what was a Joomla menu in the top right. The module can be cleverer about if people are logged in on out and work appropriately. This also helps keep people away from ducking into Joomla itself.
we may be down to simply some more regression testing in ie. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Wed Oct 31, 2007 5:01 pm Post subject: |
|
|
Found a big internet explorer issue Fortunately whilst a lot of code needs rewriting it is not hard.
I think Microsloth are morons though  _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Wed Oct 31, 2007 8:41 pm Post subject: |
|
|
Just fixed another chronic regression, the fix is really quite wacky and for that matter so was the bug, creating a new "transient" window with the internet explorer fix blew some event handlers up, changing the parent of the transient window fixed it
There is a reason I guess why this sort of windows style display has yet to become common! _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Thu Nov 01, 2007 12:15 pm Post subject: |
|
|
ho hum,
chat boxes are now working on bother ie and firefox, albeit with a bit of an appearance issue.
All the same I think I will move on to dealing with polling which is still the one outstanding bit that needs finishing off.
At which point I may release warts and all. _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |
admin (no pm's please) Site Admin

 Virtual Cash: 46590
Joined: 22 May 2005 Posts: 19715
Add Karma
 rated by 164 members
Add Comment
Show Comments
 |
Posted: Thu Nov 01, 2007 3:15 pm Post subject: |
|
|
Polling is now working.
So I now have an active chat on two PCs between internet explorer and firefox.
I cannot say there is no memory leakage, but it is looking as if things are ok on that score.
So maybe we are up for a release tomorrow  _________________
Family Friendly Shareware | | Web Design/Services | Free Forums
forum.myfreeforum.org |
|
| Back to top |
|
 |