Loading...
 
Skip to main content

History: Icons SVG or Fonts

Source of version: 34

Copy to clipboard
            {DIV(float="right" width="40%" class="bg-danger")}{maketoc levels="2,3,4,5,6"}{DIV}

!! Resources
* [http://thomaspark.me/2013/11/glyphsearch-improving-the-search-for-icon-fonts/]
* [http://fortawesome.github.com/Font-Awesome/]
** added to trunk r51759, r51760
** PRO: Does work perfectly even on older iPhones!
* [http://24ways.org/2011/displaying-icons-with-fonts-and-data-attributes]
* [http://www.webhostinghub.com/glyphs/]
** PRO: Contains a Tiki logo icon !
** Is this licensing good? [http://www.webhostinghub.com/glyphs/#howToUse]
** CON: Doesn't work on older iPhone (iOS 3.1.3)
* [http://fontello.com/]
* [http://themify.me/themify-icons]
* [http://bootsnipp.com/buttons]
* Social Icons - http://drinchev.github.io/monosocialiconsfont/
* [http://css-tricks.com/icon-fonts-vs-svg/]
* [http://css-tricks.com/using-svg/]
* [http://css-tricks.com/svg-sprites-use-better-icon-fonts/]
* [http://ianfeather.co.uk/ten-reasons-we-switched-from-an-icon-font-to-svg]
* [http://www.flaticon.com/packs]
* [http://commons.m.wikimedia.org/wiki/Comparison_of_icon_sets]
* [http://webdesign.tutsplus.com/articles/manipulating-svg-icons-with-simple-css--webdesign-15694]
* [http://www.w3.org/TR/SVG/styling.html]
* [http://www.sitepoint.com/add-svg-to-web-page/]

* [http://dbushell.com/2013/02/04/a-primer-to-front-end-svg-hacking/]
* [http://thoughtfulweb.co.uk/thoughts/about/the-best-way-to-add-an-svg-image-to-your-website]
* [http://stackoverflow.com/questions/3820406/best-way-to-place-svg-content-within-html]
* [http://www.sitepoint.com/add-svg-to-web-page/]
* [http://stackoverflow.com/questions/2011289/how-to-use-svg-files-in-a-webpage]
* [https://developer.mozilla.org/en/docs/SVG_In_HTML_Introduction]
* [http://code.tutsplus.com/articles/why-arent-you-using-svg--net-25414]

* [http://www.webinsation.com/what-is-so-amazing-about-icon-fonts-and-svgs/]
** Read Rachel's comment
!!!Some SVG libraries
* [http://www.flaticon.com/packs|Flaticon]
** License seems to be CC by 3.0, which is not addressed at https://tiki.org/License, but reads to be pretty open (hopefully others know for sure)
* [http://iconmonstr.com|Iconmonstr]
** License at http://iconmonstr.com/license/ seems open but I am easily lost regarding licenses
* [http://www.freepik.com/free-icons|Freepik]
** Looks like most just need to be attributed to Freepik

!!Discussion

There are hundreds of icons in Tiki. Right now, jpeg/png/gif. The opportunity is to move them progressively to a vector format. This permits scaling, styling, saving bandwidth, etc.
There are 2 options: SVG vs fonts
It would be a shame to maintain both if there is one that could address the needs. It would be a shame to invest migration time in one of the solutions only to do the work in double later if a change is decided.

Feeling is that Tiki should pick the best future-thinking solution between SVG & fonts:

!!! Futureproof - SVG or FONT
svg -> No Unnecessary HTTP Requests

^{sign user="Torsten" datetime="2014-08-29T01:51:19+00:00"} 
I just started to look into the possibility to use  .SVG instead of FONT and so far I did find a bunch of discussion WHY to use SVG or not to use SVG instead of FONT when it goes to vector-icons. 
I have mainly heard about possible issues in respect of browser compatibility towards SVG, but I did NOT find ANY VG icon sets for possible integration (with a very limited! time on research).
At the bottom of the wiki page I added the licenses for the icon FONTs mentioned on the wiki page.
http://www.webhostinghub.com/glyphs  shows an example how to possibly achieve switchable "icon-sets", as they use the Bootstrap Glyphicon-Halfling names for their icons.
Finally the PNG fallback seems to be already sorted in Tiki for FONT thanks to our Bootstrap activists.  
For a convenient way of a PNG fallback for SVG I did not find further helpful information.

=> Conclusion=> In my mind, if no serious arguments will be brought up, the actual path to __FONT__ seems the best to do.
In the end, when reviewing the licenses, I see only __Fontawesome__ and __Glyphicon-Halflings__ so far (both already implemented) and optionally __Monosocialiconsfont__ as "add-on". 

Maybe somebody digs out additional resources and projects?^

!!! Semantic Icon Names
__Use semantic names for icon names__
Maybe based on names from here (removing "fa-" from the beginning): [http://fontawesome.io/cheatsheet]

!!! Overwriting Icons
__Make it possible for themes to override icons__
Questions looking for an answer:
* how can you easily change icon if you don't like what is shipped by Tiki? Can it be maintained simply by adding the image path to your preferred icon in the custom css file?
* {sign user="Torsten" datetime="2014-08-28T23:56:38+00:00"} Would it be possible, if that made any sense, to use something like "icon sets" to replace icons for a Tiki site globally? How much effort that would be?
+Example: http://www.webhostinghub.com/glyphs/bootstrap/ same name - different glyphs (license see below)

!!! Source - Guideline - License
__Pick some preferred icon source(s) so community has guidelines for consistency and make sure licensing is OK__

!!! Fallback
__Have a Smarty function (or something) so vectorial is chosen if supported by the browser, and use png as a fallback__
** The icon sources will surely have a png fallback available
** If no fallback is available give an error message "Please use a modern browser"

!! Tiki Related Notes
* some glyphicons come with bootstrap (http://getbootstrap.com/components/), but the variety is not enough, we need more icons 
* font-awesome seems to be a good addition both from variety and licensing point
* both glyphicons and font-awesome icons are managed now with smarty functions (lib/smarty_tiki/), so in the tpl files you only need to add the name of the icon, e.g.:

{CODE()}
{glyph name="plus"} or {fa name="automobile"}
{CODE}

* maybe rework the icon smarty function (lib/smarty_tiki/function.icon.php) to manage icons in one place (update merge it with function.glyph.php and function.fa.php)

* [http://stackoverflow.com/questions/12272372/how-to-style-icon-color-size-and-shadow-of-font-awesome-icons]
* [http://stackoverflow.com/questions/14474452/can-i-change-the-color-of-font-awesomes-icon-color]
* [http://fortawesome.github.io/Font-Awesome/examples/]
* [http://stackoverflow.com/questions/14984007/how-do-i-include-a-font-awesome-icon-in-my-svg}
* [http://stackoverflow.com/questions/18225954/use-fontawesome-icon-in-svg-without-external-files]

!! Licenses

* __Fontawesome__ [http://fortawesome.github.io/Font-Awesome/]
+ Font: __SIL OFL 1.1__ [http://scripts.sil.org/OFL]
+ Code (CSS/Less): __MIT__ [http://opensource.org/licenses/mit-license.html]
+ Documentation: CC-BY-3.0 [http://creativecommons.org/licenses/by/3.0/]

* __Glyphicons-Halflings__ [http://glyphicons.com/license/]
+ __Same Licence as Bootstrap (so must be MIT in BS 3.1+)__
+ but attribution to glyphicons.com appreciated

* __Glyphicons Free__ [http://glyphicons.com/license/]
+ __CC-BY-3.0__ [http://creativecommons.org/licenses/by/3.0/] __attribution__ to glyphicons.com required
+ __Glyphicons All and Pro__ __proprietary__ license

* __WebHostingHub Glyphs__ [http://www.webhostinghub.com/glyphs/]
+ SIL Open Font License for download and using in personal and commercial projects. 
+ PNG icons are distributed under Creative Commons Attribution 3.0 License. 
+ Redistribution is __not authorized__. (just link to [http://www.webhostinghub.com/glyphs/] to let people know where they can download those awesome glyphs!) 

* __Themify.me__  [http://themify.me/themify-icons]
+ Mentioned on the website: 100% FREE! You may use or distribute it for any purpose, whether personal or commercial. 
+ no explicit license mentioned!

* __Monosocialiconsfont__ [http://drinchev.github.io/monosocialiconsfont/]
+ __Open Font License__
+ It's free for whatever use ( commercial or personal ) both for web or for printing purpose. 

* __Icomoon__ [https://icomoon.io/#icons-icomoon]
+ __Free__ (450+ icons) __GPL / CC BY 3.0__
+ __Essential__ (900) and __Ultimate__ (1266) "developer friendly" __proprietary__ license

* __Iconic__ [https://useiconic.com/license/]
+ __no redistribution__ even not in Open Source projects - only for free enduser usage.

-=alias=-
* (alias(Icon fonts))
        

History

Advanced
Information Version
Mon 04 of Feb, 2019 21:28 GMT-0000 luciash d' being ?‍♂️ remove redundant maketoc when the page already has auto-toc 38
Mon 13 of Jun, 2016 04:46 GMT-0000 Gary Cunningham-Lee URL corrected to fix 404 error. 37
Sun 22 of Mar, 2015 19:30 GMT-0000 Marc Laporte 36
Wed 10 of Sep, 2014 18:28 GMT-0000 Torsten Fabricius added !!Related link to dev/Icons 35
Mon 01 of Sep, 2014 10:54 GMT-0000 luciash d' being ?‍♂️ 34
Sat 30 of Aug, 2014 18:27 GMT-0000 lindon 33
Fri 29 of Aug, 2014 03:18 GMT-0000 Gary Cunningham-Lee Replaced hardcoded color with a Bootstrap class. If class's color isn't good, let's change it in the theme option stylesheet. 32
Fri 29 of Aug, 2014 03:06 GMT-0000 Gary Cunningham-Lee Fixed typos. 31
Fri 29 of Aug, 2014 02:28 GMT-0000 Torsten Fabricius now 40% is enough 30
Fri 29 of Aug, 2014 02:27 GMT-0000 Torsten Fabricius Reviewed the headings 29
Fri 29 of Aug, 2014 02:21 GMT-0000 Torsten Fabricius added bg to div and moved levels param from wrong in div to right in maketoc 28
Fri 29 of Aug, 2014 02:19 GMT-0000 Torsten Fabricius typos mainly ;-) 27
Fri 29 of Aug, 2014 02:17 GMT-0000 Torsten Fabricius changed to 50% and limit to level 2 to gain space on the page (heading starts with !! anyway) 26
Fri 29 of Aug, 2014 02:16 GMT-0000 Torsten Fabricius lit width of maketoc div to 40% 25
Fri 29 of Aug, 2014 02:15 GMT-0000 Torsten Fabricius added brackets to links and added maketoc in a right floating div 24
Fri 29 of Aug, 2014 02:08 GMT-0000 Torsten Fabricius changed text SVG/FONT personal opinion in discussion to make it complying with the txt of the e-mail sent to the devlist a minute ago. 23
Fri 29 of Aug, 2014 01:51 GMT-0000 Torsten Fabricius after some review of resourced mentioned here, I added a few cents to the discussion (in a box) 22
Thu 28 of Aug, 2014 23:56 GMT-0000 Torsten Fabricius Added question to "icon sets" to "!!!! Make it possible for themes to override icons" 21
Fri 01 of Aug, 2014 01:04 GMT-0000 Marc Laporte Oups 20
Wed 30 of Jul, 2014 21:11 GMT-0000 Marc Laporte Old name 19
Wed 30 of Jul, 2014 15:09 GMT-0000 Marc Laporte Thank you Simon Guibord (labalab) for suggesting this one 18
Tue 08 of Jul, 2014 23:26 GMT-0000 gezza 17
Tue 08 of Jul, 2014 23:16 GMT-0000 gezza 16
Wed 02 of Jul, 2014 15:11 GMT-0000 gezza 15
Wed 02 of Jul, 2014 14:59 GMT-0000 gezza 14
Mon 30 of Jun, 2014 18:59 GMT-0000 gezza adding thoughts to the page 13
Sat 28 of Jun, 2014 09:14 GMT-0000 gezza some notes 12
Sat 24 of May, 2014 13:28 GMT-0000 Marc Laporte 11
Sat 24 of May, 2014 13:21 GMT-0000 Marc Laporte Source for SVG icons 10
Sat 24 of May, 2014 12:58 GMT-0000 Marc Laporte 9
Sat 24 of May, 2014 12:42 GMT-0000 Marc Laporte 8
Fri 09 of May, 2014 14:47 GMT-0000 luciash d' being ?‍♂️ 7
Thu 01 of May, 2014 03:13 GMT-0000 Marc Laporte 6
Thu 01 of May, 2014 01:04 GMT-0000 Marc Laporte Thanks Mike! 5
Fri 21 of Mar, 2014 03:41 GMT-0000 Marc Laporte 4
Thu 11 of Apr, 2013 01:43 GMT-0000 Marc Laporte 3
Sat 23 of Mar, 2013 14:10 GMT-0000 Marc Laporte 2
Tue 16 of Oct, 2012 22:28 GMT-0000 Marc Laporte 1