The Mana World

Feel the mana power growing inside you!
It is currently Sat May 25, 2013 7:44 pm

All times are UTC - 1 hour




Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2, 3  Next
Author Message
 Post subject: phpbb3
PostPosted: Wed Jan 23, 2008 10:38 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
will the forums be updating to the new phpbb3?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 24, 2008 8:03 am 
Offline
TMW Adviser
TMW Adviser
User avatar

Joined: Tue Apr 13, 2004 6:11 pm
Posts: 2520
Location: Italy
They will, we're working on it.

_________________
Image TMW Nightly builds
Image TMW Italian community


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jan 24, 2008 4:55 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
well then yaaay.

Well I dont have much of a face around here, I have been off and on the boards in the past, but would like to be around more regularly and am interested in getting involved in the project, so if you need some hands with web design/maintenance, my expertise is with html, php...phpbb...mysql...apache...etc..etc...

Let me know if there are things I could do to start out.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jan 26, 2008 9:03 am 
Offline
TMW Adviser
TMW Adviser
User avatar

Joined: Tue Apr 13, 2004 6:11 pm
Posts: 2520
Location: Italy
If you want to help there's an easy request I have. Until we switch to phpBB3, on the current forum I found the topic list very annoying. On widescreens is quite hard to find the latest post for a given title. Separating topics with a darker border will improve readability a lot I think.

_________________
Image TMW Nightly builds
Image TMW Italian community


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jan 26, 2008 9:01 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
Hey, not a problem, thats a quick and easy change. Just pm me with the information I need to make the change. Also responding to what you posted in the job section, I would like to help with the switch.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jan 27, 2008 9:02 pm 
Offline
TMW Adviser
TMW Adviser
User avatar

Joined: Tue Apr 13, 2004 6:11 pm
Posts: 2520
Location: Italy
This is our current theme file:

Quote:
<?php

//
// phpBB 2.x auto-generated theme config file for tmw3
// Do not change anything in this file!
//

$tmw3[0]['template_name'] = "tmw3";
$tmw3[0]['style_name'] = "TMW";
$tmw3[0]['head_stylesheet'] = "tmw3.css";
$tmw3[0]['body_background'] = "";
$tmw3[0]['body_bgcolor'] = "";
$tmw3[0]['body_text'] = "";
$tmw3[0]['body_link'] = "";
$tmw3[0]['body_vlink'] = "";
$tmw3[0]['body_alink'] = "";
$tmw3[0]['body_hlink'] = "";
$tmw3[0]['tr_color1'] = "f2ebe7";
$tmw3[0]['tr_color2'] = "e1d6cf";
$tmw3[0]['tr_color3'] = "";
$tmw3[0]['tr_class1'] = "row1";
$tmw3[0]['tr_class2'] = "row2";
$tmw3[0]['tr_class3'] = "";
$tmw3[0]['th_color1'] = "";
$tmw3[0]['th_color2'] = "";
$tmw3[0]['th_color3'] = "";
$tmw3[0]['th_class1'] = "";
$tmw3[0]['th_class2'] = "";
$tmw3[0]['th_class3'] = "";
$tmw3[0]['td_color1'] = "";
$tmw3[0]['td_color2'] = "";
$tmw3[0]['td_color3'] = "";
$tmw3[0]['td_class1'] = "row1";
$tmw3[0]['td_class2'] = "row2";
$tmw3[0]['td_class3'] = "";
$tmw3[0]['fontface1'] = "";
$tmw3[0]['fontface2'] = "";
$tmw3[0]['fontface3'] = "";
$tmw3[0]['fontsize1'] = "0";
$tmw3[0]['fontsize2'] = "0";
$tmw3[0]['fontsize3'] = "0";
$tmw3[0]['fontcolor1'] = "";
$tmw3[0]['fontcolor2'] = "";
$tmw3[0]['fontcolor3'] = "";
$tmw3[0]['span_class1'] = "";
$tmw3[0]['span_class2'] = "";
$tmw3[0]['span_class3'] = "";
$tmw3[0]['img_size_poll'] = "";
$tmw3[0]['img_size_privmsg'] = "";

?>


Feel free to ask anything you need[/quote]

_________________
Image TMW Nightly builds
Image TMW Italian community


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jan 28, 2008 6:51 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
You cant change anything in that file...its autogenerated, so it will overwrite any changes you make.

What needs to change is the file

viewforum_body.html and find the section:

Code:
<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">


change that section to:
Code:
<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle" <!-- IF topicrow.S_UNREAD_TOPIC -->style="border-style: solid"<!-- ENDIF -->>


You can change the border type, by changing the border-style tag to another property. ie. double, dotted, dashed.

If you want to change color you can add border-color within the "style" tag. or you can combine everything into a single tag of border like this:

Code:
<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle" <!-- IF topicrow.S_UNREAD_TOPIC -->style="border: medium solid rgb (102,0,0)"<!-- ENDIF -->>


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jan 29, 2008 7:12 am 
Offline
TMW Adviser
TMW Adviser
User avatar

Joined: Tue Apr 13, 2004 6:11 pm
Posts: 2520
Location: Italy
Just to be clear I'd like to have a border around each topic row in the topic list:

http://forums.themanaworld.org/viewforum.php?f=11

That file is just an export containing all the values I can directly change through the admin panel. If they're not enough I can directly change the css, so no need to override style.

_________________
Image TMW Nightly builds
Image TMW Italian community


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jan 30, 2008 8:29 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
in overall_header.html, there is a line you may need to change:
Code:
.forumline   { background-color: {T_TD_COLOR2};


Yours may have a different value for the color...find out which value this is, and you can change that value through the admin panel as:

td_color1
td_color2
td_color3
(whichever value is assigned the .forumline tag)


Top
 Profile  
 
 Post subject:
PostPosted: Sat Feb 02, 2008 9:51 am 
Offline
Novice
Novice
User avatar

Joined: Sun Mar 26, 2006 3:39 pm
Posts: 293
Location: USA
I'm a little confused about why it's such a big deal to convert from phpbb2 to 3. If people suddenly had to reregister and start with a blank board, I don't think there would be any significant complaints, besides junk like "I miss my post count" .. though I don't have a gajillion posts like some of you guys. ;) 8)


Top
 Profile  
 
 Post subject:
PostPosted: Sat Feb 02, 2008 5:02 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
you cant really just restart the forums from scratch, because the forums serve more of a purpose then just an immediate means of communication, one of the ideas behind having a forum is that previous posts and topics, can be searched so that you have only new and fresh topics, and evolving content.

The conversion is not such a big deal, it seems that having people help with the webdev portion of the game is lacking though. Hopefully I will be able to help with that :)

There is also modification to the installation for design and function that need to be modified before a new board would be able to go live.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Feb 03, 2008 2:42 pm 
Offline
Forum Administrator
Forum Administrator
User avatar

Joined: Thu Aug 25, 2005 3:08 pm
Posts: 7784
Location: Germany
Resetting the forum would be quite a big problem because there are tons of graphics, guides and game design discussions that haven't been posted anywhere else.

_________________
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master
Please do not send me any inquiries regarding player accounts on TMW.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 05, 2008 5:57 pm 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
Is someone going to change the borders for the topics?


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 06, 2008 7:19 am 
Offline
TMW Adviser
TMW Adviser
User avatar

Joined: Tue Apr 13, 2004 6:11 pm
Posts: 2520
Location: Italy
dabe wrote:
I'm a little confused about why it's such a big deal to convert from phpbb2 to 3. If people suddenly had to reregister and start with a blank board, I don't think there would be any significant complaints, besides junk like "I miss my post count" .. though I don't have a gajillion posts like some of you guys. ;) 8)


There are four main reasons that are holding the switch:
1) We're waiting for a shared account activation to host the forum, since the current one is only accessible by a couple of developers.
2) We'd like to port our skin before activating phpBB3.
3) We have no rush, since the current forum is pretty functional.
4) Noone is willing/has got time to do it.

GravyTrain wrote:
Is someone going to change the borders for the topics?


I'd love to, but for the reason 1 explained above, it's a bit hard for me.

_________________
Image TMW Nightly builds
Image TMW Italian community


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 06, 2008 7:49 am 
Offline
Peon
Peon

Joined: Mon Nov 13, 2006 4:46 am
Posts: 36
Well let me know when you are able to get the shared account activation sorted out. I am 'ready and willing' to do whatever is needed.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2, 3  Next

All times are UTC - 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group