myfreeforum.org Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups  Who is OnlineWho is Online   Join! (free) Join! (free)  
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
For an excellent guide to using your myfreeforum forum, you can visit
howtodoit
The howtodoit "readonly" forum provides answers and walkthroughs for all common questions.
  • Welcome
  • Guest


28th October myfreefriends.org released this week?

 
Post new topic   Reply to topic    myfreeforum.org Forum Index -> Forum Blogs
Site Admin
Site Admin
Joined: 22 May 2005
Posts: 19357

View user's profile Send private message Send e-mail

A Blog by - admin (no pm's please)



Virtual Cash: 43000
Well that's the target.

Basic collaberative notes is almost finished, and at that point all I really want to do is to ensure that things don't fall over in a heap on internet explorer 7.

Of course there are millions of things left to do in terms of building the system, but that can happen over time.

I did show the site off to a couple of web designers last night and it did give a bit of a WoW factor I think


_________________

Family Friendly Shareware | | Web Design/Services | Free Forums
Author Message
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Sun Oct 28, 2007 2:17 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Sun Oct 28, 2007 4:09 pm    Post subject: Reply with quote

JUst realised a general "intro" window is probably essential even for the alpha release. Something with news and the T&C.
_________________

Family Friendly Shareware | | Web Design/Services | Free Forums

forum.myfreeforum.org
Back to top
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Sun Oct 28, 2007 8:46 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Oct 29, 2007 11:25 am    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Mon Oct 29, 2007 1:12 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Wed Oct 31, 2007 1:09 am    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Wed Oct 31, 2007 2:31 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Wed Oct 31, 2007 5:01 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Wed Oct 31, 2007 8:41 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Thu Nov 01, 2007 12:15 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
admin (no pm's please)
Site Admin
Site Admin

Virtual Cash: 43000

Joined: 22 May 2005
Posts: 19357

Add Karma

rated by 157 members
Add Comment
Show Comments

online/offline
PostPosted: Thu Nov 01, 2007 3:15 pm    Post subject: Reply with quote

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
View user's profile Private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    myfreeforum.org Forum Index -> Forum Blogs All times are GMT + 1 Hour
Page 1 of 1
 
 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Card File  Gallery  Forum Archive
Powered by phpBB © 2001, 2005 phpBB Group
Create your own free forum | Buy a domain to use with your forum