51
culex
Re: integrate open graph
  • 2012/5/28 13:02

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Smallworld already is using opengraph in sense of bookmarking updates is rendering Ogg and Fb metas when submitting.

When shared you can in your facebook/twitter/g+ like/unlike/share or whatever.

I was thinking though to add a search filter to see how many people had shared every particular update in the social networks but finally I descided it would make the update's tool-line too busy.

For what purpose is it needed, what does it need to show ?
Programming is like sex:
One mistake and you have to support it for the rest of your life.



52
culex
Re: Social Network module
  • 2012/5/13 23:16

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:

Can you enlarge the window height which lists the images of the album?
I think it's here: smallworld / img_upload.php


Ah the actual gallery layer...

I enlarged the image description popup that emerges after image uploading hehe

The actual size of the pop-up can be found in

smallworld.js line 152 - 168
// Function to make Div with id page into ui dialog
    
xoops_smallworld(document).ready(function(){
        if (
xoops_smallworld('div#page').length) { // implies *not* zero
            
xoops_smallworld('div#page').show();
            
xoops_smallworld.fn.colorbox({
                
innerWidth:"1000px",
                
inline:true
                
onCleanup:function() {
                    
xoops_smallworld('div#page').hide();
                },
                
onClosed:function() {
                    
location.href 'index.php'
                },
                
href:"div#page"
            
});
        };
    });


and css file css/galleriffic-5.css line 240 - 248
div#page {
    
width900px;
    
background-color#fff;
    
margin0 auto;
    
text-alignleft;
    
border-color#ddd;
    
border-stylenone solid solid;
    
border-widthmedium 1px 1px;
}


Try to change innerWidth:"1000px" to something else and then width in css file
Programming is like sex:
One mistake and you have to support it for the rest of your life.



53
culex
Re: Social Network module
  • 2012/5/13 16:25

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Thanks for helping out guys

Updated Trunk again here are the changes based on mails and this thread

Big error with public/private filtering... Leftover from my testing, good spotting Yuri

------------------------------
Changelog v.1.15 RC 7
------------------------------
13 May 2012 Revision 9464 9502

Bugfix: !!! Private updates showing in search results !! (thanks Yuri)
Bugfix: Private and Public messages not filtered correctly
BugfixRemoved redundant span from message ajax file
BugfixFiltering search results to include only friendly messages or public
BugfixMissing vars in jquery.ui.datepicker localization (cesag)
BugfixConverting CR to <brin comments updates (Cesag)
ChangeSet 1 (monday) as default starting day in jquery.ui.js
Changeenlarged innerWidth and height in edit_image desc js file
ChangeAdded updated french translations (Cesag)
ChangeFirst day of week fix from 0 to 1 (Cesag)


Download Smallworld 1.15 RC 7 here
Programming is like sex:
One mistake and you have to support it for the rest of your life.



54
culex
Re: Social Network module
  • 2012/5/9 16:19

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


New changes to trunk.

BugfixMail sending image without prefix in comments
Bugfixclosing correctly some spans
BugfixDisplay graphics with ajax avatar upload
BugfixReplace hardcoded english strings with langdefs
BugfixMissing lang definitions


Updated in svn
Programming is like sex:
One mistake and you have to support it for the rest of your life.



55
culex
Re: Social Network module
  • 2012/5/9 15:20

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Done Also I see a few spans are not closed correctly

Quote:

I remember having this as a test, but as I know this is no longer in the code.. At least I cannot find in the last few versions I have.

UPDATE: Sorry now I see it. I had a function to send admin every time a user uploaded new images, but I removed. This is when commenting to a post in wich thread you take place
Programming is like sex:
One mistake and you have to support it for the rest of your life.



56
culex
Re: Social Network module
  • 2012/5/8 22:34

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:

On the changelog, it says "Changelog V.1.11 RC 6", but it's "Changelog v.1.15 RC 6" isn't it? Sorry,


Quite right... I guess I'm old fachioned I'll change in svn hehe
Programming is like sex:
One mistake and you have to support it for the rest of your life.



57
culex
Re: Social Network module
  • 2012/5/8 17:12

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Thanks for helping out guys

I have updated trunk with bugfixes proposed in this forum + a few I found myself.

UPDATE versioning correct to 1.15 RC 5

------------------------------
Changelog v.1.15 RC 6
------------------------------
8 May 2012 Revision 9398 9463

- NEW added russian language (Thanks Yura)
- NEW 
added French language (Thanks Cesag)
BugfixReplaced hardcoded langdefines (thanks Cesag)
BugfixFixed image popups opening correct image (thanks Flipse)
Bugfixremoved expired bookmarks from jquery.bookmark.js (cesag)
BugfixTypos Missing defines (Thanks Cesag)
BugfixAdded a complete event handler to register.php disable input submit in case of error
BugfixSubmit register and edit profile is not Json
BugfixSome html malformed functions
BugfixCorrected image styling (Thx Yuri)
Bugfixremoved extra divs closing correctly span (thx Yuri)
BugfixChecking for null values in jquery.oembed.js
BugfixBreaking jquery without adding jquery.coundown.js to core.php
BugfixCorrecting how smallworld_getAvatarLink handles non-image values
BugfixMore utf-8 special entities not displayed correct
BugfixProblems with wrong username in image uploads->wall Updates
BugfixFix for deprecated >xoops_setCaching($value) (mamba)
Bugfixerror in count in admin/index.php


Download smallworld RC 6 here
Programming is like sex:
One mistake and you have to support it for the rest of your life.



58
culex
Re: Social Network module
  • 2012/5/1 11:41

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


Quote:

What is "inspection time" for?

Inspection time is for admin to temporarely disable viewing a users profile. Gives a little time to remove text, images what ever and still keep the profile/settings in the server. Another option for admin is to delete user

Quote:

- google reader (obsolete)
- mixx.com (redirect to chime.in)
- netvibes
- tumblr (certificate)
- windows live (This item might not exist or is no longer available)

Cool I'll be sure to delete these next round of mods

Quote:

I tried the module on your demo site, looks very good Culex! Only problem I get is with picture popups, sometimes they popup right but on occasions the popup is empty. This seems to happen randomly...

I dont have this. I'll check to see if this occurs though. Did however notice a small bug with the text telling "??? just uploaded new images" this gives the name of "You user" and not the uploading user

Quote:

Do you have plans to add custom made fields in profile admin? For instance when using smallworld on a company intranet it would be nice to be able to add the departments people work....

On the userside where choosing "other" in profile it would be nice to be able to fill in your own statement.


Not at the moment. You can however change the text names in language files. For instance replace the translation for "Other" -> "Superman"
Programming is like sex:
One mistake and you have to support it for the rest of your life.



59
culex
Re: Social Network module
  • 2012/4/30 0:06

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


I have added some bugfixes, changes and even new features to smallworld trunk.

See docs/language_diff.txt for changes in language files

Changelog is:

------------------------------
Changelog v.1.11 RC 5
------------------------------
29 April 2012
- Bugfix: Changed maxWidth in Oembeds
- Bugfix: Removed unessasary jquery endings in Js files
- Bugfix: Cut down on core added scripts, replaced insted on page specific includes
- Bugfix: Corrected action on no-user acces to redirect to login page
- Bugfix: Updated jquery.oembed.js to new version
- Bugfix: Avatars with uppercase/lowercase extension giving error. Now checking both.
- Bugfix: Prefixed oembed.css and added new styles
- Bugfix: Added missing js includes.
- NEW : Shorten text function to use in recent messages
- NEW : Decode mixed char text. Russian+Danish+English charsets now renders correctly in updates
- NEW : Added user recent activities to user profiles
- NEW : Added search functionallity
- Change: Corrected and added language defines (see lang_diff.txt)

Download here

Demo here. You have to sign up though
Programming is like sex:
One mistake and you have to support it for the rest of your life.



60
culex
Re: Installing popnupblog errors
  • 2012/3/19 18:27

  • culex

  • Module Developer

  • Posts: 711

  • Since: 2004/9/23


In line 98 of mysql.sql change

create_date timestamp(14NOT NULL ,


With
create_date timestamp NOT NULL ,


The module have some more issues though.. I'll see if I cant find some time to go through it
Programming is like sex:
One mistake and you have to support it for the rest of your life.




TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 49 »



Login

Who's Online

131 user(s) are online (89 user(s) are browsing Support Forums)


Members: 0


Guests: 131


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits