diff --git a/services/web/README.md b/services/web/README.md new file mode 100644 index 0000000000..022086b420 --- /dev/null +++ b/services/web/README.md @@ -0,0 +1,30 @@ +web-sharelatex +============== + +web-sharelatex is the front-end web service of the open-source web-based collaborative LaTeX editor, +ShareLaTeX. It serves all the HTML pages, CSS and javascript to the client. web-sharelatex also contains +a lot of logic around creating and editing projects, and account management. + +The rest of the ShareLaTeX stack, along with information about contributing can be found in the +[sharelatex/sharelatex](https://github.com/sharelatex/sharelatex) repository. + +License and Credits +------------------- + +### Code + +All code is currently proprietary but will soon be licensed under a copyleft license. + +#### Silk icon set 1.3 + +We gratefully acknowledge [Mark James](http://www.famfamfam.com/lab/icons/silk/) for +releasing his Silk icon set under the Creative Commons Attribution 2.5 license. Some +of these icons are used within ShareLaTeX inside the `public/img/silk` directory + +### IconShock icons + +We gratefully acknowledge [IconShock](http://www.iconshock.com) for use of the icons +in the `public/img/iconshock` directory found via +[findicons.com](http://findicons.com/icon/498089/height?id=526085#) + + diff --git a/services/web/app/views/templates.jade b/services/web/app/views/templates.jade index 526dee8e97..480b7ee8f6 100644 --- a/services/web/app/views/templates.jade +++ b/services/web/app/views/templates.jade @@ -208,13 +208,13 @@ .pdfjs-list-view .btn-group button.btn.btn-info.js-fit-height - img(src="/img/fit-to-height.png") + img(src="/img/iconshock/fit-to-height.png") button.btn.btn-info.js-fit-width - img(src="/img/fit-to-width.png") + img(src="/img/iconshock/fit-to-width.png") button.btn.btn-info.js-zoom-out - img(src="/img/zoom-out.png") + img(src="/img/iconshock/zoom-out.png") button.btn.btn-info.js-zoom-in - img(src="/img/zoom-in.png") + img(src="/img/iconshock/zoom-in.png") .progress.progress-info .bar span Loading diff --git a/services/web/public/img/iconshock/README.txt b/services/web/public/img/iconshock/README.txt new file mode 100644 index 0000000000..b937189c83 --- /dev/null +++ b/services/web/public/img/iconshock/README.txt @@ -0,0 +1,3 @@ +Icons by IconShock (www.iconshock.com) for via findicons.com http://findicons.com/icon/498089/height?id=526085# + +Licensed under the Creative Commons Attribution (by) license \ No newline at end of file diff --git a/services/web/public/img/fit-to-height.png b/services/web/public/img/iconshock/fit-to-height.png similarity index 100% rename from services/web/public/img/fit-to-height.png rename to services/web/public/img/iconshock/fit-to-height.png diff --git a/services/web/public/img/fit-to-width.png b/services/web/public/img/iconshock/fit-to-width.png similarity index 100% rename from services/web/public/img/fit-to-width.png rename to services/web/public/img/iconshock/fit-to-width.png diff --git a/services/web/public/img/save.png b/services/web/public/img/iconshock/save.png similarity index 100% rename from services/web/public/img/save.png rename to services/web/public/img/iconshock/save.png diff --git a/services/web/public/img/zoom-in.png b/services/web/public/img/iconshock/zoom-in.png similarity index 100% rename from services/web/public/img/zoom-in.png rename to services/web/public/img/iconshock/zoom-in.png diff --git a/services/web/public/img/zoom-out.png b/services/web/public/img/iconshock/zoom-out.png similarity index 100% rename from services/web/public/img/zoom-out.png rename to services/web/public/img/iconshock/zoom-out.png