91
ianez
Re: Translations for XOOPS 2.0.16
  • 2007/2/15 18:11

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


Hi Rowdie,
I see you keep an eye on this thread so I ask you a courtesy.
The Italian local support has changed is address more than 8 months ago... we just wrote to xoops.org for changing it but with no changes in Local Support page.
So here's the new link: www.xoopsitalia.org
and at this address you can find a mini banner www.xoopsitalia.org/images/xitalia_ban.gif

thanx a lot

Ian



92
ianez
Re: Is there a TOP PAGE smarty identifier?
  • 2007/2/14 10:15

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


may be I did not read all the posts..
On some of my sites I use this code for inserting conditionals in the theme for the home, hope this 'll help
<{if $xoops_dirname == "system"}>Do this<{/if}>


Ian



93
ianez
Re: Translations for XOOPS 2.0.16
  • 2007/2/6 16:42

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


Hi there,
finally an updated italian translation for XOOPS 2.0.16,
basically an update of the old one plus some revisions...

Install completly translated.
Credit and changes in the changelog attached.
Support (in Italian) at www.xoopsitalia.org

Main download is HERE

A mirror is HERE

enjoy

Ian
_XoopsItalia Staff



94
ianez
Re: Happy New Year 2007
  • 2006/12/30 18:28

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


I wish a very happy new year's end to all the admins and developers of Xoops.
Many thanks to all of you for your work, hoping the next year will be the XOOPS year .
My best wishes to all modules and themes developers

Happy Xoopsing!

Ian



95
ianez
Re: Tableless Templating/Themeing
  • 2006/12/19 8:42

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


you can surely port it.
Negative padding tecnique is one of the most effective for 3 columns layouts, is this working with sides column of similar eight and not influenced by the main background?

Anyway you won't need javascript for playing with columns, using smarty sintax you'll be able to set your container width based on the presence or not of sides column. And you want need to put code for ie browsers in the theme because theme engine can redirect you to the right style for your browser

ciao
Ian



96
ianez
Re: how to disable .itemText:first-letter for a non boundry language ( persian)
  • 2006/12/19 8:23

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


if you don't need the class why still use it?
comment the two line about .itemtext:first-letter and you're ok

Ian



97
ianez
Re: Tableless Templating/Themeing
  • 2006/12/18 19:12

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


yes there are css themes, sometimes not too much well written or compatible, as far as I know there aren't 3 much columuns themes tableless really working good.

but answering to your question smg I have to say that if you can have validated and accessible themes (growing fast in XOOPS community) this can't be said about core and modules.
Nearly all the html generated by XOOPS is with tables inside, not WAI written, and there are some validation error.
The situation get even worse with modules, sometimes generating bad code and never tableless (maybe article and few other have some tableless template).

Now the positive part... slowly but with good quality the interest for valid and accessible html/css output is growing in XOOPS community. The future 2.3 version is very focused on this point.
I add that templating for XOOPS is very easy and has a fast learning curve, this thanks to smarty powered template system and to some fixed css class that nearly all modules use for layout.

From my side I'm trying to develope a good 3 columns tableless template and I released a basic theme for XOOPS (search for Scratchy in the news), projected to be the starting point for easy template creation, with all classes and html you need for xoops, but without any styling or layout.

Hope you'll join this great community and cms

Ian



98
ianez
Re: drag and drop blocks?!?
  • 2006/12/16 18:33

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


well on XOOPS Italia we are just trying to implement this features and in general Ajax implemmentations in Xoops.
At the moment all is in an alpha stage so nothing is viewable.. but if the creator, Dantom, will release some preview we'll set up kind of demo or else.

Ian



99
ianez
Re: some questions about editors in CBB 3.07
  • 2006/12/16 17:24

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


well I just solved the last question,
you can filter the select menu to show only to users wich have admin permision on CBB.

I simply added a line in forumform.inc.php around line 119 change this:
$forum_form->addElement(new XoopsFormSelectEditor($forum_form"editor"$editor$nohtml));

with
if ($xoopsUser->isAdmin($xoopsModule->getVar('mid'))) {
$forum_form->addElement(new XoopsFormSelectEditor($forum_form"editor"$editor$nohtml));    
}


now normal users won't have a select menu fot editor's choice, they'll have default editor setted in plugin.php;
admin users will have the select menu with all editors available (I stil can't filter them.. any idea?)
Only remember to activate html tags in forum settings and make a backup of the files you modifiy

Ian

ps Iv'e tried to have only select menu for forum tools in user side commenting related part in plugin.php like this
// MENU handler
/* You could remove anyone by commenting out in order to disable it */
$valid_menumodes = array(
    
=> _MD_MENU_SELECT,    // for selectbox
    //1 => _MD_MENU_CLICK,    // for "click to expand"
    //2 => _MD_MENU_HOVER        // for "mouse hover to expand"
    
);

but with no effect...



100
ianez
some questions about editors in CBB 3.07
  • 2006/12/16 16:59

  • ianez

  • Not too shy to talk

  • Posts: 188

  • Since: 2006/1/26


Hi there,
would like to know if in this version of CBB the custom config in plugin.php for allowed editors is working.

if I put something like
// Set allowed editors 
// Should set from module preferences?
$customConfig["editor_allowed"] = array("dhtmltextarea","FCKeditor");

I always get all available editors in the select menu when allowing html in forum settings..

how can I get this working?
and has someone tried applying kind of permission filter on that code or in forumform.inc.ph like 'if $xoopsUserIsAdmin' to have editor list displyed only for administrators?

thanx

Ian




TopTop
« 1 ... 7 8 9 (10) 11 12 »



Login

Who's Online

251 user(s) are online (182 user(s) are browsing Support Forums)


Members: 0


Guests: 251


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