/usr/share/mediatomb/web/js/icons.js is in mediatomb-common 0.12.1-47-g7ab7616-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | /*MT*
MediaTomb - http://www.mediatomb.cc/
icons.js - this file is part of MediaTomb.
Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
Copyright (C) 2006-2010 Gena Batyan <bgeradz@mediatomb.cc>,
Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
Leonhard Wimmer <leo@mediatomb.cc>
MediaTomb is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
MediaTomb is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
version 2 along with MediaTomb; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
$Id$
*/
/* icons for items.js */
var iconPath = 'icons/';
var iconNewItem = {src: iconPath + 'document-new.png', width: 30, height: 20};
var iconAdd = {src: iconPath + 'stock-add.png', width: 30, height: 20};
var iconEdit = {src: iconPath + 'stock_edit.png', width: 30, height: 20};
var iconRemoveThis = {src: iconPath + 'remove_this.png', width: 30, height: 20};
var iconRemoveAll = {src: iconPath + 'remove_all.png', width: 30, height: 20};
var iconAddAutoscan = {src: iconPath + 'add_as_autoscan.png', width: 30, height: 20};
//var iconRemoveAutoscan = {src: iconPath + 'remove_autoscan.png', width: 30, height: 20};
var iconEditAutoscan = {src: iconPath + 'add_as_autoscan.png', width: 30, height: 20};
var iconFirst = {src: iconPath + 'go-first.png', width: 32, height: 20};
var iconPrevious = {src: iconPath + 'go-previous.png', width: 32, height: 20};
var iconNext = {src: iconPath + 'go-next.png', width: 32, height: 20};
var iconLast = {src: iconPath + 'go-last.png', width: 32, height: 20};
var iconArrowReplacement = {src: iconPath + 'blank.png', width: 32, height: 20};
var iconContainer = {src: iconPath + 'folder_open.png', width: 24, height: 29};
var iconContainerAutoscanTimed = {src: iconPath + 'autoscan_timed_folder_open.png', width: 24, height: 29};
var iconContainerAutoscanTimedConfig = {src: iconPath + 'autoscan_timed_config_folder_open.png', width: 24, height: 29};
var iconContainerAutoscanInotify = {src: iconPath + 'autoscan_inotify_folder_open.png', width: 24, height: 29};
var iconContainerAutoscanInotifyConfig = {src: iconPath + 'autoscan_inotify_config_folder_open.png', width: 24, height: 29};
// ---
/* icons for tree.js */
var treeImagePath = 'icons/nanotree/images/';
var iconTreeClosed = treeImagePath + 'folder_closed.png';
var iconTreeOpen = treeImagePath + 'folder_open.png';
var iconTreeAutoscanTimedClosed = treeImagePath + 'autoscan_timed_folder_closed.png';
var iconTreeAutoscanTimedOpen = treeImagePath + 'autoscan_timed_folder_open.png';
var iconTreeAutoscanTimedConfigClosed = treeImagePath + 'autoscan_timed_config_folder_closed.png';
var iconTreeAutoscanTimedConfigOpen = treeImagePath + 'autoscan_timed_config_folder_open.png';
var iconTreeAutoscanInotifyOpen = treeImagePath + 'autoscan_inotify_folder_open.png';
var iconTreeAutoscanInotifyClosed = treeImagePath + 'autoscan_inotify_folder_closed.png';
var iconTreeAutoscanInotifyConfigOpen = treeImagePath + 'autoscan_inotify_config_folder_open.png';
var iconTreeAutoscanInotifyConfigClosed = treeImagePath + 'autoscan_inotify_config_folder_closed.png';
|