1
Mamba
xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 4:53

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


I've updated the xFAQ module to the standard 2.5.0 GUI.

You can download it from here.

There is still work to do, but we would appreciate your help in testing and feedback.

Please note that there are also other modules ready for testing and where we need help in improving them:

- extCal
- MyLinks
- Marquee
- XoopsPoll
- fmContent
- extgallery
- Tag
- News
- xNews
- Xoops Partners

Voltan is working very hard on several of these modules and we would appreciate some help. Who could jump in and help?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

2
fdeconiac
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 9:09

  • fdeconiac

  • Quite a regular

  • Posts: 278

  • Since: 2008/11/29


Thanks Mamba,
i send you the french translation by the morning...
Regards

EDIT : Mamba, i saw the last lines of admin as comments... Is it normal ?

// define("_AM_XFAQ_ADMIN_INDEX", "Home");
//define("_AM_XFAQ_ADMIN_ABOUT", "About");
//define("_AM_XFAQ_ADMIN_HELP", "Help");
// define("_AM_XFAQ_ADMIN_SLIDES", "Slides");
// define("_AM_XFAQ_ADMIN_PAGES", "Pages");
// define("_AM_XFAQ_ADMIN_UPDATE", "Update");
// define("_AM_XFAQ_ADMIN_PREFERENCES", "Settings");

I modified them like :
define("_AM_XFAQ_ADMIN_INDEX", "Home");
define("_AM_XFAQ_ADMIN_ABOUT", "About");
define("_AM_XFAQ_ADMIN_HELP", "Help");
define("_AM_XFAQ_ADMIN_SLIDES", "Slides");
define("_AM_XFAQ_ADMIN_PAGES", "Pages");
define("_AM_XFAQ_ADMIN_UPDATE", "Update");
define("_AM_XFAQ_ADMIN_PREFERENCES", "Settings");

Maybe it will be necessary to change it in english too ?

Regards

3
Mamba
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 13:59

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Things are still being adjusted, and it's best to wait with the final translations till the end.

I appreciate your patience!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

4
Tarik
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 17:32

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


i found a sort of bug
when you edit a topic you can chose the same topic as a parent what shouldn't be done

fix:
in class/topic.php line 79
replace
$arr $topicHandler->getall();
by
if(!$this->isNew()){
    
$arr $topicHandler->getall(new Criteria('topic_id'$this->getVar("topic_id"), '!='));
}else{
    
$arr $topicHandler->getall();
}
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.

5
Mamba
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 21:04

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Thank you! Committed in SVN

Keep them coming!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

6
Tarik
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/18 22:33

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


Quote:
Keep them coming!


-when deleting a parent topic child topic arn't deleted and even their "topic_pid" isn't changed is that normal?
-the topic image upload don't work, and their isn't even an include
for /class/uploader.php, did you disable it?
- when listing topics, it's better to difference child topics from parent topics.
- when accessing the request.php?op=answeredfaq with no question it gives an undefined variable.
fix:
move the line 185 $list = array(); before the if condition line 183

if there is anything that i can help with, please notify me.
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.

7
Mamba
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/19 15:15

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Tarik, thank you!

I'll notify Mojtaba, who is the developer of this module. I am just helping out here on the GUI side.

Of course, I'll try to apply the fixes that you've provided.

Are a SourceForge member? If yes, then you could add the fixes directly to SVN
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

8
Tarik
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/19 16:59

  • Tarik

  • Not too shy to talk

  • Posts: 170

  • Since: 2010/2/3 1


I'm a member in sourceforge but i don't have any experience with SVN Repository, so if you have some links or tutos i would appreciate it.
Some people like what you do,
-- some people hate what you do,
---- but most people simply don’t give a damn.

9
Mamba
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/19 17:14

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
i don't have any experience with SVN Repository


The best way is to use TortoisSVN. Here are useful links:

1) SVN Best Practices:
http://svn.apache.org/repos/asf/subversion/trunk/doc/user/svn-best-practices.html

2) TortoiseSVN (best Windows client for SVN):
http://tortoisesvn.net/

2) Using Subversion at PLU with Tortoise SVN
http://www.cs.plu.edu/~dwolff/svn-tutorial/svn-tutorial.html

3) How to use TortoiseSVN
http://wdg.uncc.edu/HOWTO_use_TortiseSVN_on_Windows
http://www.youtube.com/watch?v=fPUdXvjY_G4 (video)

4) Version Control with Subversion
http://svnbook.red-bean.com/

5) For file comparison, WinMerge works with Tortoise SVN
http://winmerge.org/

BTW - if you want to receive notification on all updates to XOOPS SVN, you can subscribe to this mailing list:

https://lists.sourceforge.net/lists/listinfo/xoops-cvs2
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

10
zyspec
Re: xFAQ GUI Change - Beta ready for testing on XOOPS 2.5.0
  • 2011/3/20 12:06

  • zyspec

  • Module Developer

  • Posts: 1095

  • Since: 2004/9/21


Notice that this is listed as 'Beta'. When reading through the code there's several things to still be 'cleaned up' and a few features to be added, my opinion the module itself is really in alpha state, but that's just a matter of semantics I suppose. I could 'submit' changes but I don't want to 'step on' Mojtaba's development effort if it's still ongoing. Nothing worse as a developer than having someone make changes to something you're changing...

In my opinion the 'release for Beta testing' really is just for the admin GUI, the rest of the module isn't that far along yet.

Perhaps I should look at one of the 'other' modules to see if I can find one that needs a developer.

Login

Who's Online

237 user(s) are online (147 user(s) are browsing Support Forums)


Members: 0


Guests: 237


more...

Donat-O-Meter

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

Latest GitHub Commits