View | Details | Raw Unified | Return to bug 274813 | Differences between
and this patch

Collapse All | Expand All

(-)b/GIDs (-1 / +1 lines)
Lines 286-292 openfire:*:342: Link Here
286
gunicorn:*:343:
286
gunicorn:*:343:
287
snmpd:*:344:
287
snmpd:*:344:
288
_metronome:*:345:
288
_metronome:*:345:
289
# free: 346
289
elog:*:346:
290
eturnal:*:347:
290
eturnal:*:347:
291
# free: 348
291
# free: 348
292
# free: 349
292
# free: 349
(-)b/UIDs (-1 / +1 lines)
Lines 291-297 openfire:*:342:342::0:0:Openfire IM Daemon:/nonexistent:/usr/sbin/nologin Link Here
291
gunicorn:*:343:343::0:0:Gunicorn Daemon:/nonexistent:/usr/sbin/nologin
291
gunicorn:*:343:343::0:0:Gunicorn Daemon:/nonexistent:/usr/sbin/nologin
292
snmpd:*:344:344::0:0:Net-SNMP Daemon:/nonexistent:/usr/sbin/nologin
292
snmpd:*:344:344::0:0:Net-SNMP Daemon:/nonexistent:/usr/sbin/nologin
293
_metronome:*:345:345::0:0:Metronome Daemon:/nonexistent:/usr/sbin/nologin
293
_metronome:*:345:345::0:0:Metronome Daemon:/nonexistent:/usr/sbin/nologin
294
# free: 346
294
elog:*:346:346::0:0:Elog server:/nonexistent:/usr/sbin/nologin
295
eturnal:*:347:347::0:0:eturnal User:/var/spool/eturnal:/bin/sh
295
eturnal:*:347:347::0:0:eturnal User:/var/spool/eturnal:/bin/sh
296
# free: 348
296
# free: 348
297
# free: 349
297
# free: 349
(-)b/www/elog/Makefile (+38 lines)
Added Link Here
1
PORTNAME=	elog
2
DISTVERSION=	3.1.5-1
3
CATEGORIES=	www
4
MASTER_SITES=	https://elog.psi.ch/elog/download/tar/
5
6
MAINTAINER=	erik@tenku.dk
7
COMMENT=	Fast and lightweight, customizable weblog
8
WWW=		https://elog.psi.ch/elog/
9
10
LICENSE=	GPLv2
11
LICENSE_FILE=	${WRKSRC}/COPYING
12
13
USES=		gmake ssl
14
15
USE_RC_SUBR=	elogd
16
17
USERS=	elog
18
GROUPS=	elog
19
20
OPTIONS_DEFINE=	DOCS
21
22
do-install:
23
	${INSTALL_PROGRAM} ${WRKSRC}/elconv ${STAGEDIR}${PREFIX}/libexec/elconv
24
	${INSTALL_PROGRAM} ${WRKSRC}/elog ${STAGEDIR}${PREFIX}/libexec/elog
25
	${INSTALL_MAN} ${WRKSRC}/man/elconv.1 ${STAGEDIR}${PREFIX}/share/man/man1/elconv.1
26
	${INSTALL_MAN} ${WRKSRC}/man/elog.1 ${STAGEDIR}${PREFIX}/share/man/man1/elog.1
27
	${INSTALL_MAN} ${WRKSRC}/man/elogd.8 ${STAGEDIR}${PREFIX}/share/man/man8/elogd.8
28
	${INSTALL_PROGRAM} ${WRKSRC}/elogd ${STAGEDIR}${PREFIX}/sbin
29
	cd ${WRKSRC} && \
30
		${COPYTREE_SHARE} "logbooks resources scripts themes" ${STAGEDIR}${WWWDIR}
31
	${INSTALL_DATA} ${WRKSRC}/elogd.cfg.example ${STAGEDIR}${PREFIX}/etc/elogd.cfg.sample
32
	${MKDIR} ${STAGEDIR}${WWWDIR}/ssl
33
34
do-install-DOCS-on:
35
	cd ${WRKSRC} && \
36
		${COPYTREE_SHARE} "doc" ${STAGEDIR}${DOCSDIR}
37
38
.include <bsd.port.mk>
(-)b/www/elog/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1698665645
2
SHA256 (elog-3.1.5-1.tar.gz) = 165fdeec01819c06a1fe14cd1741e9ab284a961053df9ba9f8680f8f7f9e299f
3
SIZE (elog-3.1.5-1.tar.gz) = 2963617
(-)b/www/elog/files/elogd.in (+50 lines)
Added Link Here
1
#!/bin/sh
2
3
# PROVIDE: elogd
4
# REQUIRE: LOGIN
5
# KEYWORD: shutdown
6
#
7
# Add these lines to /etc/rc.conf.local or /etc/rc.conf to enable this service:
8
#
9
# elogd_enable (bool): Set it to "YES" to enable elogd. Default: NO
10
# elogd_config (str):	Path to elogd configuration file. Default: %%PREFIX%%/etc/elogd.cfg
11
# elogd_user (str):	Elog daemon user. Default: elog
12
# elogd_group (str):	Elog group. Default: elog
13
# elogd_resource_dir (str):	Path to directory containing resource directory. Default: %%WWWDIR%%
14
# elogd_logbook_dir (str):	Path to directory containing logbooks. Default: %%WWWDIR%%/logbooks
15
16
. /etc/rc.subr
17
18
name=elogd
19
desc="Electronic Logbook Daemon"
20
rcvar=elogd_enable
21
22
start_precmd="elogd_checkssl"
23
24
load_rc_config $name
25
26
: ${elogd_enable:="NO"}
27
: ${elogd_config="%%PREFIX%%/etc/elogd.cfg"}
28
: ${elogd_user="elog"}
29
: ${elogd_group="elog"}
30
: ${elogd_resource_dir="%%WWWDIR%%"}
31
: ${elogd_logbook_dir="%%WWWDIR%%/logbooks"}
32
33
elogd_ssl_dir="%%WWWDIR%%/ssl"
34
elogd_ssl_key="${elogd_ssl_dir}/server.key"
35
elogd_ssl_cert="${elogd_ssl_dir}/server.crt"
36
37
command=%%PREFIX%%/sbin/${name}
38
command_args="-D -c $elogd_config -s $elogd_resource_dir -d $elogd_logbook_dir"
39
40
elogd_checkssl() {
41
  if ! [ -e "${elogd_ssl_key}" ] || ! [ -e "${elogd_ssl_cert}" ] ; then
42
    echo "Server private key and certificate not present in ${elogd_ssl_dir} - creating..."
43
    openssl ecparam -genkey -noout -name secp384r1 -out ${elogd_ssl_key}
44
    openssl req -x509 -days 365 -subj "/C=DK/ST=Some-State/O=Bogus Inc./CN=localhost" \
45
      -nodes -key ${elogd_ssl_key} -out ${elogd_ssl_cert}
46
    chown elog:elog ${elogd_ssl_key} ${elogd_ssl_cert}
47
  fi
48
}
49
50
run_rc_command "$1"
(-)b/www/elog/files/patch-Makefile (+55 lines)
Added Link Here
1
--- Makefile.orig	2022-05-10 11:18:40 UTC
2
+++ Makefile
3
@@ -40,7 +40,6 @@ USE_PAM    = 0
4
 # Default compilation flags unless stated otherwise.
5
 CFLAGS += -O3 -funroll-loops -fomit-frame-pointer -W -Wall -Wno-deprecated-declarations -Wno-unused-result -Imxml
6
 
7
-CC = c++
8
 EXECS = elog elogd elconv
9
 OBJS = mxml.o crypt.o
10
 GIT_REVISION = src/git-revision.h
11
@@ -81,7 +80,6 @@ LIBS += -L/opt/local/lib
12
 endif
13
 
14
 ifeq ($(OSTYPE),FreeBSD)
15
-CC = gcc
16
 BINOWNER = root
17
 BINGROUP = wheel
18
 endif
19
@@ -134,28 +132,28 @@ $(GIT_REVISION): src/elogd.cxx src/elog.cxx
20
 	type git &> /dev/null; if [ $$? -eq 1 ]; then REV="unknown" ;else REV=`git log -n 1 --pretty=format:"%ad - %h"`; fi; echo \#define GIT_REVISION \"$$REV\" > $(GIT_REVISION)
21
 
22
 crypt.o: src/crypt.cxx
23
-	$(CC) $(CFLAGS) -w -c -o crypt.o src/crypt.cxx
24
+	$(CXX) $(CFLAGS) -w -c -o crypt.o src/crypt.cxx
25
 
26
 auth.o: src/auth.cxx
27
-	$(CC) $(CFLAGS) -w -c -o auth.o src/auth.cxx
28
+	$(CXX) $(CFLAGS) -w -c -o auth.o src/auth.cxx
29
 
30
 mxml.o: mxml/mxml.cxx mxml/mxml.h
31
-	$(CC) $(CFLAGS) -c -o mxml.o mxml/mxml.cxx
32
+	$(CXX) $(CFLAGS) -c -o mxml.o mxml/mxml.cxx
33
 
34
 strlcpy.o: mxml/strlcpy.cxx mxml/strlcpy.h
35
-	$(CC) $(CFLAGS) -c -o strlcpy.o mxml/strlcpy.cxx
36
+	$(CXX) $(CFLAGS) -c -o strlcpy.o mxml/strlcpy.cxx
37
 
38
 elogd: src/elogd.cxx auth.o $(OBJS) $(GIT_REVISION)
39
-	$(CC) $(CFLAGS) -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
40
+	$(CXX) $(CFLAGS) -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
41
 
42
 elog: src/elog.cxx $(OBJS) $(GIT_REVISION)
43
-	$(CC) $(CFLAGS) -o elog src/elog.cxx $(OBJS) $(LIBS)
44
+	$(CXX) $(CFLAGS) -o elog src/elog.cxx $(OBJS) $(LIBS)
45
 
46
 debug: src/elogd.cxx auth.o $(OBJS)
47
-	$(CC) -g $(CFLAGS) -O0 -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
48
+	$(CXX) -g $(CFLAGS) -O0 -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
49
 
50
 %: src/%.cxx
51
-	$(CC) $(CFLAGS) -o $@ $< $(LIBS)
52
+	$(CXX) $(CFLAGS) -o $@ $< $(LIBS)
53
 
54
 ifeq ($(OSTYPE),CYGWIN_NT-5.1)
55
 loc: locext.exe
(-)b/www/elog/pkg-descr (+5 lines)
Added Link Here
1
The Electronic Logbook (ELOG) provides a Web interface to manage notes.
2
Its general purpose is to make it easy for people to put and access
3
information online; in the form of short, time stamped text messages
4
with optional HTML markup for presentation, and optional file
5
attachments.
(-)b/www/elog/pkg-plist (+706 lines)
Added Link Here
1
@sample(elog,elog,664) etc/elogd.cfg.sample
2
libexec/elconv
3
libexec/elog
4
%%PORTDOCS%%%%DOCSDIR%%/doc/ChangeLog
5
%%PORTDOCS%%%%DOCSDIR%%/doc/adminguide.html
6
%%PORTDOCS%%%%DOCSDIR%%/doc/cell_style.png
7
%%PORTDOCS%%%%DOCSDIR%%/doc/config.html
8
%%PORTDOCS%%%%DOCSDIR%%/doc/contrib.html
9
%%PORTDOCS%%%%DOCSDIR%%/doc/download.html
10
%%PORTDOCS%%%%DOCSDIR%%/doc/elog.css
11
%%PORTDOCS%%%%DOCSDIR%%/doc/elog.gif
12
%%PORTDOCS%%%%DOCSDIR%%/doc/elog_thumb.gif
13
%%PORTDOCS%%%%DOCSDIR%%/doc/faq.html
14
%%PORTDOCS%%%%DOCSDIR%%/doc/hierarchy.gif
15
%%PORTDOCS%%%%DOCSDIR%%/doc/index.html
16
%%PORTDOCS%%%%DOCSDIR%%/doc/live_bookmarks.png
17
%%PORTDOCS%%%%DOCSDIR%%/doc/paypalcard.png
18
%%PORTDOCS%%%%DOCSDIR%%/doc/rss.png
19
%%PORTDOCS%%%%DOCSDIR%%/doc/strftime.txt
20
%%PORTDOCS%%%%DOCSDIR%%/doc/sync.gif
21
%%PORTDOCS%%%%DOCSDIR%%/doc/tabs.gif
22
%%PORTDOCS%%%%DOCSDIR%%/doc/theme1.jpg
23
%%PORTDOCS%%%%DOCSDIR%%/doc/theme2.jpg
24
%%PORTDOCS%%%%DOCSDIR%%/doc/thumbnail.png
25
%%PORTDOCS%%%%DOCSDIR%%/doc/userguide.html
26
%%PORTDOCS%%%%DOCSDIR%%/doc/wishlist.html
27
share/man/man1/elconv.1.gz
28
share/man/man1/elog.1.gz
29
share/man/man8/elogd.8.gz
30
sbin/elogd
31
@dir(elog,elog,775) %%WWWDIR%%/logbooks
32
@dir(elog,elog,775) %%WWWDIR%%/logbooks/demo
33
@dir(elog,elog,775) %%WWWDIR%%/logbooks/demo/2001
34
@(elog,elog,664) %%WWWDIR%%/logbooks/demo/2001/011108a.log
35
%%WWWDIR%%/resources/elcode_english.html
36
%%WWWDIR%%/resources/elcode_indonesia.html
37
%%WWWDIR%%/resources/elcode_zh_CN-GB2312.html
38
%%WWWDIR%%/resources/elcode_zh_CN-UTF8.html
39
%%WWWDIR%%/resources/elogd-zh_CN-GB2312.cfg
40
%%WWWDIR%%/resources/elogd-zh_CN-UTF8.cfg
41
%%WWWDIR%%/resources/eloghelp_brazilian.html
42
%%WWWDIR%%/resources/eloghelp_czech.html
43
%%WWWDIR%%/resources/eloghelp_danish.html
44
%%WWWDIR%%/resources/eloghelp_dutch.html
45
%%WWWDIR%%/resources/eloghelp_english.html
46
%%WWWDIR%%/resources/eloghelp_french.html
47
%%WWWDIR%%/resources/eloghelp_german.html
48
%%WWWDIR%%/resources/eloghelp_indonesia.html
49
%%WWWDIR%%/resources/eloghelp_italian.html
50
%%WWWDIR%%/resources/eloghelp_japanese.html
51
%%WWWDIR%%/resources/eloghelp_polish.html
52
%%WWWDIR%%/resources/eloghelp_slovak.html
53
%%WWWDIR%%/resources/eloghelp_spanish.html
54
%%WWWDIR%%/resources/eloghelp_swedish.html
55
%%WWWDIR%%/resources/eloghelp_turkish.html
56
%%WWWDIR%%/resources/eloghelp_zh_CN-GB2312.html
57
%%WWWDIR%%/resources/eloghelp_zh_CN-UTF8.html
58
%%WWWDIR%%/resources/eloglang.brazilian
59
%%WWWDIR%%/resources/eloglang.bulgarian
60
%%WWWDIR%%/resources/eloglang.czech
61
%%WWWDIR%%/resources/eloglang.danish
62
%%WWWDIR%%/resources/eloglang.dutch
63
%%WWWDIR%%/resources/eloglang.french
64
%%WWWDIR%%/resources/eloglang.german
65
%%WWWDIR%%/resources/eloglang.german_UTF8
66
%%WWWDIR%%/resources/eloglang.indonesia
67
%%WWWDIR%%/resources/eloglang.italian
68
%%WWWDIR%%/resources/eloglang.japanese
69
%%WWWDIR%%/resources/eloglang.polish
70
%%WWWDIR%%/resources/eloglang.ru_CP1251
71
%%WWWDIR%%/resources/eloglang.slovak
72
%%WWWDIR%%/resources/eloglang.spanish
73
%%WWWDIR%%/resources/eloglang.swedish
74
%%WWWDIR%%/resources/eloglang.turkish
75
%%WWWDIR%%/resources/eloglang.zh_CN-GB2312
76
%%WWWDIR%%/resources/eloglang.zh_CN-UTF8
77
%%WWWDIR%%/scripts/ckeditor-config.js
78
%%WWWDIR%%/scripts/ckeditor/CHANGES.md
79
%%WWWDIR%%/scripts/ckeditor/LICENSE.md
80
%%WWWDIR%%/scripts/ckeditor/README.md
81
%%WWWDIR%%/scripts/ckeditor/adapters/jquery.js
82
%%WWWDIR%%/scripts/ckeditor/build-config.js
83
%%WWWDIR%%/scripts/ckeditor/ckeditor.js
84
%%WWWDIR%%/scripts/ckeditor/config.js
85
%%WWWDIR%%/scripts/ckeditor/contents.css
86
%%WWWDIR%%/scripts/ckeditor/lang/af.js
87
%%WWWDIR%%/scripts/ckeditor/lang/ar.js
88
%%WWWDIR%%/scripts/ckeditor/lang/bg.js
89
%%WWWDIR%%/scripts/ckeditor/lang/bn.js
90
%%WWWDIR%%/scripts/ckeditor/lang/bs.js
91
%%WWWDIR%%/scripts/ckeditor/lang/ca.js
92
%%WWWDIR%%/scripts/ckeditor/lang/cs.js
93
%%WWWDIR%%/scripts/ckeditor/lang/cy.js
94
%%WWWDIR%%/scripts/ckeditor/lang/da.js
95
%%WWWDIR%%/scripts/ckeditor/lang/de.js
96
%%WWWDIR%%/scripts/ckeditor/lang/el.js
97
%%WWWDIR%%/scripts/ckeditor/lang/en-au.js
98
%%WWWDIR%%/scripts/ckeditor/lang/en-ca.js
99
%%WWWDIR%%/scripts/ckeditor/lang/en-gb.js
100
%%WWWDIR%%/scripts/ckeditor/lang/en.js
101
%%WWWDIR%%/scripts/ckeditor/lang/eo.js
102
%%WWWDIR%%/scripts/ckeditor/lang/es.js
103
%%WWWDIR%%/scripts/ckeditor/lang/et.js
104
%%WWWDIR%%/scripts/ckeditor/lang/eu.js
105
%%WWWDIR%%/scripts/ckeditor/lang/fa.js
106
%%WWWDIR%%/scripts/ckeditor/lang/fi.js
107
%%WWWDIR%%/scripts/ckeditor/lang/fo.js
108
%%WWWDIR%%/scripts/ckeditor/lang/fr-ca.js
109
%%WWWDIR%%/scripts/ckeditor/lang/fr.js
110
%%WWWDIR%%/scripts/ckeditor/lang/gl.js
111
%%WWWDIR%%/scripts/ckeditor/lang/gu.js
112
%%WWWDIR%%/scripts/ckeditor/lang/he.js
113
%%WWWDIR%%/scripts/ckeditor/lang/hi.js
114
%%WWWDIR%%/scripts/ckeditor/lang/hr.js
115
%%WWWDIR%%/scripts/ckeditor/lang/hu.js
116
%%WWWDIR%%/scripts/ckeditor/lang/id.js
117
%%WWWDIR%%/scripts/ckeditor/lang/is.js
118
%%WWWDIR%%/scripts/ckeditor/lang/it.js
119
%%WWWDIR%%/scripts/ckeditor/lang/ja.js
120
%%WWWDIR%%/scripts/ckeditor/lang/ka.js
121
%%WWWDIR%%/scripts/ckeditor/lang/km.js
122
%%WWWDIR%%/scripts/ckeditor/lang/ko.js
123
%%WWWDIR%%/scripts/ckeditor/lang/ku.js
124
%%WWWDIR%%/scripts/ckeditor/lang/lt.js
125
%%WWWDIR%%/scripts/ckeditor/lang/lv.js
126
%%WWWDIR%%/scripts/ckeditor/lang/mk.js
127
%%WWWDIR%%/scripts/ckeditor/lang/mn.js
128
%%WWWDIR%%/scripts/ckeditor/lang/ms.js
129
%%WWWDIR%%/scripts/ckeditor/lang/nb.js
130
%%WWWDIR%%/scripts/ckeditor/lang/nl.js
131
%%WWWDIR%%/scripts/ckeditor/lang/no.js
132
%%WWWDIR%%/scripts/ckeditor/lang/pl.js
133
%%WWWDIR%%/scripts/ckeditor/lang/pt-br.js
134
%%WWWDIR%%/scripts/ckeditor/lang/pt.js
135
%%WWWDIR%%/scripts/ckeditor/lang/ro.js
136
%%WWWDIR%%/scripts/ckeditor/lang/ru.js
137
%%WWWDIR%%/scripts/ckeditor/lang/si.js
138
%%WWWDIR%%/scripts/ckeditor/lang/sk.js
139
%%WWWDIR%%/scripts/ckeditor/lang/sl.js
140
%%WWWDIR%%/scripts/ckeditor/lang/sq.js
141
%%WWWDIR%%/scripts/ckeditor/lang/sr-latn.js
142
%%WWWDIR%%/scripts/ckeditor/lang/sr.js
143
%%WWWDIR%%/scripts/ckeditor/lang/sv.js
144
%%WWWDIR%%/scripts/ckeditor/lang/th.js
145
%%WWWDIR%%/scripts/ckeditor/lang/tr.js
146
%%WWWDIR%%/scripts/ckeditor/lang/tt.js
147
%%WWWDIR%%/scripts/ckeditor/lang/ug.js
148
%%WWWDIR%%/scripts/ckeditor/lang/uk.js
149
%%WWWDIR%%/scripts/ckeditor/lang/vi.js
150
%%WWWDIR%%/scripts/ckeditor/lang/zh-cn.js
151
%%WWWDIR%%/scripts/ckeditor/lang/zh.js
152
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
153
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
154
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
155
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
156
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
157
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
158
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
159
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
160
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
161
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
162
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
163
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
164
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
165
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
166
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
167
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
168
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
169
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
170
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js
171
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
172
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
173
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
174
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
175
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
176
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
177
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js
178
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js
179
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js
180
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js
181
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
182
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js
183
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js
184
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js
185
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
186
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js
187
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js
188
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js
189
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js
190
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js
191
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
192
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js
193
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
194
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
195
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js
196
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js
197
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js
198
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
199
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js
200
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js
201
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js
202
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js
203
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js
204
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js
205
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js
206
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js
207
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
208
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js
209
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js
210
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
211
%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js
212
%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/about.js
213
%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
214
%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png
215
%%WWWDIR%%/scripts/ckeditor/plugins/clipboard/dialogs/paste.js
216
%%WWWDIR%%/scripts/ckeditor/plugins/colordialog/dialogs/colordialog.js
217
%%WWWDIR%%/scripts/ckeditor/plugins/dialog/dialogDefinition.js
218
%%WWWDIR%%/scripts/ckeditor/plugins/div/dialogs/div.js
219
%%WWWDIR%%/scripts/ckeditor/plugins/dndfiles/plugin.js
220
%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/dialogs/eqneditor.js
221
%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/dialogs/lang/en.js
222
%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/icons/eqneditor.png
223
%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/lang/en.js
224
%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/plugin.js
225
%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/dialogs/fileupload.js
226
%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/icons/fileupload.png
227
%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/plugin.js
228
%%WWWDIR%%/scripts/ckeditor/plugins/find/dialogs/find.js
229
%%WWWDIR%%/scripts/ckeditor/plugins/flash/dialogs/flash.js
230
%%WWWDIR%%/scripts/ckeditor/plugins/flash/images/placeholder.png
231
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/button.js
232
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/checkbox.js
233
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/form.js
234
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/hiddenfield.js
235
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/radio.js
236
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/select.js
237
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/textarea.js
238
%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/textfield.js
239
%%WWWDIR%%/scripts/ckeditor/plugins/forms/images/hiddenfield.gif
240
%%WWWDIR%%/scripts/ckeditor/plugins/icons.png
241
%%WWWDIR%%/scripts/ckeditor/plugins/icons_hidpi.png
242
%%WWWDIR%%/scripts/ckeditor/plugins/iframe/dialogs/iframe.js
243
%%WWWDIR%%/scripts/ckeditor/plugins/iframe/images/placeholder.png
244
%%WWWDIR%%/scripts/ckeditor/plugins/image/dialogs/image.js
245
%%WWWDIR%%/scripts/ckeditor/plugins/image/images/noimage.png
246
%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/assets/image1.jpg
247
%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/assets/image2.jpg
248
%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/contents.css
249
%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/image2.html
250
%%WWWDIR%%/scripts/ckeditor/plugins/image2/dialogs/image2.js
251
%%WWWDIR%%/scripts/ckeditor/plugins/image2/icons/hidpi/image.png
252
%%WWWDIR%%/scripts/ckeditor/plugins/image2/icons/image.png
253
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/af.js
254
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ar.js
255
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bg.js
256
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bn.js
257
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bs.js
258
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ca.js
259
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/cs.js
260
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/cy.js
261
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/da.js
262
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/de.js
263
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/el.js
264
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-au.js
265
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-ca.js
266
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-gb.js
267
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en.js
268
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/eo.js
269
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/es.js
270
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/et.js
271
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/eu.js
272
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fa.js
273
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fi.js
274
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fo.js
275
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fr-ca.js
276
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fr.js
277
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/gl.js
278
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/gu.js
279
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/he.js
280
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hi.js
281
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hr.js
282
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hu.js
283
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/id.js
284
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/is.js
285
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/it.js
286
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ja.js
287
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ka.js
288
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/km.js
289
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ko.js
290
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ku.js
291
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/lt.js
292
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/lv.js
293
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/mk.js
294
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/mn.js
295
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ms.js
296
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/nb.js
297
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/nl.js
298
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/no.js
299
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pl.js
300
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pt-br.js
301
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pt.js
302
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ro.js
303
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ru.js
304
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/si.js
305
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sk.js
306
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sl.js
307
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sq.js
308
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sr-latn.js
309
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sr.js
310
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sv.js
311
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/th.js
312
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/tr.js
313
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/tt.js
314
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ug.js
315
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/uk.js
316
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/vi.js
317
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/zh-cn.js
318
%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/zh.js
319
%%WWWDIR%%/scripts/ckeditor/plugins/image2/plugin.js
320
%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/assets/image1.jpg
321
%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/assets/image2.jpg
322
%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/image2.html
323
%%WWWDIR%%/scripts/ckeditor/plugins/imagepaste/docs/install.html
324
%%WWWDIR%%/scripts/ckeditor/plugins/imagepaste/docs/styles.css
325
%%WWWDIR%%/scripts/ckeditor/plugins/link/dialogs/anchor.js
326
%%WWWDIR%%/scripts/ckeditor/plugins/link/dialogs/link.js
327
%%WWWDIR%%/scripts/ckeditor/plugins/link/images/anchor.png
328
%%WWWDIR%%/scripts/ckeditor/plugins/link/images/hidpi/anchor.png
329
%%WWWDIR%%/scripts/ckeditor/plugins/liststyle/dialogs/liststyle.js
330
%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
331
%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/hidpi/icon.png
332
%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/icon-rtl.png
333
%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/icon.png
334
%%WWWDIR%%/scripts/ckeditor/plugins/pagebreak/images/pagebreak.gif
335
%%WWWDIR%%/scripts/ckeditor/plugins/pastefromword/filter/default.js
336
%%WWWDIR%%/scripts/ckeditor/plugins/preview/preview.html
337
%%WWWDIR%%/scripts/ckeditor/plugins/scayt/LICENSE.md
338
%%WWWDIR%%/scripts/ckeditor/plugins/scayt/README.md
339
%%WWWDIR%%/scripts/ckeditor/plugins/scayt/dialogs/options.js
340
%%WWWDIR%%/scripts/ckeditor/plugins/scayt/dialogs/toolbar.css
341
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_address.png
342
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_blockquote.png
343
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_div.png
344
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h1.png
345
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h2.png
346
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h3.png
347
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h4.png
348
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h5.png
349
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h6.png
350
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_p.png
351
%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_pre.png
352
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/dialogs/smiley.js
353
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angel_smile.gif
354
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angel_smile.png
355
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angry_smile.gif
356
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angry_smile.png
357
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/broken_heart.gif
358
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/broken_heart.png
359
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/confused_smile.gif
360
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/confused_smile.png
361
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/cry_smile.gif
362
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/cry_smile.png
363
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/devil_smile.gif
364
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/devil_smile.png
365
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embaressed_smile.gif
366
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif
367
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embarrassed_smile.png
368
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/envelope.gif
369
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/envelope.png
370
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/heart.gif
371
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/heart.png
372
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/kiss.gif
373
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/kiss.png
374
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/lightbulb.gif
375
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/lightbulb.png
376
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/omg_smile.gif
377
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/omg_smile.png
378
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/regular_smile.gif
379
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/regular_smile.png
380
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/sad_smile.gif
381
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/sad_smile.png
382
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/shades_smile.gif
383
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/shades_smile.png
384
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/teeth_smile.gif
385
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/teeth_smile.png
386
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_down.gif
387
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_down.png
388
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_up.gif
389
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_up.png
390
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tongue_smile.gif
391
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tongue_smile.png
392
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tounge_smile.gif
393
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
394
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png
395
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/wink_smile.gif
396
%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/wink_smile.png
397
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt
398
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/af.js
399
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ar.js
400
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/bg.js
401
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ca.js
402
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/cs.js
403
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/cy.js
404
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/da.js
405
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/de.js
406
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/el.js
407
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js
408
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/en.js
409
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/eo.js
410
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/es.js
411
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/et.js
412
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fa.js
413
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fi.js
414
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js
415
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fr.js
416
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/gl.js
417
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/he.js
418
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/hr.js
419
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/hu.js
420
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/id.js
421
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/it.js
422
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ja.js
423
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/km.js
424
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ko.js
425
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ku.js
426
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/lt.js
427
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/lv.js
428
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/nb.js
429
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/nl.js
430
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/no.js
431
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pl.js
432
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
433
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pt.js
434
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js
435
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/si.js
436
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sk.js
437
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sl.js
438
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sq.js
439
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sv.js
440
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/th.js
441
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/tr.js
442
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/tt.js
443
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ug.js
444
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/uk.js
445
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/vi.js
446
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
447
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/zh.js
448
%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/specialchar.js
449
%%WWWDIR%%/scripts/ckeditor/plugins/table/dialogs/table.js
450
%%WWWDIR%%/scripts/ckeditor/plugins/tabletools/dialogs/tableCell.js
451
%%WWWDIR%%/scripts/ckeditor/plugins/templates/dialogs/templates.css
452
%%WWWDIR%%/scripts/ckeditor/plugins/templates/dialogs/templates.js
453
%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/default.js
454
%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template1.gif
455
%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template2.gif
456
%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template3.gif
457
%%WWWDIR%%/scripts/ckeditor/plugins/timestamp/icons/timestamp.png
458
%%WWWDIR%%/scripts/ckeditor/plugins/timestamp/plugin.js
459
%%WWWDIR%%/scripts/ckeditor/plugins/widget/images/handle.png
460
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/LICENSE.md
461
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/README.md
462
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/ciframe.html
463
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
464
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc.css
465
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc.js
466
%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc_ie.js
467
%%WWWDIR%%/scripts/ckeditor/samples/css/samples.css
468
%%WWWDIR%%/scripts/ckeditor/samples/img/github-top.png
469
%%WWWDIR%%/scripts/ckeditor/samples/img/header-bg.png
470
%%WWWDIR%%/scripts/ckeditor/samples/img/header-separator.png
471
%%WWWDIR%%/scripts/ckeditor/samples/img/logo.png
472
%%WWWDIR%%/scripts/ckeditor/samples/img/navigation-tip.png
473
%%WWWDIR%%/scripts/ckeditor/samples/index.html
474
%%WWWDIR%%/scripts/ckeditor/samples/js/sample.js
475
%%WWWDIR%%/scripts/ckeditor/samples/js/sf.js
476
%%WWWDIR%%/scripts/ckeditor/samples/old/ajax.html
477
%%WWWDIR%%/scripts/ckeditor/samples/old/api.html
478
%%WWWDIR%%/scripts/ckeditor/samples/old/appendto.html
479
%%WWWDIR%%/scripts/ckeditor/samples/old/assets/inlineall/logo.png
480
%%WWWDIR%%/scripts/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css
481
%%WWWDIR%%/scripts/ckeditor/samples/old/assets/posteddata.php
482
%%WWWDIR%%/scripts/ckeditor/samples/old/assets/sample.jpg
483
%%WWWDIR%%/scripts/ckeditor/samples/old/assets/uilanguages/languages.js
484
%%WWWDIR%%/scripts/ckeditor/samples/old/datafiltering.html
485
%%WWWDIR%%/scripts/ckeditor/samples/old/dialog/assets/my_dialog.js
486
%%WWWDIR%%/scripts/ckeditor/samples/old/dialog/dialog.html
487
%%WWWDIR%%/scripts/ckeditor/samples/old/divreplace.html
488
%%WWWDIR%%/scripts/ckeditor/samples/old/enterkey/enterkey.html
489
%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla
490
%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf
491
%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js
492
%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/outputforflash.html
493
%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/outputhtml.html
494
%%WWWDIR%%/scripts/ckeditor/samples/old/index.html
495
%%WWWDIR%%/scripts/ckeditor/samples/old/inlineall.html
496
%%WWWDIR%%/scripts/ckeditor/samples/old/inlinebycode.html
497
%%WWWDIR%%/scripts/ckeditor/samples/old/inlinetextarea.html
498
%%WWWDIR%%/scripts/ckeditor/samples/old/jquery.html
499
%%WWWDIR%%/scripts/ckeditor/samples/old/magicline/magicline.html
500
%%WWWDIR%%/scripts/ckeditor/samples/old/readonly.html
501
%%WWWDIR%%/scripts/ckeditor/samples/old/replacebyclass.html
502
%%WWWDIR%%/scripts/ckeditor/samples/old/replacebycode.html
503
%%WWWDIR%%/scripts/ckeditor/samples/old/sample.css
504
%%WWWDIR%%/scripts/ckeditor/samples/old/sample.js
505
%%WWWDIR%%/scripts/ckeditor/samples/old/sample_posteddata.php
506
%%WWWDIR%%/scripts/ckeditor/samples/old/tabindex.html
507
%%WWWDIR%%/scripts/ckeditor/samples/old/toolbar/toolbar.html
508
%%WWWDIR%%/scripts/ckeditor/samples/old/uicolor.html
509
%%WWWDIR%%/scripts/ckeditor/samples/old/uilanguages.html
510
%%WWWDIR%%/scripts/ckeditor/samples/old/wysiwygarea/fullpage.html
511
%%WWWDIR%%/scripts/ckeditor/samples/old/xhtmlstyle.html
512
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/css/fontello.css
513
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt
514
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/config.json
515
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.eot
516
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.svg
517
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.ttf
518
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.woff
519
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/index.html
520
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js
521
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js
522
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js
523
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js
524
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE
525
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css
526
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js
527
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js
528
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css
529
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css
530
%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js
531
%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog.css
532
%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie.css
533
%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie7.css
534
%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie8.css
535
%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_iequirks.css
536
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor.css
537
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_gecko.css
538
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie.css
539
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie7.css
540
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie8.css
541
%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_iequirks.css
542
%%WWWDIR%%/scripts/ckeditor/skins/moono/icons.png
543
%%WWWDIR%%/scripts/ckeditor/skins/moono/icons_hidpi.png
544
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/arrow.png
545
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/close.png
546
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/close.png
547
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/lock-open.png
548
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/lock.png
549
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/refresh.png
550
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/lock-open.png
551
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/lock.png
552
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/refresh.png
553
%%WWWDIR%%/scripts/ckeditor/skins/moono/images/spinner.gif
554
%%WWWDIR%%/scripts/ckeditor/skins/moono/readme.md
555
%%WWWDIR%%/scripts/ckeditor/styles.js
556
%%WWWDIR%%/scripts/dnd.js
557
%%WWWDIR%%/scripts/elcode.js
558
%%WWWDIR%%/scripts/im.js
559
%%WWWDIR%%/scripts/jquery-1.11.1.min.js
560
%%WWWDIR%%/scripts/load-ckeditor.js
561
%%WWWDIR%%/scripts/progress/progress.min.js
562
%%WWWDIR%%/scripts/progress/progressjs.min.css
563
@dir %%WWWDIR%%/ssl
564
%%WWWDIR%%/themes/default/all_entry.png
565
%%WWWDIR%%/themes/default/attachment.png
566
%%WWWDIR%%/themes/default/cal.png
567
%%WWWDIR%%/themes/default/cal_next.png
568
%%WWWDIR%%/themes/default/cal_prev.png
569
%%WWWDIR%%/themes/default/clock.png
570
%%WWWDIR%%/themes/default/compact.css
571
%%WWWDIR%%/themes/default/delete.png
572
%%WWWDIR%%/themes/default/down.png
573
%%WWWDIR%%/themes/default/edit.png
574
%%WWWDIR%%/themes/default/elog.css
575
%%WWWDIR%%/themes/default/elog.png
576
%%WWWDIR%%/themes/default/entry.png
577
%%WWWDIR%%/themes/default/favicon.ico
578
%%WWWDIR%%/themes/default/favicon.png
579
%%WWWDIR%%/themes/default/first.png
580
%%WWWDIR%%/themes/default/icons/arrow.png
581
%%WWWDIR%%/themes/default/icons/astonished.png
582
%%WWWDIR%%/themes/default/icons/attn.png
583
%%WWWDIR%%/themes/default/icons/biggrin.png
584
%%WWWDIR%%/themes/default/icons/bulb.png
585
%%WWWDIR%%/themes/default/icons/confused.png
586
%%WWWDIR%%/themes/default/icons/cool.png
587
%%WWWDIR%%/themes/default/icons/crying.png
588
%%WWWDIR%%/themes/default/icons/elc_anchor.png
589
%%WWWDIR%%/themes/default/icons/elc_arrow.png
590
%%WWWDIR%%/themes/default/icons/elc_astonished.png
591
%%WWWDIR%%/themes/default/icons/elc_biggrin.png
592
%%WWWDIR%%/themes/default/icons/elc_bold.png
593
%%WWWDIR%%/themes/default/icons/elc_center.png
594
%%WWWDIR%%/themes/default/icons/elc_clock.png
595
%%WWWDIR%%/themes/default/icons/elc_code.png
596
%%WWWDIR%%/themes/default/icons/elc_confused.png
597
%%WWWDIR%%/themes/default/icons/elc_cool.png
598
%%WWWDIR%%/themes/default/icons/elc_crying.png
599
%%WWWDIR%%/themes/default/icons/elc_delatt.png
600
%%WWWDIR%%/themes/default/icons/elc_email.png
601
%%WWWDIR%%/themes/default/icons/elc_frown.png
602
%%WWWDIR%%/themes/default/icons/elc_happy.png
603
%%WWWDIR%%/themes/default/icons/elc_heading.png
604
%%WWWDIR%%/themes/default/icons/elc_image.png
605
%%WWWDIR%%/themes/default/icons/elc_italic.png
606
%%WWWDIR%%/themes/default/icons/elc_larger.png
607
%%WWWDIR%%/themes/default/icons/elc_line.png
608
%%WWWDIR%%/themes/default/icons/elc_list.png
609
%%WWWDIR%%/themes/default/icons/elc_mad.png
610
%%WWWDIR%%/themes/default/icons/elc_original.png
611
%%WWWDIR%%/themes/default/icons/elc_pleased.png
612
%%WWWDIR%%/themes/default/icons/elc_quote.png
613
%%WWWDIR%%/themes/default/icons/elc_rotleft.png
614
%%WWWDIR%%/themes/default/icons/elc_rotright.png
615
%%WWWDIR%%/themes/default/icons/elc_smaller.png
616
%%WWWDIR%%/themes/default/icons/elc_smile.png
617
%%WWWDIR%%/themes/default/icons/elc_table.png
618
%%WWWDIR%%/themes/default/icons/elc_tongue.png
619
%%WWWDIR%%/themes/default/icons/elc_underline.png
620
%%WWWDIR%%/themes/default/icons/elc_url.png
621
%%WWWDIR%%/themes/default/icons/elc_wink.png
622
%%WWWDIR%%/themes/default/icons/elc_yawn.png
623
%%WWWDIR%%/themes/default/icons/eld_anchor.png
624
%%WWWDIR%%/themes/default/icons/eld_arrow.png
625
%%WWWDIR%%/themes/default/icons/eld_astonished.png
626
%%WWWDIR%%/themes/default/icons/eld_biggrin.png
627
%%WWWDIR%%/themes/default/icons/eld_bold.png
628
%%WWWDIR%%/themes/default/icons/eld_center.png
629
%%WWWDIR%%/themes/default/icons/eld_clock.png
630
%%WWWDIR%%/themes/default/icons/eld_code.png
631
%%WWWDIR%%/themes/default/icons/eld_confused.png
632
%%WWWDIR%%/themes/default/icons/eld_cool.png
633
%%WWWDIR%%/themes/default/icons/eld_crying.png
634
%%WWWDIR%%/themes/default/icons/eld_delatt.png
635
%%WWWDIR%%/themes/default/icons/eld_email.png
636
%%WWWDIR%%/themes/default/icons/eld_frown.png
637
%%WWWDIR%%/themes/default/icons/eld_happy.png
638
%%WWWDIR%%/themes/default/icons/eld_heading.png
639
%%WWWDIR%%/themes/default/icons/eld_image.png
640
%%WWWDIR%%/themes/default/icons/eld_italic.png
641
%%WWWDIR%%/themes/default/icons/eld_larger.png
642
%%WWWDIR%%/themes/default/icons/eld_line.png
643
%%WWWDIR%%/themes/default/icons/eld_list.png
644
%%WWWDIR%%/themes/default/icons/eld_mad.png
645
%%WWWDIR%%/themes/default/icons/eld_original.png
646
%%WWWDIR%%/themes/default/icons/eld_pleased.png
647
%%WWWDIR%%/themes/default/icons/eld_quote.png
648
%%WWWDIR%%/themes/default/icons/eld_rotleft.png
649
%%WWWDIR%%/themes/default/icons/eld_rotright.png
650
%%WWWDIR%%/themes/default/icons/eld_smaller.png
651
%%WWWDIR%%/themes/default/icons/eld_smile.png
652
%%WWWDIR%%/themes/default/icons/eld_table.png
653
%%WWWDIR%%/themes/default/icons/eld_tongue.png
654
%%WWWDIR%%/themes/default/icons/eld_underline.png
655
%%WWWDIR%%/themes/default/icons/eld_url.png
656
%%WWWDIR%%/themes/default/icons/eld_wink.png
657
%%WWWDIR%%/themes/default/icons/eld_yawn.png
658
%%WWWDIR%%/themes/default/icons/frown.png
659
%%WWWDIR%%/themes/default/icons/happy.png
660
%%WWWDIR%%/themes/default/icons/icon1.gif
661
%%WWWDIR%%/themes/default/icons/icon1.png
662
%%WWWDIR%%/themes/default/icons/icon10.gif
663
%%WWWDIR%%/themes/default/icons/icon10.png
664
%%WWWDIR%%/themes/default/icons/icon11.gif
665
%%WWWDIR%%/themes/default/icons/icon11.png
666
%%WWWDIR%%/themes/default/icons/icon12.gif
667
%%WWWDIR%%/themes/default/icons/icon12.png
668
%%WWWDIR%%/themes/default/icons/icon13.gif
669
%%WWWDIR%%/themes/default/icons/icon13.png
670
%%WWWDIR%%/themes/default/icons/icon14.gif
671
%%WWWDIR%%/themes/default/icons/icon14.png
672
%%WWWDIR%%/themes/default/icons/icon2.gif
673
%%WWWDIR%%/themes/default/icons/icon2.png
674
%%WWWDIR%%/themes/default/icons/icon3.gif
675
%%WWWDIR%%/themes/default/icons/icon3.png
676
%%WWWDIR%%/themes/default/icons/icon4.gif
677
%%WWWDIR%%/themes/default/icons/icon4.png
678
%%WWWDIR%%/themes/default/icons/icon5.gif
679
%%WWWDIR%%/themes/default/icons/icon5.png
680
%%WWWDIR%%/themes/default/icons/icon6.gif
681
%%WWWDIR%%/themes/default/icons/icon6.png
682
%%WWWDIR%%/themes/default/icons/icon7.gif
683
%%WWWDIR%%/themes/default/icons/icon7.png
684
%%WWWDIR%%/themes/default/icons/icon8.gif
685
%%WWWDIR%%/themes/default/icons/icon8.png
686
%%WWWDIR%%/themes/default/icons/icon9.gif
687
%%WWWDIR%%/themes/default/icons/icon9.png
688
%%WWWDIR%%/themes/default/icons/mad.png
689
%%WWWDIR%%/themes/default/icons/paper.png
690
%%WWWDIR%%/themes/default/icons/pleased.png
691
%%WWWDIR%%/themes/default/icons/question.png
692
%%WWWDIR%%/themes/default/icons/smile.png
693
%%WWWDIR%%/themes/default/icons/thmbdown.png
694
%%WWWDIR%%/themes/default/icons/thmbup.png
695
%%WWWDIR%%/themes/default/icons/tongue.png
696
%%WWWDIR%%/themes/default/icons/wink.png
697
%%WWWDIR%%/themes/default/icons/yawn.png
698
%%WWWDIR%%/themes/default/last.png
699
%%WWWDIR%%/themes/default/lock.png
700
%%WWWDIR%%/themes/default/new_entry.png
701
%%WWWDIR%%/themes/default/next.png
702
%%WWWDIR%%/themes/default/previous.png
703
%%WWWDIR%%/themes/default/reply.png
704
%%WWWDIR%%/themes/default/stop.png
705
%%WWWDIR%%/themes/default/tiny.css
706
%%WWWDIR%%/themes/default/up.png

Return to bug 274813