11
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/14 16:33

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Mariane, that's fantastic! Thank you!

I love how the teamwork is developing here!!!

I hope, we'll have soon more contributors!

You can email me, or you can add it directly the changes in SVN if you have access on SourceForge. If not, set up an account on SourceForge and I'll add you to SVN.



Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

12
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/14 19:13

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
just finished testing tag module and french translation... Don't worry, i will compare files as you finished to update them.

OK, the files now have been updated, your French files uploaded, so you can now do the translation on SVN.

Everybody else - if you are testing, please download all the files fresh to make sure that you have the latest version.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

13
Anonymous
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/14 22:51

  • Anonymous

  • Posts: 0

  • Since:


Mamba,
Home button for news in adminsection is now working.

But a new bug is introduced. Try to open the control panel home results in a whitepage and following fatal error:
Fatal error: Call to a member function getVar() on a non-object in /www/htdocs/vccaste/modules/news/admin/menu.php on line 73

The statistics image is not showing in admin section of news. Therefor you must change the imagename from Stats32.png to stat32.png in /news/images/icons/ and the imagename from Stats48.png to stats48.png in /news/images/admin/

Click on Permissions in admin section. Theres showing up an second horizontal menu.

14
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/14 23:05

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
But a new bug is introduced. Try to open the control panel home results in a whitepage and following error:
Fatal error: Call to a member function getVar() on a non-object in /www/htdocs/vccaste/modules/news/admin/menu.php on line 73

Confirmed. I'll look into it.

Quote:
The statistics image is not showing in admin section of news. Therefor you must change the imagename from Stats32.png to stat32.png in /news/images/icons/ and the imagename from Stats48.png to stats48.png in /news/images/admin/

Fixed.

Quote:
Click on Permissions in admin section. Theres showing up an second horizontal menu.

Fixed in SVN

Thank you for the testing and reporting.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

15
Anonymous
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/14 23:14

  • Anonymous

  • Posts: 0

  • Since:


No problem for testing.

An other one:
Notice: Use of undefined constant _AM_NEWS_UPGRADE - assumed '_AM_NEWS_UPGRADE' in file /modules/news/admin/menu.php line 75 is showing up as an error.

16
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/15 0:14

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
Notice: Use of undefined constant _AM_NEWS_UPGRADE - assumed '_AM_NEWS_UPGRADE' in file /modules/news/admin/menu.php line 75 is showing up as an error.

Please change it to: _MI_NEWS_UPGRADE
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

17
oswaldo
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/15 0:48

  • oswaldo

  • Quite a regular

  • Posts: 215

  • Since: 2008/8/22


Mamba

I will translate into spanish

Here is the spanish translation

18
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/15 8:53

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
I will translate into spanish

Thank you so much! Muchas gracias, amigo!
I've added the translation to SVN.

I've also added you as a translator to XOOPS SVN, so in the future you can add the translations directly to the modules.

Thanks again for your help!

Last thing: since these modules are specifically only for XOOPS 2.5.0, we have to assume that people are using UTF-8 with them, so I think, UTF-8 translation files only will be sufficient.
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

19
Mamba
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/15 17:54

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
But a new bug is introduced. Try to open the control panel home results in a whitepage and following fatal error:
Fatal error: Call to a member function getVar() on a non-object in /www/htdocs/vccaste/modules/news/admin/menu.php on line 73

I am having a problem here.

I have created a conditional Tab in /admin/menu.php:

global $xoopsModule;
//...
if ($xoopsModule->getVar('version') != 167) {
$i++;
$adminmenu[$i]['title'] = _MI_NEWS_UPGRADE;
$adminmenu[$i]['link'] = "admin/upgrade.php";
$adminmenu[$i]['icon'] = "images/icons/update.png";
$adminmenu[$i]['icon_small'] = "images/update.png";
}


and it works fine there, as it should.

However, somehow when we go to Control Panel:
http://localhost/xtest4/admin.php
it generates the error reported by fdeconiac.

I guess, the Core is checking for something and is getting confused.

Any Core expert who could help solving it?

You can download the News for testing here
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

20
trabis
Re: extCal GUI Change - ready for testing on XOOPS 2.5.0
  • 2011/3/15 23:09

  • trabis

  • Core Developer

  • Posts: 2269

  • Since: 2006/9/1 1


global $xoopsModule;
//...
if (isset($xoopsModule) && $xoopsModule->getVar('version') != 167) {
$i++;
$adminmenu[$i]['title'] = _MI_NEWS_UPGRADE;
$adminmenu[$i]['link'] = "admin/upgrade.php";
$adminmenu[$i]['icon'] = "images/icons/update.png";
$adminmenu[$i]['icon_small'] = "images/update.png";
}


That should do it.


Login

Who's Online

163 user(s) are online (114 user(s) are browsing Support Forums)


Members: 0


Guests: 163


more...

Donat-O-Meter

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

Latest GitHub Commits