121
culex
Re: xoops chat integration (like facebook) ?
  • 2010/11/30 3:44

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


@Oswaldo Thank you so much. I have added to svn, but same time I have added more. You're correct some was missing, and also a small javascript bug, wich should be fixed now. The admin doesnt send to ALL users, but all user who are using XIM

@redheadedrod... no, you're not unlucky...the problem is that I'm having a low IQ day haha... mysql-file was using php commenting so in 80% of installs this would blow up.. I have corrected to correct sql commenting

Please let me know if the system update message is working. I have changed to 0.991 RC
Programming is like sex:
One mistake and you have to support it for the rest of your life.



122
culex
Re: xoops chat integration (like facebook) ?
  • 2010/11/29 12:11

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Thanks Mamba... Still plenty of plans left for next release but we wanted to release something not just adding new and alwas staying in RC hehe
Programming is like sex:
One mistake and you have to support it for the rest of your life.



123
culex
Re: xoops chat integration (like facebook) ?
  • 2010/11/29 11:29

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I have released version 0.99 of XIM into svn. This is ment to be a release candidate for 1.0.

You can get it here

Andrax is killing himself with work at the moment, but we agreed the changes and imporovements we have already implimented is ok for a official release. We'd like to have it properly tested though to avoid too much bug-killig later.

The adminsys is prepared with a plugin to let you know automaticly when there are updates, description and where to download it from

1) uninstall old version (there are some tablechanges)
2) install new version
3) finish

Some of the changes are.
- NEW: Added show userinfo link to chat names Revision: 4428 (culex)
- NEW: Showing user avatar in chat Revision 4446: (Andrax)
- NEW: Added sound library + 10 sounds to chat Revision 4512: (culex)
- NEW: Added change, show config for status Revision 4512: (Culex)
- NEW: Added the merged footerbar Revision 4638: (Andrax)
- NEW: Added install.html with installation/error faq Revision 4647 (culex)
- NEW: Added admin system with statistics, module infor /update check and send all users message(culex)
- NEW: Block always showing but if no users other than yourself online "no frinds online" showing (culex)
- NEW: Removed docs with hardcoded html instruction / help file and incorporated in tab in admin insted (culex)

- BUG: Fix problem with minimized chat, cookie problem Revision 4638: (Andrax)
- BUG: Fixed malformed JSON document Revision: 4641 (andrax)
- BUG: Jquery noconflict rename im() to xoops_im() to avoid "im " being blank in chats Revision: 4674 (culex)
- BUG: Changed "Messages" hardcoded -> language define _XIM_BAR_MESSAGE in footer_bar.php and main.php Revisio: 4682 (culex)
- BUG: Added a stripHTML function to chat.js for displaying item.f in document.title without html tags Revision: 4683 (culex)
- BUG: Mysql compatibility 4 & 5 Revision: 4684 (culex)
- BUG: Fixed block not showing breaking updating userlist (culex)
- BUG: Fixed styling and dirty html / css (Kris_fr)
- BUG: True declaring script include in admin section (Kris_fr)
- BUG: Fixed form to keep last config on pageload (culex)
- Proposed: Keeping jquery and UI inside xoops_lib / frameworks (Kris_fr)

Any bugreports is welcomed aswell as suggestions how to fix them
Programming is like sex:
One mistake and you have to support it for the rest of your life.



124
culex
Re: xoops chat integration (like facebook) ?
  • 2010/11/23 11:57

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


@trabis Xim is based on the pre-cometchat plugin, Anant wrote as a tutorial. It has been modified, expanded and redesigned so not very much is left of the original.

@btesec me too. The module is ready to upload, but Andrax has a few additions and he will merge with my changes and send me when he's done. He is extremely busy at the moment but he is trying to have this ready in this week.
Programming is like sex:
One mistake and you have to support it for the rest of your life.



125
culex
Re: xoops chat integration (like facebook) ?
  • 2010/11/20 17:49

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I have changed the svn structure for xim preparing for the 1.0 RC to enter trunk.

Trunk is now empty

The original 0.33 beta can still be downloaded though. You'll find this here
Programming is like sex:
One mistake and you have to support it for the rest of your life.



126
culex
Re: Avatars dont show in Admin?
  • 2010/11/14 13:21

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I had the same problem.. I fixed by deleting the .htaccess files in the uploads folder + subfolders.
Programming is like sex:
One mistake and you have to support it for the rest of your life.



127
culex
Re: xoops chat integration (like facebook) ?
  • 2010/10/30 10:23

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:

I notice that all else works fine in firefox. support for ie would be good also


In these new changes xim goes up a level and the big problem has been to keep everything in place in IE, but everything looks ok in my test so far and I think also andrax is happy.

He is now merging some additional changes and hopefully he'll have this new patch in the svn.

Quote:

I notice that my configurations are not saved


The changes are indeed saved, the problem is keeping the changing live, ie you change in block and instantly the changes are showing in javascript. I'll have a look but I think in the new patch this too should be working
Programming is like sex:
One mistake and you have to support it for the rest of your life.



128
culex
Re: Get userid from user's name (nickname)
  • 2010/10/27 12:53

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Ups...your right ghia - was way off on this one.. Just tested and didnt work.

This one does work but almost makes things more complicated than the sql look-up :-S

$name "culex";
$user = new XoopsMemberHandler();
$users $user->getUserList();
    while (list(
$key$value) = each($users)) {
        if (
$value == $name) {
            echo 
"ID = ".$key.", Username = ".$value;
            break;
        }    else {
                echo 
"none found";
                break;
            }
    }
Programming is like sex:
One mistake and you have to support it for the rest of your life.



129
culex
Re: Get userid from user's name (nickname)
  • 2010/10/27 10:15

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Or you can use the class xoopsUser

global $xoopsUser;
$name "rlankford";
$user = new XoopsUser($name);
$userid $user->getVar('uid');
Programming is like sex:
One mistake and you have to support it for the rest of your life.



130
culex
Re: xoops chat integration (like facebook) ?
  • 2010/10/27 10:00

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Just a status report.

final adjustments are being put into xim. New features are dragable container using jqueryUi, differnet modes (offline, busy, away and online), selectable skin (as of now 5 different) but easy to make more.

Final adjustments to be made in these days and hopefully a release candidate is ready for testing this weekend. This version is not yet in svn.
Programming is like sex:
One mistake and you have to support it for the rest of your life.




TopTop
« 1 ... 10 11 12 (13) 14 15 16 ... 49 »



Login

Who's Online

169 user(s) are online (105 user(s) are browsing Support Forums)


Members: 0


Guests: 169


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits