Hello,
Another small extension from me wink.

This extension will help you changing the topic's ownership to new user.

It will help the moderation and administration. Suppose, as a moderator, you have created a topic on behalf of someone else. As you are the owner, only you (or mods) can change the topic. But if you want to let that user edit the topic, this extension will help you.


Download

52

(151 replies, posted in PunBB 1.3 extensions)

dimkalinux wrote:

Yes, i known that is possible - but its not normal method. Hook will be much better.

No way but agree smile.

But you may try that until you get one wink.

53

(151 replies, posted in PunBB 1.3 extensions)

dimkalinux wrote:

Needed HOOK for adding elements to $visit_links array in HEADER.PHP

if ($forum_user['g_read_board'] == '1' && $forum_user['g_search'] == '1')
{
    $visit_links = array();

    if (!$forum_user['is_guest'])
        $visit_links['newposts'] = '<span id="visit-new"'.(empty($visit_links) ? ' class="first-item"' : '').'><a href="'.forum_link($forum_url['search_new']).'" title="'.$lang_common['New posts title'].'">'.$lang_common['New posts'].'</a></span>';

    $visit_links['recent'] = '<span id="visit-recent"'.(empty($visit_links) ? ' class="first-item"' : '').'><a href="'.forum_link($forum_url['search_recent']).'" title="'.$lang_common['Active topics title'].'">'.$lang_common['Active topics'].'</a></span>';
    $visit_links['unanswered'] = '<span id="visit-unanswered"'.(empty($visit_links) ? ' class="first-item"' : '').'><a href="'.forum_link($forum_url['search_unanswered']).'" title="'.$lang_common['Unanswered topics title'].'">'.$lang_common['Unanswered topics'].'</a></span>';
}

*** NEED HOOK RIGHT THERE ***

$visit_elements['<!-- forum_visit -->'] = (!empty($visit_links)) ? '<p id="visit-links" class="options">'.implode(' ', $visit_links).'</p>' : '';

Though there is not any hook actually, but you can still push menu here. just check the source of Pun_PM and you will know how to put new menu here smile.

but hook may be easier way of to do smile.

54

(28 replies, posted in PunBB 1.3 additions)

Parpalak wrote:

Those who want a style without graphics can still use Oxygen or its modifications. But there are people who are not so ascetic. We've decided to develop some styles for them too.

agree wink

55

(21 replies, posted in PunBB 1.3 additions)

Dimitra wrote:

we opened a shop http://shops.zeroparking.net/  smile

any English site?

Hello,
It looks simply color scheme to Oxygen Theme. Looks good but I am looking forward for some good punbb theme.

57

(22 replies, posted in PunBB 1.3 extensions)

I am afraid, I am not actually sure yet what this extension does  roll . Can you kindly explain it's functionalities?

58

(115 replies, posted in Supported extensions)

Slavok wrote:
rajuru wrote:

Hello,
Can you kindly make it (the poll options in quick reply  and reply page) collapsible by default (can be configurable too by admin). It will make posting/replying more comfortable.

Thanks for the idea. We will think about it.

did u think about it ? smile

59

(85 replies, posted in PunBB 1.3 extensions)

lbouriez wrote:

I made the french translation for the extension.
Download French extension


Thanks for the contribution.

60

(85 replies, posted in PunBB 1.3 extensions)

nice to hear that.

61

(85 replies, posted in PunBB 1.3 extensions)

is your topic subject too long?

you may also read the reply # 24 in this thread!

62

(60 replies, posted in Supported extensions)

Advisory wrote:
rajuru wrote:

Download the Beta:

Bad URL. Error - 404 sad

Reload, please!

thanks


uploaded. try again.

thanks

yep, disabled for guests.

Auto suggestion is enabled and ext is renamed.

New thread is here

Hello,
As per keydog's suggestion, I have enabled auto suggestion for userlist page and hence renamed the extension.

Name: Username Auto Suggest for Userlist, PM
Description: This fetches usernames as you type to provide auto suggest feature in Userlist and pun_pm extension (if installed). Credit also goes to http://jetlogs.org/2007/10/22/jquery-au … yup-event/ for code help.
Author: The HungryCoder.
Version: 1.6.
Download: Click here
Dependency: jquery

I have tested in firefox only. please provide feedback about other browsers.

good idea. then I will renamed the plugin and update it asap big_smile

This extension will provide auto suggestion as you type username while sending Private Message using Pun PM extension.

This extension needs jquery and pun_pm to run.  Please install these two extensions before installing this extension.

If you are using jquery_y rather than jquery ext, then please edit the manifest.xml and edit the following line:

<dependency>jquery</dependency>

to

<dependency>jquery_y</dependency>

Then you may upload the directory in your extension directory, install it from Administration->Extensions. That's it.

Download v1.2

68

(115 replies, posted in Supported extensions)

Hello,
Can you kindly make it (the poll options in quick reply  and reply page) collapsible by default (can be configurable too by admin). It will make posting/replying more comfortable.

69

(85 replies, posted in PunBB 1.3 extensions)

Source Code wrote:
rajuru wrote:
Source Code wrote:

can anyone re up this? seems the links are out of date

i have updated the main post. can you please try now?

perfect thank you so very much!

you are welcome sir smile

70

(85 replies, posted in PunBB 1.3 extensions)

Source Code wrote:

can anyone re up this? seems the links are out of date

i have updated the main post. can you please try now?

71

(151 replies, posted in PunBB 1.3 extensions)

Slavok wrote:

Added in [1462].

cool, thanks

wow,
thanks a lot. i will update my rules.

thanks again for your help.

73

(151 replies, posted in PunBB 1.3 extensions)

hello,
i want a hook in format_time() function just before it returns the value. There is a hook fn_format_time_start at beginning, so please add fn_format_time_end at the end of the function (just before it returns it).

I used an mod for SEF URLs in PunBB 1.2.x. The URLs looked like:

for post: pxxx.html (p1938.html)
for topic: txxx.html (t282.html)
for forum: fxxx.html (f2.html).


However, the SEF URL scheme is different in 1.3.x. As a result, when I enable SEF URL in new punbb old SEF URLs don't work anymore. That's why I could not use new SEF scheme in PunBB 1.3.x. However, today I planned to make a solution.

I have enabled File based URL Scheme. then I have appended the following lines in include/url/File_based/rewrite_rules.php

'/^t[\/_-]?([0-9]+)(\.html?|\/)?$/i'                                                                                    =>    'viewtopic.php?id=$1',
    '/^p[\/_-]?([0-9]+)(\.html?|\/)?$/i'                                                                                    =>    'viewtopic.php?pid=$1',
    '/^f[\/_-]?([0-9]+)(\.html?|\/)?$/i'                                                                                    =>    'viewforum.php?id=$1',

i can't explain these as I am poor at Regex. However, it apparently worked for me. I will test it for a few days though smile.

hello,
so far I remember it was for punbb 1.2.x. I am not using that tree anymore. i have plan same for 1.3.x

thanks