News:

Wondering if this will always be free?  See why free is better.

Main Menu

[FREE] Images On Board

Started by eric1234, June 25, 2015, 06:46:35 PM

Previous topic - Next topic

eric1234

Hello,

I am looking for someone to help create a new Mod for Images On Board.

The original Mod called Images On Board which appeared to have been abandoned by the creator, so I have got no choice but to request for this Mod instead. 

http://www.simplemachines.org/community/index.php?topic=246022.0

Hopefully someone will be kind enough to spare some time to create this mod for the SMF community. Thank you very much :)

Illori

since the mod has no license that means no one can just update the mod. they would need to recode it from scratch.

eric1234

I see. Thank you for telling me. I will edit the thread. :)

Bigguy


eric1234

Quote from: Bigguy on June 25, 2015, 11:01:41 PM
Would this work:

http://custom.simplemachines.org/mods/index.php?mod=511

Hello Bigguy,

Thank you so much for your suggestion, but that modification is about changing the icon instead of putting images in Board's description. :(

villasg

The original mod work great in 2.0.10 .
Look in my forum www.thai.gr .
The only you need are this http://www.simplemachines.org/community/index.php?topic=246022.msg3140414#msg3140414



Steve

I just want to be clear for my own knowledge (and possibly anyone else interested):

Quote from: Illori on June 25, 2015, 06:57:06 PM
since the mod has no license that means no one can just update the mod. they would need to recode it from scratch.
Quote from: villasg on June 26, 2015, 06:12:06 AM
The original mod work great in 2.0.10 .
Look in my forum www.thai.gr .
The only you need are this http://www.simplemachines.org/community/index.php?topic=246022.msg3140414#msg3140414

(also posted here: http://www.simplemachines.org/community/index.php?topic=246022.msg3820947#msg3820947)

So, since there's no license, it's okay for villasg to do this? Does he need to rename it as his own work or how does this work now?
DO NOT pm me for support!

Illori

technically it should not be attached to the mods support topic. he can not make it his own work due to the license. with a closed license it is not an issue to post the changes to the mod in a reply but should not be an attachment.

Herman's Mixen

you can use and customize for your own use but you are not allowed to distribute it
Met vriendelijke groet, The Burglar!

 House Mixes | Mixcloud | Any Intelligent fool can make things bigger, more complex, and more violent.
It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Albert Einstein

Former Godfather of our dutch community ;)

villasg

Quote from: Herman's Mixen on June 26, 2015, 08:30:32 AM
you can use and customize for your own use but you are not allowed to distribute it


yes this is the correct answer 

eric1234

Quote from: villasg on June 26, 2015, 06:12:06 AM
The original mod work great in 2.0.10 .
Look in my forum www.thai.gr .
The only you need are this http://www.simplemachines.org/community/index.php?topic=246022.msg3140414#msg3140414
I have used this and installed it in my forum. 2.0.10 . No errors except the 2nd replace of the /Sources/Subs-Boards.php. So I manually settled it.

But then, the image just do not appeared in the description for unknown reason. SO I have got no choice but to request for a "new" modification to be develop by any kind developers. :)

Herman's Mixen

its really a quick edit you can do without an mod in BoardIndex.template.php of your theme


// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';


change to


// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], $board['id'] ,'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], $board['id'] ,'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], $board['id'] ,'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';


notice the extra $board[id]

now you can upload your images as follow 1on.png, 1off.png if subboard then 1on2.png the 1 infront indicates board id = 1, you do this for all your boards... just easy and quick ;)
Met vriendelijke groet, The Burglar!

 House Mixes | Mixcloud | Any Intelligent fool can make things bigger, more complex, and more violent.
It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Albert Einstein

Former Godfather of our dutch community ;)

Illori

he is not wanting to change the on/off image, he wants an image in the board description without using html in the board description.

Herman's Mixen

then he start customize that :P
Met vriendelijke groet, The Burglar!

 House Mixes | Mixcloud | Any Intelligent fool can make things bigger, more complex, and more violent.
It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Albert Einstein

Former Godfather of our dutch community ;)

Steve

Quote from: Illori on June 26, 2015, 08:25:08 AMhe can not make it his own work due to the license

What license? You said there wasn't one.

Quote from: Herman's Mixen on June 26, 2015, 08:30:32 AMyou can use and customize for your own use but you are not allowed to distribute it
Quote from: villasg on June 26, 2015, 08:51:51 AMyes this is the correct answer

But isn't attaching it to a post for anyone to grab the same as distributing it? I'm a tad confused now as you might have guessed.
DO NOT pm me for support!

☠ DeadMan ☠

Steve, as has been said, numerous times:

A mod that has no license, gets treated as having the most restrictive license.

So, no license = The worst license to have, in these cases.

Illori

Quote from: Steve on June 26, 2015, 06:04:50 PM
But isn't attaching it to a post for anyone to grab the same as distributing it? I'm a tad confused now as you might have guessed.

yes that is the same, the team is working harder on keeping this from happening in the future. they cannot clean up what has happened in the past too many mods and too many replies to read.

☠ DeadMan ☠

Well, for starters, you could clean up the ones people link to, like this one.

http://www.simplemachines.org/community/index.php?topic=246022.msg3140414#msg3140414

That would help, a little, I imagine. ;)

Steve

Quote from: ☠ DeadMan ☠ on June 26, 2015, 06:46:16 PM
Steve, as has been said, numerous times:

Excuse me for not knowing everything like you do. I didn't really need the superiority attitude. This would have sufficed:

Quote from: ☠ DeadMan ☠ on June 26, 2015, 06:46:16 PMA mod that has no license, gets treated as having the most restrictive license.

So, no license = The worst license to have, in these cases.

@ Illori, thanks again for the clear and informative answers you always give me.
DO NOT pm me for support!

☠ DeadMan ☠

Well, sorry for sounding like that, but as can see, even YOU, quoted basically the same thing I said, so it seemed to me, that you did know it.

Quote from: Steve on June 26, 2015, 08:14:16 AM
I just want to be clear for my own knowledge (and possibly anyone else interested):

Quote from: Illori on June 25, 2015, 06:57:06 PM
since the mod has no license that means no one can just update the mod. they would need to recode it from scratch.

Also, my intent, was not to say what I did, only to you, but to everyone reading. Especially those that seem to know this, yet still try to go around it. ;)

Advertisement: