-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[4.0] Remove article print and email #24025
Conversation
The option to email a link to a friend and to print an article were outdated when joomla 1.0 was launched - there are far better ways to share content etc. This pr removes the show print and email icons options and code to display the icons. (It does not remove the helpers as they haven't been deprecated) If I understand everything correctly nothing would need to be done to update upgrading sites databases as the stored param would simply be ignored Resurrection of PR#19393
oops - thought I did that - guess i forgot Co-Authored-By: brianteeman <brian@teeman.net>
thanks @Quy
Co-Authored-By: brianteeman <brian@teeman.net>
Hi, what about keeping .ini as is? This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/24025. |
It is not the role of Joomla to translate every possible word or sentence. |
Hi, show_icons and the others 2 still in installation/sql/{mysql|postgres}/sample_testing.sql files This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/24025. |
@ladyjer Yes I know - that file is so out of date and not distributed with Joomla that at this time its hardly worth fixing. |
I have tested this item ✅ successfully on a1d44e0 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/24025. |
I have tested this item ✅ successfully on a1d44e0 I love this change. It is one of the things that I disable first time whenever I set up a new site. This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/24025. |
RTC This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/24025. |
@zero-24 please advise on the rips issue |
updated branch to see if it passes rips |
Sorry missed your mention. :( But it seams rips passes now. |
Can you solve the conflicts? |
I can but only if it is going to be merged. Otherwise its a waste of my time |
Although I agree with this PR, I will leave the decision to remove this feature to @wilsonge as release lead. |
Pinging @wilsonge |
Took a look around other websites and all their email options were simply mailto:// links. so i'm happy to remove both (print is clearly outdated in favour of print stylesheets) |
I have clearly demonstrated in #19393 that if it indeed can be done with stylesheets when a unique article is displayed, it is just impossible to get anything usable when the article is displayed in a blog. Whatever... |
# Conflicts: # installation/sql/mysql/joomla.sql # installation/sql/postgresql/joomla.sql # layouts/joomla/content/icons/email.php # layouts/joomla/content/icons/print_popup.php # layouts/joomla/content/icons/print_screen.php
Hopefully all merge conflicts have now been resolved correctly |
I really dont want to have to resolve merge conflicts again :( |
Thank you |
Thanks |
Thank you from me to both @brianteeman and @roland-d |
It seems that I removed one instance of this code for a print button but missed another one under a different condition. This code can not do anything because of joomla#24025 and I should have removed it then. This PR fixes my error
with joomla#24025 we removed the mail a link to a friend functionality. But I didnt remove the com_mailto component. Afaict this component was only used for the mail to friend functionality so I have now removed all traces of the component (I hope)
with joomla#24025 we removed the mail a link to a friend functionality. But I didnt remove the com_mailto component. Afaict this component was only used for the mail to friend functionality so I have now removed all traces of the component (I hope)
with joomla#24025 we removed the mail a link to a friend functionality. But I didnt remove the com_mailto component. Afaict this component was only used for the mail to friend functionality so I have now removed all traces of the component (I hope)
Now when we want to print an article, we have to select and print selected... would be good to have a print feature. |
The option to email a link to a friend and to print an article were outdated when joomla 1.0 was launched - there are far better ways to share content etc.
This pr removes the show print and email icons options and code to display the icons. (It does not remove the helpers as they haven't been deprecated)
If I understand everything correctly nothing would need to be done to update upgrading sites databases as the stored param would simply be ignored
Resurrection of PR#19393