11
einherjer
Tutorials for CSS themes?
  • 2005/5/24 21:06

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


Are there any tutorials for creating a XOOPS theme with CSS instead of tables? Found only some that describe the "old" way.



12
einherjer
Replacment for myxoopstree (and general xoopsformloader questions)?
  • 2005/1/27 22:18

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


Hi,

i am playing around with the xoopsformloader and need help with drop down menue and delete Buttons.

e.g. in the core module MyDownloads, Function modCat there is a drop down menu with the structure of main and sub categorys and a delete (and cancel) button:

function modCat()

{

    global 
$xoopsDB$HTTP_POST_VARS$myts$eh$mytree;

    
$cid $HTTP_POST_VARS["cid"];

    
xoops_cp_header();

    echo 
"<h4>"._MD_DLCONF."</h4>";

        echo
"<table width='100%' border='0' cellspacing='1' class='outer'>"

           
."<tr class="odd"><td>";

    echo 
"<h4>"._MD_MODCAT."</h4><br />";

    
$result=$xoopsDB->query("SELECT pid, title, imgurl FROM ".$xoopsDB->prefix("mydownloads_cat")." WHERE cid=$cid");

    list(
$pid,$title,$imgurl) = $xoopsDB->fetchRow($result);

    
$title $myts->makeTboxData4Edit($title);

    
$imgurl $myts->makeTboxData4Edit($imgurl);

    echo 
"<form action=index.php method=post>"._MD_TITLEC."<input type=text name=title value="$title" size=51 maxlength=50><br /><br />"._MD_IMGURLMAIN."<br /><input type=text name=imgurl value="$imgurl" size=100 maxlength=150><br />

    <br />"
._MD_PARENT."&nbsp;";

    
$mytree->makeMySelBox("title""title"$pid1"pid");

    echo 
"<input type='hidden' name='cid' value='$cid'>

    <input type=hidden name=op value=modCatS><br />

    <input type=submit value=""._MD_SAVE."">

    <input type=button value="
._MD_DELETE." onClick="location='index.php?pid=$pid&cid=$cid&op=delCat'">";

    echo 
"&nbsp;<input type=button value="._MD_CANCEL." onclick="javascript:history.go(-1)" />";

    echo 
"</form>";

    echo
"</td></tr></table>";

    
xoops_cp_footer();

}


What would be the correct usage of xoopsformselect and xoopsformbutton to have the same functionality?

Maybe someone could "translate" the above function so that a php/xoops newb like me could see the difference?

Thanks



13
einherjer
Theme design howto?
  • 2004/11/13 16:07

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


I plan to create a new theme for my site and search for howtos.

I know the docs in the wiki and on xoops-design.de but i can remember that there was a very good howto a few months ago.

This howto describes the design of a theme using Dreamweaver - does anyone have a link as i am not able to find this?



14
einherjer
Re: release of 2.0.7 / 2.1 / 2.2 ?
  • 2004/5/31 15:39

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


thanks!

i will try the RC1 on my testsites.



15
einherjer
release of 2.0.7 / 2.1 / 2.2 ?
  • 2004/5/31 13:56

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


how are things going for any new version of xoops?

There was no official statement (newsletter) since 02-04, so i wonder when we will see the first betas for a new version?



16
einherjer
Re: Bug in Auto Login Feature
  • 2004/2/13 13:18

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


i prepare for the update

and i was reading about a fix in the changes.txt but there was no further info what was fixed.

Maybe i should look at the diffs



17
einherjer
Bug in Auto Login Feature
  • 2004/2/13 12:35

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


When activating the Auto Login Feature in 2.0.5.2 as described in the wiki the Last Login timestamps of all users using this feature are not updated.

Is this known and fixed in 2.0.6?



18
einherjer
Download 2.0.5.2?
  • 2004/2/13 12:01

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


Hi!

As i have made some changes and included some hacks in 2.0.5.2 and lost my documentation about this changes i need to download the original 2.0.5.2 package to run some diffs.

But as far as i see all downloads on sourceforge for this version are gone. Are there any other download location or could someone send me the original 2.0.5.2 (zip or tar.gz)?

Thanks!

EDIT: found at ftp.chg.ru/.5/sourceforge/xoops/xoops-2.0.5.2.zip



19
einherjer
Re: Xoops 2.1 Module development Roadmap
  • 2004/1/14 17:46

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


Some things that i and some users miss on my guildsite:

Forum:
- Hide private forums
- Permissions based on groups
There is already a hack for this by regen_r8:https://xoops.org/modules/newbb/viewtopic.php?topic_id=7260&forum=20#forumpost29719 (was able to integrate it in 2.0.5.2 also)

- Show new posts in privat forums (a 4. button with the key in orange)

- Mark all read button
- Mark all unread button

- Move single postings to other/new threads

- Attachments (in a secure way, only for registered users)

- If a user decides to delete his account the name should still appear at his posts. Otherwise in some older threads there an only posts by guests


Polls:
- Ability to create polls for some usergroups (registered, friends, whatever) only.
- Better protection for that posts (Uid stored in DB for voting instead of using a cookie)

Support for multilanguage features in all modules. (https://xoops.org/modules/newbb/viewtopic.php?topic_id=10734&forum=14#forumpost55224 - as a lot of XOOPS users use it there should maybe support for this in the core)

Would be great to see some of this in future versions. It is a pain to integrate all old hacks in every new update



20
einherjer
Re: SOLVED - Making Xoops CONTENT Multilingual *Fixed Code Quote problem*
  • 2003/8/15 0:54

  • einherjer

  • Just popping in

  • Posts: 30

  • Since: 2002/11/8


Thanks a lot hsalazar!

Just edited the files and it works great!

As ich can see all select boxes works correct now




TopTop
« 1 (2) 3 »



Login

Who's Online

161 user(s) are online (107 user(s) are browsing Support Forums)


Members: 0


Guests: 161


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