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. ;)

eric1234

Guys, I do hope that you guys will focus on creating a new wonderful solution for this instead of focus on the licencing issue. Although I understand that a person shall not be distributing the modified modification without a proper license or rights to do so. But then, he was just trying to help those who are in need. :) And I appreciate his kindness to share it with the rest of the people although he may have done something he suppose not to.

Rules and Laws have no life but we do have life and have a heart. :)

Steve

Quote from: ☠ DeadMan ☠ on June 27, 2015, 08:23:36 AMWell, 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.

I just found out who you are (from another thread) and had I known that, I wouldn't have responded with such hostility. Not that we're particular friends or anything but you've done right by me (creating a couple of mods at my request) and I'll always thank you for that. :)
DO NOT pm me for support!

Herman's Mixen

I could write someting much better, the only issue are the licenses which are required the last couple of years... myself goes for full free stuff for whatever i should write... that's why i deleted al my mods from the past.. and should never release stuff to sites like this anymore !!

SMF has chosen to follow a path wich feels wrong to me ...

if the mod does not work for you, your stuck now period...

if you can code you can fix 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 ;)

Suki

#23
Allow me to clarify a few things.

SMF didn't chose any path. Copyright, as a form of protection to intellectual property has existed since the printer invention.

Copyright in software has existed since the very first program was made.


SMF DOES NOT confine mod authors to restrictive licenses, SMF does require mod authors to chose a license, any license, mod authors are FREE to chose whatever license suits their needs best, from completely closed source to public domain.

SMF has been requiring mod authors to chose a license for a short period of time, this means old mods didn't have to follow this requirement and thus, those mods do not explicitly states any license, on those cases, international copyright laws declare that any intellectual property without a specified license its AUTOMATICALLY covered  even without using an "all rights reserved" statement or a copyright symbol.  In other words, the mod author's copyright is fully protected.  This is not something SMF "chose" to apply.

You can still use a closed source mods for your own personal use, you can post changes to closed source mods, you can build a new mod based on the idea/concept of a proprietary mod providing you aren't using any of the original code.

The only thing you can't do is redistribute a closed source mod or take ownership/claim copyrights on a closed source modification.


It is important to fully understand that SMF only requires a license BUT that DOES NOT MEAN mods needs to be closed source or open source only, there are all kinds of license for all kinds of styles and preferences, mod authors are FREE to chose whatever license they prefer.

More info can be found at http://www.simplemachines.org/community/index.php?topic=532829.0

Edit, grammar and typos.
Disclaimer: unless otherwise stated, all my posts are personal and does not represent any views or opinions held by Simple Machines.

Herman's Mixen

#24
thats something new lol... -insult removed- :P

when there where just the licenses when a author put it "before" ... smf allowed this new license policy all was fine ...now its stuck even on mod authors who already left the scene

and i am leaving this -snip- also...

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 ;)

Suki

I'm sorry that failing to grasp copyright/licensing concept  has made you to take the decision to leave this place.

I reiterate SMF's compromise to follow and comply any international copyright laws governing intellectual property.
Disclaimer: unless otherwise stated, all my posts are personal and does not represent any views or opinions held by Simple Machines.

LiroyvH

That's a ridiculous comment Herman. We have to abide the law, it's as simple as that.
You're suggesting that we should violate international copyright laws and open ourselves up to legal trouble. Yeah, think again.

Suki has clearly explained what the situation is, and what the law is. For which I thank her.
We cannot change the law. If you want to change the law: open up a petition at change.org and your local government. Good luck with that! :)

So you said:
Quote
myself goes for full free stuff for whatever i should write... that's why i deleted al my mods from the past.. and should never release stuff to sites like this anymore !!

So that's easily settled then, if you want it to be free for everyone to use and fork:
Release your mod under the BSD license. Tadaaaa! Problem solved. ;)
Because by not choosing a license, you're doing exactly what you do not want... As Suki explained, not specifying a license means everyone has to assume by law that it is under a very restrictive license... And thus, you're releasing it in a way that it's not "full free". It's actually "full restricted". Basically, it's your own fault, and it has nothing to do with "a site like this".

We're trying to ensure that what you want actually happens, that's exactly why we made that rule. And you're doing the opposite of what you claim that you want... Gosh. That you don't understand how the law works is all fine and dandy, but don't start making ridiculous accusations that we are crap whilst it's your own choices that are the root cause of "the problem". :/

One more time:
- Releasing your mod without license == releasing your mod with a maximum restricted license
- Releasing your mod with a license == depending on the license you choose, it can be extremely liberal; such as BSD.
Not hard to understand, right?

If you want to violate international copyright laws, you can do so at your own website; but we will not allow it here.
Incidentally, if you do choose to violate the applicable laws on your own site; you cannot link to it here.
That's not a matter of "having a heart", it's simply a matter of "we're not going to risk having a lawsuit on our ass"...


As such, as we have been made aware of the copyright violation posted by Maximus: that attachment has now been removed. When we're made aware of copyright violations: we're obliged to remove it, to comply with the laws that apply to us. Nothing we can do about it.
Thank you for bringing it to our attention. It can be restored if Bulakbol grants permission for derivate works, or updates the mod himself.
I hope someone will write a new mod like this from scratch for the OP and others that are interested.
I see suggestions have been made, so maybe someone is happy to write a new mod.


Please don't look angry at us for abiding the law and ensuring we can keep existing...
It's easy to ask from us that we open ourselves up to lawsuits and potentially thousands of dollars in damages, as long as you don't have to pay it.
We're not going to do that, sorry.

Closing this topic now.
((U + C + I)x(10 − S)) / 20xAx1 / (1 − sin(F / 10))
President/CEO of Simple Machines - Server Manager
Please do not PM for support - anything else is usually OK.

Advertisement: