Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
GSgallery: Need help from developers - Testing new version
Author Message
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-07-16 02:07:09
GSgallery: Need help from developers - Testing new version
I'm planning on releasing a new version of GSgallery soon.
This version will have a lot of new features, and one of the new additions is the ability to install plugins into GSgallery. Need help on identifying all the possible places for hooks.
At the same time, opening the door for any developers that are willing to do beta testing, and get familiar with the plugin system (which is the same as GetSimple)

Get the latest revision in:

http://code.google.com/p/gsgallery/

you also need Admin Tab Loader installed:
http://www.smooka.com/blog/wp-content/pl...d.php?id=5

Thanks.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-07-23 02:09:44
GSgallery: Need help from developers - Testing new version
Posted a beta version of all this new changes. So please help me test this new changes.

Beta Version: 2.5
http://code.google.com/p/gsgallery/downl..._beta1.zip

You guys can report any findings here or in the main topic for GSgallery.

Thanks in advance

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
Oleg06 Online
Posting Freak

Posts: 993
Joined: Apr 2010
2010-07-23 04:13:51
GSgallery: Need help from developers - Testing new version
juliancc wrote:Posted a beta version of all this new changes. So please help me test this new changes.

Beta Version: 2.5
http://code.google.com/p/gsgallery/downl..._beta1.zip

You guys can report any findings here or in the main topic for GSgallery.

Thanks in advance
It seems that all is well
Visit this user's website Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-07-23 04:50:43
GSgallery: Need help from developers - Testing new version
Oleg06 wrote:
juliancc wrote:Posted a beta version of all this new changes. So please help me test this new changes.

Beta Version: 2.5
http://code.google.com/p/gsgallery/downl..._beta1.zip

You guys can report any findings here or in the main topic for GSgallery.

Thanks in advance
It seems that all is well


Thanks.. But i'm sure it's not perfect. haha I know you guys will find bugs!

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
yojoe Offline
GS Freak

Posts: 1,141
Joined: Jun 2010
2010-07-23 09:47:49
GSgallery: Need help from developers - Testing new version
I'll have a look in next week if a very_undecided_guy will finally decide if he wants a website with galleries or not Wink
I can assure you, that I will munch whole code of your plugin like I did last time Big Grin

Themes: Getsimple BlueBusiness theme
Plugins: Online Visitors, Notepad
Visit this user's website Find all posts by this user Quote this message in a reply
kaiocobain Offline
Junior Member

Posts: 8
Joined: Apr 2010
2010-08-08 00:48:17
GSgallery: Need help from developers - Testing new version
This new version of the GS Gallery is great. congratulations.
'm In need of a little gallery of images other than that.
would like her to enjoy with the panel and the large image above the thumbnails and navigation on the side or bottom as Lesya http://spaceforaname.com/gallery-light.html link.
can someone help me. Conehço Little Bit of php, my business is even attached designer.

news projects http://www.caniltapuia.com.br
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-08 00:51:52
GSgallery: Need help from developers - Testing new version
kaiocobain wrote:This new version of the GS Gallery is great. congratulations.
'm In need of a little gallery of images other than that.
would like her to enjoy with the panel and the large image above the thumbnails and navigation on the side or bottom as Lesya http://spaceforaname.com/gallery-light.html link.
can someone help me. Conehço Little Bit of php, my business is even attached designer.


With the new version you can easily write a plugin to incorporate that script. I'll be glad to answer any questions on how to integrate such plugin. But I'm unable to actually write it myself as I'm busy with other projects.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
kaiocobain Offline
Junior Member

Posts: 8
Joined: Apr 2010
2010-08-09 23:18:21
GSgallery: Need help from developers - Testing new version
juliancc wrote:
kaiocobain wrote:This new version of the GS Gallery is great. congratulations.
'm In need of a little gallery of images other than that.
would like her to enjoy with the panel and the large image above the thumbnails and navigation on the side or bottom as Lesya http://spaceforaname.com/gallery-light.html link.
can someone help me. Conehço Little Bit of php, my business is even attached designer.


With the new version you can easily write a plugin to incorporate that script. I'll be glad to answer any questions on how to integrate such plugin. But I'm unable to actually write it myself as I'm busy with other projects.


thanks for the support. so lets go.
I started to put this plugin GS gallery but when I put the folder on the get simple js does not work anymore.

What are the first steps to creating a plugin for it?

news projects http://www.caniltapuia.com.br
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-10 22:43:58
GSgallery: Need help from developers - Testing new version
kaiocobain wrote:thanks for the support. so lets go.
I started to put this plugin GS gallery but when I put the folder on the get simple js does not work anymore.

What are the first steps to creating a plugin for it?

You can start by creating a php file inside of the plugin folder:

/yourapp/plugins/squareit-gallery/plugins/

name your file whatever you want it to be.

then the requirement of the file is for you to have something like this:
Code:
<?php
# get correct id for plugin
$mypluginthisfile=basename(__FILE__, '.php');

# register plugin
gsg_register_plugin(
    $mypluginthisfile,
    'Sample Plugin',
    '1.0',
    'Square IT Solutions',
    'http://www.squareitsol.com/',
    'Description: Sample plugin',
    'plugins', //page type
    'myplugin_initcall'
);

In reality, the plugin system uses the same mechanics as GetSimple, so the documentation on GetSimple plugins should help you get a crash course.

Here is a list of all the available hooks.

****Available Hooks***
ACTIONS
gsg-add-gallery
gsg-add-gallery-process
gsg-head
gsg-settings-render
gsg-settings-process
gsg-pre-gallery
gsg-post-gallery

FILTERS
gsg-gallery-output
*/

you will probably be using:
gsg-head
gsg-pre-gallery
gsg-post-gallery
gsg-gallery-output


Hope this will give you a good start..

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-11 01:53:15
GSgallery: Need help from developers - Testing new version
Julian On my system when i click the gallery images getsimple siezes up screen turns a light gray, I looked on your site for answers and here!

If I send you ftp access could you spare time to look it over please.

Would love to get working and make a donation of $25 dollars to fix, much appreciated.

link to issue http://getsimplehosting.com/features/themes/

Tried to figure out issue noticed you said might be jquery conflict, but I am intelligence challenged Smile
(This post was last modified: 2010-08-11 01:56:58 by retizotyo.)
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-11 03:39:28
GSgallery: Need help from developers - Testing new version
daguy wrote:Julian On my system when i click the gallery images getsimple siezes up screen turns a light gray, I looked on your site for answers and here!

If I send you ftp access could you spare time to look it over please.

Would love to get working and make a donation of $25 dollars to fix, much appreciated.

link to issue http://getsimplehosting.com/features/themes/

Tried to figure out issue noticed you said might be jquery conflict, but I am intelligence challenged Smile

It does appear to be a jquery conflict.

You don't need to send me ftp. I can probably fix it by logging in the admin section. PM me your GetSimple admin cridentials, and I will gladly fix it for you.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-11 04:36:10
GSgallery: Need help from developers - Testing new version
daguy wrote:Julian On my system when i click the gallery images getsimple siezes up screen turns a light gray, I looked on your site for answers and here!

If I send you ftp access could you spare time to look it over please.

Would love to get working and make a donation of $25 dollars to fix, much appreciated.

link to issue http://getsimplehosting.com/features/themes/

Tried to figure out issue noticed you said might be jquery conflict, but I am intelligence challenged Smile

Just fixed your issue. Check your Private Messages as I just send you some details.

Thanks

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-11 10:00:19
GSgallery: Need help from developers - Testing new version
Wow! Julian; 'U D Man' thanks a lot for the help!
Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-11 11:15:34
GSgallery: Need help from developers - Testing new version
anyone know how to adjust the thumbnail size and the 'box display size' for new gallery 2.5???
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-11 22:19:03
GSgallery: Need help from developers - Testing new version
daguy wrote:anyone know how to adjust the thumbnail size and the 'box display size' for new gallery 2.5???

I think I've posted this before, but either way. You can go to line 559 of squareit-gallery.php
Code:
$gal .= '<a href="'.$SITEURL.'data/uploads/'.  $image .'" title="'. $sqr_captions[$key]  .'" '.$reltype.$styleclass.'><img alt="'.$sqr_captions[$key].'" src="'.$SITEURL.'admin/inc/thumb.php?src='.  $image .'&dest=../../'.GSG_RELFOLDERPATH.'thumbs/thumbmed.'.  $image .'&x=125&y=125&f=1" class="sqr_img" /></a>';

and modify
x=125&y=125
to the new thumb size.

After this you need to delete all the images in the thumbs folder inside the gallery plugin.

Then you need to change some of the CSS
Code:
.sqr_image_gallery li{
    float: left;
    padding:3px;
    border:1px solid #C7C7C7;
    min-height: 125px;
    margin:7px 14px 7px 0px;
    background-color:#FFF;
    list-style-type:none !important;
}

.sqr-thumb-cont{
    width:100%;
    height:125px;
    background-color:#FFF;
    text-align: center;
}

Change min-height in .sqr_image_gallery li and height in .sqr-thumb-cont

to the new size.

I've been wanting to do this as a setting in the plugin, but I just haven't had the time to get to it.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-12 21:59:44
GSgallery: Need help from developers - Testing new version
Well aware you do not have time now, this is a question for future only!

This is possible too much too ask of the Gallery, but you never know what clever coders can accomplish.

What I would like if possible is to either: link to another page OR to the lightbox as a ::: choice.
Perhaps below description the ability to add a link to another page???

Please take a look at this as example, and you will see its possible extended usefulness:

<http://www.realcedar.org/cedar-specifica...rview.aspx>
or this
<http://www.realcedar.org/cedar-gallery/overview.aspx>
or this
<http://www.realcedar.org/cedar-products/overview.aspx>
(This post was last modified: 2010-08-12 22:04:44 by retizotyo.)
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-12 23:46:45
GSgallery: Need help from developers - Testing new version
daguy wrote:Well aware you do not have time now, this is a question for future only!

This is possible too much too ask of the Gallery, but you never know what clever coders can accomplish.

What I would like if possible is to either: link to another page OR to the lightbox as a ::: choice.
Perhaps below description the ability to add a link to another page???

Please take a look at this as example, and you will see its possible extended usefulness:

<http://www.realcedar.org/cedar-specifica...rview.aspx>
or this
<http://www.realcedar.org/cedar-gallery/overview.aspx>
or this
<http://www.realcedar.org/cedar-products/overview.aspx>

I actually fix and added htmlspecialchars to the alt attributes of the thumbs. so you can now use html code inside of the caption to include links.

See the example here: http://www.squareitsol.com/gs/square-it-...in-sample/

In the future I will probably restrict it or improve it.. but if you get the latest version from google code repository. (do an svn checkout of the main branch) The fix for this is included.

Let me know if this what you needed.

PS: This can also be improved and extended by creating a new plugin. Just wanted to say it here, so in the event another developer wants to create plugins and extend the functionality, they are more then welcome. I hope to have better documentation on how to use the gallery and how to create plugins. But, in the mean time, everyone is welcome to post here. I tend to respond fairly quickly.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
(This post was last modified: 2010-08-12 23:49:14 by jahmar.)
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-13 02:22:28
GSgallery: Need help from developers - Testing new version
http://k-lites.com/lighter-models/
changed the code in css and in 559 of squareit-gallery.php 100% for sure as instructed --repeated 2X to be sure.
yes I deleted all of them and yes total installed

any idea why its so naughty?

Still SHOWS at small size even though I set on 2nd attempt at 180px

the first attempt at 160 was also done here .. I assume you kept access??
<http://getsimplehosting.com/sample-page-...y-pages-1/>

warmly

brianb
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-13 05:56:50
GSgallery: Need help from developers - Testing new version
daguy wrote:http://k-lites.com/lighter-models/
changed the code in css and in 559 of squareit-gallery.php 100% for sure as instructed --repeated 2X to be sure.
yes I deleted all of them and yes total installed

any idea why its so naughty?

Still SHOWS at small size even though I set on 2nd attempt at 180px

the first attempt at 160 was also done here .. I assume you kept access??
<http://getsimplehosting.com/sample-page-...y-pages-1/>

warmly

brianb

squareit-gallery.php was not updated. (It's actually line 569.)
I changed it to 180px and removed all the images in the thumb directory and it worked fine.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-14 03:58:53
GSgallery: Need help from developers - Testing new version
One Minor ? is it bug:

The text description can not be entered until gallery items I check off are saved.

Then users have to go back to enter description!

Descriptions should be enterable at time of checking off items for gallery.

It works now, but not as intuitively for new users, slightly confusing, I think.

that's all folks!

PS fabulous plugin
Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-14 05:23:39
GSgallery: Need help from developers - Testing new version
daguy wrote:One Minor ? is it bug:

The text description can not be entered until gallery items I check off are saved.

Then users have to go back to enter description!

Descriptions should be enterable at time of checking off items for gallery.

It works now, but not as intuitively for new users, slightly confusing, I think.

that's all folks!

PS fabulous plugin

Weird. It should allow you to enter the text as soon as you check the box. But i will keep it in mind.

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
daguy Offline
Junior Member

Posts: 21
Joined: Jun 2010
2010-08-15 02:33:37
GSgallery: Need help from developers - Testing new version
BUG:
when I fill in the descriptions for multiple items in gallery--- then make a change such as deleting items with description and without.

The entire list then does not update and all the descriptions are WRONG for each item.

Then have to re-do the listed items, this is a nasty bug

warmly
brianb
(This post was last modified: 2010-08-15 02:33:57 by retizotyo.)
Find all posts by this user Quote this message in a reply
JWH_Matthew Offline
Administrator

Posts: 663
Joined: Nov 2009
2010-08-17 04:40:10
GSgallery: Need help from developers - Testing new version
Would it be possible to some how change the way we select / manage images?

I have about 200 images in my uploads and its very difficult to scan through them all and check the right ones.

JWH Technologies
Have any marketing ideas for Get-Simple? Let me hear them!
Visit this user's website Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-17 06:34:07
GSgallery: Need help from developers - Testing new version
OWS_Matthew wrote:Would it be possible to some how change the way we select / manage images?

I have about 200 images in my uploads and its very difficult to scan through them all and check the right ones.

Yes, there is always a way. Wink

The truth is that initially the plugin was going to be a SIMPLE gallery plugin, that used the integrated file system. I will need to re-do/re-think some things.

If anyone has any suggestions, or is willing to help, It would be great..

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
juliancc Offline
Member

Posts: 196
Joined: Mar 2010
2010-08-17 06:35:23
GSgallery: Need help from developers - Testing new version
daguy wrote:BUG:
when I fill in the descriptions for multiple items in gallery--- then make a change such as deleting items with description and without.

The entire list then does not update and all the descriptions are WRONG for each item.

Then have to re-do the listed items, this is a nasty bug

warmly
brianb

Not sure if I follow you but I will try to replicate this issue, and get back to you. In the mean time, can you tell me the version of the plugin you have installed in your system?

- Julian

My GetSimple Plugins: Simple Image Gallery | TweetMeme reTweet Button
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)

Generate Leads from Documents vCard Hosting