gift apps from the repo


milkshake

Advanced Member
Joined
May 18, 2009
Messages
3,748
Age
39
Location
Rotherham, UK
Ok guys just to let you know you can now "gift" apps to other repo users.


enjoy!


if anyone has any issues with this let me know and ill try to fix it, but I did lots of testing today and it should work a treat.
 
sDrFm.jpg



Windows, Firefox 15


(EDIT: To clarify, the buttons could use some more space around the text and they also lack the rounded borders, which I guess is not intended)


Thanks for the feature though, it's appreciated :)
 
Last edited by a moderator:
Whoop for new features :


Looks like the graphical flaws above have been fixed too :) (at least for me)


@Damummy, its not black and shiny, so won't infringe the patent until the lawers get us in their sights.
 
Last edited by a moderator:
I don't get the rounded edges either!?


Edit: Running Firefox 14 on Windows 7


Edit 2:



Code:
[21:09:13.519] Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:253

[21:09:13.519] Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:265

[21:09:13.519] Unknown property '-moz-border-radius'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:405

[21:09:13.520] Unknown property '-moz-border-radius-topleft'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:446

[21:09:13.520] Unknown property '-moz-border-radius-topright'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:446

[21:09:13.520] Error in parsing value for 'max-width'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style.css:460

[21:09:13.814] Error in parsing value for 'filter'.  Declaration dropped. @ http://repo.openpandora.org/includes/jquery.fancybox-1.3.4.css:327

[21:09:13.814] Unknown property 'zoom'.  Declaration dropped. @ http://repo.openpandora.org/includes/jquery.fancybox-1.3.4.css:332

[21:09:13.814] Error in parsing value for 'height'.  Declaration dropped. @ http://repo.openpandora.org/includes/jquery.fancybox-1.3.4.css:338

[21:09:13.814] Error in parsing value for 'top'.  Declaration dropped. @ http://repo.openpandora.org/includes/jquery.fancybox-1.3.4.css:343

[21:09:13.859] Unknown property '-moz-border-radius-bottomleft'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:45

[21:09:13.859] Unknown property '-moz-border-radius-bottomright'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:45

[21:09:13.860] Expected end of value but found '1px'.  Error in parsing value for 'border'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:60

[21:09:13.860] Unknown property '-moz-border-radius'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:126

[21:09:13.861] Unknown property 'line-size'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:413

[21:09:13.861] Unknown property '-moz-border-radius-topleft'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:445

[21:09:13.861] Unknown property '-moz-border-radius-topright'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:445

[21:09:13.861] Error in parsing value for 'max-width'.  Declaration dropped. @ http://repo.openpandora.org/includes/ajax/style_ie6.css:459
 
Last edited by a moderator:
hmmmm strange, if you dont mind could you do some firebug investigation as I cannot replicate this issue
 
Urm, I'm afraid not, it wouldn't let me install Firebug, and when I restarted, Firefox updated, and the curved edges are now present. Sorry
 
These selectors from style.css:



Code:
.app_detail .app_options #buy {font-size:20px; -moz-border-radius:5px; border-radius:5px; padding:0px 15px 0px 8px;}

.app_detail .app_options #gift {font-size:20px; -moz-border-radius:5px; border-radius:5px; padding:0px 15px 0px 8px;}

...are not in style_ie6.css, and at the same time the conditional comments are not like:



Code:
<!--[if IE 6]>

INSTRUCTIONS

<![endif]-->

See also: http://de.wikipedia.org/wiki/Conditional_Comments


--


Moreover:

[...] -moz-border-radius was supported as an alias until Gecko 12.0.
Source: https://developer.mozilla.org/en-US/docs/CSS/border-radius
 
Last edited by a moderator:
These selectors from style.css:



Code:
.app_detail .app_options #buy {font-size:20px; -moz-border-radius:5px; border-radius:5px; padding:0px 15px 0px 8px;}

.app_detail .app_options #gift {font-size:20px; -moz-border-radius:5px; border-radius:5px; padding:0px 15px 0px 8px;}

...are not in style_ie6.css, and at the same time the conditional comments are not like:



Code:
<!--[if IE 6]>

INSTRUCTIONS

<![endif]-->

See also: http://de.wikipedia....tional_Comments


Moreover:

[...] -moz-border-radius was supported as an alias until Gecko 12.0.
Source: https://developer.mo...S/border-radius

I fixed the selectors in style_ie6.css and the conditional statements but those shouldn't have effected people using firefox 14 or 15 as they support border-radius the old -moz-border-radius is purely for backwards compatibility
 
Last edited by a moderator:
I fixed the selectors in style_ie6.css and the conditional statements but those shouldn't have effected people using firefox 14 or 15 as they support border-radius the old -moz-border-radius is purely for backwards compatibility
The deprecation of the -moz- prefix in border-image serves as an explanation for the existence of the directly relevant items from the list of error messages that was mentioned above.


Yes, style_ie6.css was never commented out in browsers other than Internet Explorer 6 because the conditional comment was not quite right. I haven't looked at the problem more thoroughly, but the rest sounds like it may be a a result of a combination of bad things, or possibly some weird race condition. Since you've already incorporated the changes into the online version of the repository, the best thing to do now is now probably to wait for feedback, since it appears likely that this may turn out to reveal other problems.


Also, please do not edit quoted text without indicating it. No matter how small the change may seem and how well-meant it may be, it only obfuscates the truth.
 
Last edited by a moderator:
hmmmm strange, if you dont mind could you do some firebug investigation as I cannot replicate this issue
I'm still on Firefox 14 (Win32) and see this behaviour too, what is it you need exactly see investigated ?


Edit: Correction: It's Firefox 13 and now the shapes have round edges
 
Last edited by a moderator:
Can the author of paid applications use this feature to give free copies away to specified users? If so, then that is great, as it is exactly the feature I wished for. It means we can give away copies of our software for special reasons, or use them easily for competition prizes and so on.


Steve
 
Last edited by a moderator:
Back
Top