This file is indexed.

/usr/share/anyremote/cfg-data/Server-mode/iconUpload.cfg is in anyremote-data 6.3.2-1.

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
%
% anyremote configuration file for icon uploading
%

% STATUS stable
% XTEST no
% SOUND no
% ENV no
% FBROWSER v.3

GuiAppName=IconUploader
GuiAppIcon=redo.png
GuiAppType=Custom
GuiAppBinary=true
GuiAppProtocols=Server
GuiAppDesc=Allows to upload additional icons to the Java Client 

[Protocol]=Server

(Init)=\
	Include($(CfgDir)/Utils/aliases-server.cfg);\
	Include($(CfgDir)/Utils/aliases-server-fbrowser-v3.cfg);\
	Macro(FBROWSER_INIT);

(Exit)=\
	Macro(FBROWSER_EXIT);

(Connect)=\
	Set(parameter,debug,on);\
	Set(icons,Icon upload,1,folder,2,default,3,default,4,fit,5,fit,6,fit,7,fit,8,default,9,fit,*,question,0,no,#,default);\
	Set(title,);\
	Set(status,);\
	Macro(MainMenu);

MainMenu  =Set(menu,replace,RemoveAll);
UpdateMenu=Set(menu,replace,Go To,Go Home,Upload);

Back($$)  =Set(list,close);
Back      =Set(text,close);
Convert   =ExecAndSet(image,icon,UF="$(fbrowser_dir)"/"$(Param)";D=`echo $(Param)|cut -f 1 -d '.'`;echo "$D,$UF");
Go To($$)  =Macro(FBROWSER_GO_TO);
Go Home($$)=Macro(FBROWSER_GO_HOME);
%Push($$) use from aliases-server-fbrowser-v3.cfg

Upload($$)=\
	Set(popup,show,Please wait);\
	Set(list,close);\
	Macro(Convert);\
	ExecAndSet(icons, sleep 2;D=`echo $(Param)|cut -f 1 -d '.'`;echo "UPLOAD,5,$D");\
	Set(popup,hide);\
	Macro(MainMenu);
	
RemoveAll =Set(image,remove,icons);

Cancel=Make(exit);

1=Macro(FBROWSER_FILL_LIST);Macro(UpdateMenu);
4=Set(parameter,icon_size,16);
5=Set(parameter,icon_size,32);
6=Set(parameter,icon_size,48);
7=Set(parameter,icon_size,64)
9=Set(parameter,icon_size,128);

0=Make(exit);
* *=Set(text,replace,Help, Upload icons. Select an icon and then choose Upload menu item.\nFor J2ME client icons must be \n16x16,32x32, 48x48, 64x64 or 128x128 PNG.\nPress 4 to see 16x16 icons\nPress 5 to see 32x32 icons\nPress 6 to see 48x48 icons\nPress 7 to see 64x64 icons\nPress 8 to see 128x128 icons);


[End]