Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Sep 2024 20:20:24 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 334b84977f4b - main - www/elog: Fast and lightweight, customizable weblog
Message-ID:  <202409162020.48GKKOX9062586@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=334b84977f4b42edb5115125c8d242e629f6df8c

commit 334b84977f4b42edb5115125c8d242e629f6df8c
Author:     Erik Jensen <erik@tenku.dk>
AuthorDate: 2024-09-11 15:39:53 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2024-09-16 20:14:20 +0000

    www/elog: Fast and lightweight, customizable weblog
    
    The Electronic Logbook (ELOG) provides a Web interface to manage notes.
    Its general purpose is to make it easy for people to put and access
    information online; in the form of short, time stamped text messages
    with optional HTML markup for presentation, and optional file
    attachments.
    
    WWW: https://elog.psi.ch/elog/
    
    PR:             274813
---
 GIDs                          |   2 +-
 UIDs                          |   2 +-
 www/Makefile                  |   1 +
 www/elog/Makefile             |  38 +++
 www/elog/distinfo             |   3 +
 www/elog/files/elogd.in       |  50 +++
 www/elog/files/patch-Makefile |  55 ++++
 www/elog/pkg-descr            |   5 +
 www/elog/pkg-plist            | 706 ++++++++++++++++++++++++++++++++++++++++++
 9 files changed, 860 insertions(+), 2 deletions(-)

diff --git a/GIDs b/GIDs
index aa63249122f3..f1ee5df2c001 100644
--- a/GIDs
+++ b/GIDs
@@ -304,7 +304,7 @@ v2ray:*:360:
 httptunnel:*:361:
 readarr:*:362:
 victoria-logs:*:363:
-# free: 364
+elog:*:364:
 # free: 365
 # free: 366
 # free: 367
diff --git a/UIDs b/UIDs
index ebc717fa6fdb..f08bffe259fb 100644
--- a/UIDs
+++ b/UIDs
@@ -309,7 +309,7 @@ v2ray:*:360:360::0:0:V2Ray Daemon:/nonexistent:/usr/sbin/nologin
 httptunnel:*:361:361::0:0:httptunnel Daemon:/nonexistent:/usr/sbin/nologin
 readarr:*:362:362::0:0:Readarr Daemon:/nonexistent:/usr/sbin/nologin
 victoria-logs:*:363:363::0:0:VictoriaLogs Daemon:/nonexistent:/usr/sbin/nologin
-# free: 364
+elog:*:364:364::0:0:Elog server:/nonexistent:/usr/sbin/nologin
 # free: 365
 # free: 366
 # free: 367
diff --git a/www/Makefile b/www/Makefile
index 019e1fcf374f..b4c1ace9e2ed 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -161,6 +161,7 @@
     SUBDIR += element-web
     SUBDIR += elgg
     SUBDIR += elinks
+    SUBDIR += elog
     SUBDIR += emacs-w3m
     SUBDIR += encode-explorer
     SUBDIR += envoy
diff --git a/www/elog/Makefile b/www/elog/Makefile
new file mode 100644
index 000000000000..dd224882e2a5
--- /dev/null
+++ b/www/elog/Makefile
@@ -0,0 +1,38 @@
+PORTNAME=	elog
+DISTVERSION=	3.1.5-1
+CATEGORIES=	www
+MASTER_SITES=	https://elog.psi.ch/elog/download/tar/
+
+MAINTAINER=	erik@tenku.dk
+COMMENT=	Fast and lightweight, customizable weblog
+WWW=		https://elog.psi.ch/elog/
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		gmake ssl
+
+USE_RC_SUBR=	elogd
+
+USERS=	elog
+GROUPS=	elog
+
+OPTIONS_DEFINE=	DOCS
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/elconv ${STAGEDIR}${PREFIX}/bin/elconv
+	${INSTALL_PROGRAM} ${WRKSRC}/elog ${STAGEDIR}${PREFIX}/bin/elog
+	${INSTALL_MAN} ${WRKSRC}/man/elconv.1 ${STAGEDIR}${PREFIX}/share/man/man1/elconv.1
+	${INSTALL_MAN} ${WRKSRC}/man/elog.1 ${STAGEDIR}${PREFIX}/share/man/man1/elog.1
+	${INSTALL_MAN} ${WRKSRC}/man/elogd.8 ${STAGEDIR}${PREFIX}/share/man/man8/elogd.8
+	${INSTALL_PROGRAM} ${WRKSRC}/elogd ${STAGEDIR}${PREFIX}/sbin
+	cd ${WRKSRC} && \
+		${COPYTREE_SHARE} "logbooks resources scripts themes" ${STAGEDIR}${WWWDIR}
+	${INSTALL_DATA} ${WRKSRC}/elogd.cfg.example ${STAGEDIR}${PREFIX}/etc/elogd.cfg.sample
+	${MKDIR} ${STAGEDIR}${WWWDIR}/ssl
+
+do-install-DOCS-on:
+	cd ${WRKSRC} && \
+		${COPYTREE_SHARE} "doc" ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
diff --git a/www/elog/distinfo b/www/elog/distinfo
new file mode 100644
index 000000000000..d26342b73b95
--- /dev/null
+++ b/www/elog/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1698665645
+SHA256 (elog-3.1.5-1.tar.gz) = 165fdeec01819c06a1fe14cd1741e9ab284a961053df9ba9f8680f8f7f9e299f
+SIZE (elog-3.1.5-1.tar.gz) = 2963617
diff --git a/www/elog/files/elogd.in b/www/elog/files/elogd.in
new file mode 100644
index 000000000000..bfb0725290f6
--- /dev/null
+++ b/www/elog/files/elogd.in
@@ -0,0 +1,50 @@
+#!/bin/sh
+
+# PROVIDE: elogd
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add these lines to /etc/rc.conf.local or /etc/rc.conf to enable this service:
+#
+# elogd_enable (bool): Set it to "YES" to enable elogd. Default: NO
+# elogd_config (str):	Path to elogd configuration file. Default: %%PREFIX%%/etc/elogd.cfg
+# elogd_user (str):	Elog daemon user. Default: elog
+# elogd_group (str):	Elog group. Default: elog
+# elogd_resource_dir (str):	Path to directory containing resource directory. Default: %%WWWDIR%%
+# elogd_logbook_dir (str):	Path to directory containing logbooks. Default: %%WWWDIR%%/logbooks
+
+. /etc/rc.subr
+
+name=elogd
+desc="Electronic Logbook Daemon"
+rcvar=elogd_enable
+
+start_precmd="elogd_checkssl"
+
+load_rc_config $name
+
+: ${elogd_enable:="NO"}
+: ${elogd_config="%%PREFIX%%/etc/elogd.cfg"}
+: ${elogd_user="elog"}
+: ${elogd_group="elog"}
+: ${elogd_resource_dir="%%WWWDIR%%"}
+: ${elogd_logbook_dir="%%WWWDIR%%/logbooks"}
+
+elogd_ssl_dir="%%WWWDIR%%/ssl"
+elogd_ssl_key="${elogd_ssl_dir}/server.key"
+elogd_ssl_cert="${elogd_ssl_dir}/server.crt"
+
+command=%%PREFIX%%/sbin/${name}
+command_args="-D -c $elogd_config -s $elogd_resource_dir -d $elogd_logbook_dir"
+
+elogd_checkssl() {
+  if ! [ -e "${elogd_ssl_key}" ] || ! [ -e "${elogd_ssl_cert}" ] ; then
+    echo "Server private key and certificate not present in ${elogd_ssl_dir} - creating..."
+    openssl ecparam -genkey -noout -name secp384r1 -out ${elogd_ssl_key}
+    openssl req -x509 -days 365 -subj "/C=DK/ST=Some-State/O=Bogus Inc./CN=localhost" \
+      -nodes -key ${elogd_ssl_key} -out ${elogd_ssl_cert}
+    chown elog:elog ${elogd_ssl_key} ${elogd_ssl_cert}
+  fi
+}
+
+run_rc_command "$1"
diff --git a/www/elog/files/patch-Makefile b/www/elog/files/patch-Makefile
new file mode 100644
index 000000000000..8a694091fbb5
--- /dev/null
+++ b/www/elog/files/patch-Makefile
@@ -0,0 +1,55 @@
+--- Makefile.orig	2022-05-10 11:18:40 UTC
++++ Makefile
+@@ -40,7 +40,6 @@ USE_PAM    = 0
+ # Default compilation flags unless stated otherwise.
+ CFLAGS += -O3 -funroll-loops -fomit-frame-pointer -W -Wall -Wno-deprecated-declarations -Wno-unused-result -Imxml
+ 
+-CC = c++
+ EXECS = elog elogd elconv
+ OBJS = mxml.o crypt.o
+ GIT_REVISION = src/git-revision.h
+@@ -81,7 +80,6 @@ LIBS += -L/opt/local/lib
+ endif
+ 
+ ifeq ($(OSTYPE),FreeBSD)
+-CC = gcc
+ BINOWNER = root
+ BINGROUP = wheel
+ endif
+@@ -134,28 +132,28 @@ $(GIT_REVISION): src/elogd.cxx src/elog.cxx
+ 	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)
+ 
+ crypt.o: src/crypt.cxx
+-	$(CC) $(CFLAGS) -w -c -o crypt.o src/crypt.cxx
++	$(CXX) $(CFLAGS) -w -c -o crypt.o src/crypt.cxx
+ 
+ auth.o: src/auth.cxx
+-	$(CC) $(CFLAGS) -w -c -o auth.o src/auth.cxx
++	$(CXX) $(CFLAGS) -w -c -o auth.o src/auth.cxx
+ 
+ mxml.o: mxml/mxml.cxx mxml/mxml.h
+-	$(CC) $(CFLAGS) -c -o mxml.o mxml/mxml.cxx
++	$(CXX) $(CFLAGS) -c -o mxml.o mxml/mxml.cxx
+ 
+ strlcpy.o: mxml/strlcpy.cxx mxml/strlcpy.h
+-	$(CC) $(CFLAGS) -c -o strlcpy.o mxml/strlcpy.cxx
++	$(CXX) $(CFLAGS) -c -o strlcpy.o mxml/strlcpy.cxx
+ 
+ elogd: src/elogd.cxx auth.o $(OBJS) $(GIT_REVISION)
+-	$(CC) $(CFLAGS) -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
++	$(CXX) $(CFLAGS) -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
+ 
+ elog: src/elog.cxx $(OBJS) $(GIT_REVISION)
+-	$(CC) $(CFLAGS) -o elog src/elog.cxx $(OBJS) $(LIBS)
++	$(CXX) $(CFLAGS) -o elog src/elog.cxx $(OBJS) $(LIBS)
+ 
+ debug: src/elogd.cxx auth.o $(OBJS)
+-	$(CC) -g $(CFLAGS) -O0 -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
++	$(CXX) -g $(CFLAGS) -O0 -o elogd src/elogd.cxx auth.o $(OBJS) $(LIBS)
+ 
+ %: src/%.cxx
+-	$(CC) $(CFLAGS) -o $@ $< $(LIBS)
++	$(CXX) $(CFLAGS) -o $@ $< $(LIBS)
+ 
+ ifeq ($(OSTYPE),CYGWIN_NT-5.1)
+ loc: locext.exe
diff --git a/www/elog/pkg-descr b/www/elog/pkg-descr
new file mode 100644
index 000000000000..f5e2e12510d7
--- /dev/null
+++ b/www/elog/pkg-descr
@@ -0,0 +1,5 @@
+The Electronic Logbook (ELOG) provides a Web interface to manage notes.
+Its general purpose is to make it easy for people to put and access
+information online; in the form of short, time stamped text messages
+with optional HTML markup for presentation, and optional file
+attachments.
diff --git a/www/elog/pkg-plist b/www/elog/pkg-plist
new file mode 100644
index 000000000000..618ed887562d
--- /dev/null
+++ b/www/elog/pkg-plist
@@ -0,0 +1,706 @@
+bin/elconv
+bin/elog
+@sample(elog,elog,664) etc/elogd.cfg.sample
+%%PORTDOCS%%%%DOCSDIR%%/doc/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/doc/adminguide.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/cell_style.png
+%%PORTDOCS%%%%DOCSDIR%%/doc/config.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/contrib.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/download.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/elog.css
+%%PORTDOCS%%%%DOCSDIR%%/doc/elog.gif
+%%PORTDOCS%%%%DOCSDIR%%/doc/elog_thumb.gif
+%%PORTDOCS%%%%DOCSDIR%%/doc/faq.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/hierarchy.gif
+%%PORTDOCS%%%%DOCSDIR%%/doc/index.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/live_bookmarks.png
+%%PORTDOCS%%%%DOCSDIR%%/doc/paypalcard.png
+%%PORTDOCS%%%%DOCSDIR%%/doc/rss.png
+%%PORTDOCS%%%%DOCSDIR%%/doc/strftime.txt
+%%PORTDOCS%%%%DOCSDIR%%/doc/sync.gif
+%%PORTDOCS%%%%DOCSDIR%%/doc/tabs.gif
+%%PORTDOCS%%%%DOCSDIR%%/doc/theme1.jpg
+%%PORTDOCS%%%%DOCSDIR%%/doc/theme2.jpg
+%%PORTDOCS%%%%DOCSDIR%%/doc/thumbnail.png
+%%PORTDOCS%%%%DOCSDIR%%/doc/userguide.html
+%%PORTDOCS%%%%DOCSDIR%%/doc/wishlist.html
+share/man/man1/elconv.1.gz
+share/man/man1/elog.1.gz
+share/man/man8/elogd.8.gz
+sbin/elogd
+@dir(elog,elog,775) %%WWWDIR%%/logbooks
+@dir(elog,elog,775) %%WWWDIR%%/logbooks/demo
+@dir(elog,elog,775) %%WWWDIR%%/logbooks/demo/2001
+@(elog,elog,664) %%WWWDIR%%/logbooks/demo/2001/011108a.log
+%%WWWDIR%%/resources/elcode_english.html
+%%WWWDIR%%/resources/elcode_indonesia.html
+%%WWWDIR%%/resources/elcode_zh_CN-GB2312.html
+%%WWWDIR%%/resources/elcode_zh_CN-UTF8.html
+%%WWWDIR%%/resources/elogd-zh_CN-GB2312.cfg
+%%WWWDIR%%/resources/elogd-zh_CN-UTF8.cfg
+%%WWWDIR%%/resources/eloghelp_brazilian.html
+%%WWWDIR%%/resources/eloghelp_czech.html
+%%WWWDIR%%/resources/eloghelp_danish.html
+%%WWWDIR%%/resources/eloghelp_dutch.html
+%%WWWDIR%%/resources/eloghelp_english.html
+%%WWWDIR%%/resources/eloghelp_french.html
+%%WWWDIR%%/resources/eloghelp_german.html
+%%WWWDIR%%/resources/eloghelp_indonesia.html
+%%WWWDIR%%/resources/eloghelp_italian.html
+%%WWWDIR%%/resources/eloghelp_japanese.html
+%%WWWDIR%%/resources/eloghelp_polish.html
+%%WWWDIR%%/resources/eloghelp_slovak.html
+%%WWWDIR%%/resources/eloghelp_spanish.html
+%%WWWDIR%%/resources/eloghelp_swedish.html
+%%WWWDIR%%/resources/eloghelp_turkish.html
+%%WWWDIR%%/resources/eloghelp_zh_CN-GB2312.html
+%%WWWDIR%%/resources/eloghelp_zh_CN-UTF8.html
+%%WWWDIR%%/resources/eloglang.brazilian
+%%WWWDIR%%/resources/eloglang.bulgarian
+%%WWWDIR%%/resources/eloglang.czech
+%%WWWDIR%%/resources/eloglang.danish
+%%WWWDIR%%/resources/eloglang.dutch
+%%WWWDIR%%/resources/eloglang.french
+%%WWWDIR%%/resources/eloglang.german
+%%WWWDIR%%/resources/eloglang.german_UTF8
+%%WWWDIR%%/resources/eloglang.indonesia
+%%WWWDIR%%/resources/eloglang.italian
+%%WWWDIR%%/resources/eloglang.japanese
+%%WWWDIR%%/resources/eloglang.polish
+%%WWWDIR%%/resources/eloglang.ru_CP1251
+%%WWWDIR%%/resources/eloglang.slovak
+%%WWWDIR%%/resources/eloglang.spanish
+%%WWWDIR%%/resources/eloglang.swedish
+%%WWWDIR%%/resources/eloglang.turkish
+%%WWWDIR%%/resources/eloglang.zh_CN-GB2312
+%%WWWDIR%%/resources/eloglang.zh_CN-UTF8
+%%WWWDIR%%/scripts/ckeditor-config.js
+%%WWWDIR%%/scripts/ckeditor/CHANGES.md
+%%WWWDIR%%/scripts/ckeditor/LICENSE.md
+%%WWWDIR%%/scripts/ckeditor/README.md
+%%WWWDIR%%/scripts/ckeditor/adapters/jquery.js
+%%WWWDIR%%/scripts/ckeditor/build-config.js
+%%WWWDIR%%/scripts/ckeditor/ckeditor.js
+%%WWWDIR%%/scripts/ckeditor/config.js
+%%WWWDIR%%/scripts/ckeditor/contents.css
+%%WWWDIR%%/scripts/ckeditor/lang/af.js
+%%WWWDIR%%/scripts/ckeditor/lang/ar.js
+%%WWWDIR%%/scripts/ckeditor/lang/bg.js
+%%WWWDIR%%/scripts/ckeditor/lang/bn.js
+%%WWWDIR%%/scripts/ckeditor/lang/bs.js
+%%WWWDIR%%/scripts/ckeditor/lang/ca.js
+%%WWWDIR%%/scripts/ckeditor/lang/cs.js
+%%WWWDIR%%/scripts/ckeditor/lang/cy.js
+%%WWWDIR%%/scripts/ckeditor/lang/da.js
+%%WWWDIR%%/scripts/ckeditor/lang/de.js
+%%WWWDIR%%/scripts/ckeditor/lang/el.js
+%%WWWDIR%%/scripts/ckeditor/lang/en-au.js
+%%WWWDIR%%/scripts/ckeditor/lang/en-ca.js
+%%WWWDIR%%/scripts/ckeditor/lang/en-gb.js
+%%WWWDIR%%/scripts/ckeditor/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/lang/eo.js
+%%WWWDIR%%/scripts/ckeditor/lang/es.js
+%%WWWDIR%%/scripts/ckeditor/lang/et.js
+%%WWWDIR%%/scripts/ckeditor/lang/eu.js
+%%WWWDIR%%/scripts/ckeditor/lang/fa.js
+%%WWWDIR%%/scripts/ckeditor/lang/fi.js
+%%WWWDIR%%/scripts/ckeditor/lang/fo.js
+%%WWWDIR%%/scripts/ckeditor/lang/fr-ca.js
+%%WWWDIR%%/scripts/ckeditor/lang/fr.js
+%%WWWDIR%%/scripts/ckeditor/lang/gl.js
+%%WWWDIR%%/scripts/ckeditor/lang/gu.js
+%%WWWDIR%%/scripts/ckeditor/lang/he.js
+%%WWWDIR%%/scripts/ckeditor/lang/hi.js
+%%WWWDIR%%/scripts/ckeditor/lang/hr.js
+%%WWWDIR%%/scripts/ckeditor/lang/hu.js
+%%WWWDIR%%/scripts/ckeditor/lang/id.js
+%%WWWDIR%%/scripts/ckeditor/lang/is.js
+%%WWWDIR%%/scripts/ckeditor/lang/it.js
+%%WWWDIR%%/scripts/ckeditor/lang/ja.js
+%%WWWDIR%%/scripts/ckeditor/lang/ka.js
+%%WWWDIR%%/scripts/ckeditor/lang/km.js
+%%WWWDIR%%/scripts/ckeditor/lang/ko.js
+%%WWWDIR%%/scripts/ckeditor/lang/ku.js
+%%WWWDIR%%/scripts/ckeditor/lang/lt.js
+%%WWWDIR%%/scripts/ckeditor/lang/lv.js
+%%WWWDIR%%/scripts/ckeditor/lang/mk.js
+%%WWWDIR%%/scripts/ckeditor/lang/mn.js
+%%WWWDIR%%/scripts/ckeditor/lang/ms.js
+%%WWWDIR%%/scripts/ckeditor/lang/nb.js
+%%WWWDIR%%/scripts/ckeditor/lang/nl.js
+%%WWWDIR%%/scripts/ckeditor/lang/no.js
+%%WWWDIR%%/scripts/ckeditor/lang/pl.js
+%%WWWDIR%%/scripts/ckeditor/lang/pt-br.js
+%%WWWDIR%%/scripts/ckeditor/lang/pt.js
+%%WWWDIR%%/scripts/ckeditor/lang/ro.js
+%%WWWDIR%%/scripts/ckeditor/lang/ru.js
+%%WWWDIR%%/scripts/ckeditor/lang/si.js
+%%WWWDIR%%/scripts/ckeditor/lang/sk.js
+%%WWWDIR%%/scripts/ckeditor/lang/sl.js
+%%WWWDIR%%/scripts/ckeditor/lang/sq.js
+%%WWWDIR%%/scripts/ckeditor/lang/sr-latn.js
+%%WWWDIR%%/scripts/ckeditor/lang/sr.js
+%%WWWDIR%%/scripts/ckeditor/lang/sv.js
+%%WWWDIR%%/scripts/ckeditor/lang/th.js
+%%WWWDIR%%/scripts/ckeditor/lang/tr.js
+%%WWWDIR%%/scripts/ckeditor/lang/tt.js
+%%WWWDIR%%/scripts/ckeditor/lang/ug.js
+%%WWWDIR%%/scripts/ckeditor/lang/uk.js
+%%WWWDIR%%/scripts/ckeditor/lang/vi.js
+%%WWWDIR%%/scripts/ckeditor/lang/zh-cn.js
+%%WWWDIR%%/scripts/ckeditor/lang/zh.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js
+%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/about.js
+%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
+%%WWWDIR%%/scripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png
+%%WWWDIR%%/scripts/ckeditor/plugins/clipboard/dialogs/paste.js
+%%WWWDIR%%/scripts/ckeditor/plugins/colordialog/dialogs/colordialog.js
+%%WWWDIR%%/scripts/ckeditor/plugins/dialog/dialogDefinition.js
+%%WWWDIR%%/scripts/ckeditor/plugins/div/dialogs/div.js
+%%WWWDIR%%/scripts/ckeditor/plugins/dndfiles/plugin.js
+%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/dialogs/eqneditor.js
+%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/dialogs/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/icons/eqneditor.png
+%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/plugins/eqneditor/plugin.js
+%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/dialogs/fileupload.js
+%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/icons/fileupload.png
+%%WWWDIR%%/scripts/ckeditor/plugins/fileupload/plugin.js
+%%WWWDIR%%/scripts/ckeditor/plugins/find/dialogs/find.js
+%%WWWDIR%%/scripts/ckeditor/plugins/flash/dialogs/flash.js
+%%WWWDIR%%/scripts/ckeditor/plugins/flash/images/placeholder.png
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/button.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/checkbox.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/form.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/hiddenfield.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/radio.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/select.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/textarea.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/dialogs/textfield.js
+%%WWWDIR%%/scripts/ckeditor/plugins/forms/images/hiddenfield.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/icons.png
+%%WWWDIR%%/scripts/ckeditor/plugins/icons_hidpi.png
+%%WWWDIR%%/scripts/ckeditor/plugins/iframe/dialogs/iframe.js
+%%WWWDIR%%/scripts/ckeditor/plugins/iframe/images/placeholder.png
+%%WWWDIR%%/scripts/ckeditor/plugins/image/dialogs/image.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image/images/noimage.png
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/assets/image1.jpg
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/assets/image2.jpg
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/contents.css
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/dev/image2.html
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/dialogs/image2.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/icons/hidpi/image.png
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/icons/image.png
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/af.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ar.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bg.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/bs.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/cs.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/cy.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/da.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/de.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/el.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-au.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en-gb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/eo.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/es.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/et.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/eu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fa.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fo.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fr-ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/fr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/gl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/gu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/he.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/hu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/id.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/is.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/it.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ja.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ka.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/km.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ko.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ku.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/lt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/lv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/mk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/mn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ms.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/nb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/nl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/no.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pt-br.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/pt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ro.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ru.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/si.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sq.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sr-latn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/sv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/th.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/tr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/tt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/ug.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/uk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/vi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/zh-cn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/lang/zh.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/plugin.js
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/assets/image1.jpg
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/assets/image2.jpg
+%%WWWDIR%%/scripts/ckeditor/plugins/image2/samples/image2.html
+%%WWWDIR%%/scripts/ckeditor/plugins/imagepaste/docs/install.html
+%%WWWDIR%%/scripts/ckeditor/plugins/imagepaste/docs/styles.css
+%%WWWDIR%%/scripts/ckeditor/plugins/link/dialogs/anchor.js
+%%WWWDIR%%/scripts/ckeditor/plugins/link/dialogs/link.js
+%%WWWDIR%%/scripts/ckeditor/plugins/link/images/anchor.png
+%%WWWDIR%%/scripts/ckeditor/plugins/link/images/hidpi/anchor.png
+%%WWWDIR%%/scripts/ckeditor/plugins/liststyle/dialogs/liststyle.js
+%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
+%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/hidpi/icon.png
+%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/icon-rtl.png
+%%WWWDIR%%/scripts/ckeditor/plugins/magicline/images/icon.png
+%%WWWDIR%%/scripts/ckeditor/plugins/pagebreak/images/pagebreak.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/pastefromword/filter/default.js
+%%WWWDIR%%/scripts/ckeditor/plugins/preview/preview.html
+%%WWWDIR%%/scripts/ckeditor/plugins/scayt/LICENSE.md
+%%WWWDIR%%/scripts/ckeditor/plugins/scayt/README.md
+%%WWWDIR%%/scripts/ckeditor/plugins/scayt/dialogs/options.js
+%%WWWDIR%%/scripts/ckeditor/plugins/scayt/dialogs/toolbar.css
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_address.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_blockquote.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_div.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h1.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h2.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h3.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h4.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h5.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_h6.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_p.png
+%%WWWDIR%%/scripts/ckeditor/plugins/showblocks/images/block_pre.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/dialogs/smiley.js
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angel_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angel_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angry_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/angry_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/broken_heart.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/broken_heart.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/confused_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/confused_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/cry_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/cry_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/devil_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/devil_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embaressed_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embarrassed_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/embarrassed_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/envelope.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/envelope.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/heart.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/heart.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/kiss.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/kiss.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/lightbulb.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/lightbulb.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/omg_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/omg_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/regular_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/regular_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/sad_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/sad_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/shades_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/shades_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/teeth_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/teeth_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_down.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_down.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_up.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/thumbs_up.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tongue_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tongue_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/tounge_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/wink_smile.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/smiley/images/wink_smile.png
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/af.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ar.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/bg.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/cs.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/cy.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/da.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/de.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/el.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/en.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/eo.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/es.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/et.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fa.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/fr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/gl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/he.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/hr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/hu.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/id.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/it.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ja.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/km.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ko.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ku.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/lt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/lv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/nb.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/nl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/no.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/pt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ru.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/si.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sl.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sq.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/sv.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/th.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/tr.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/tt.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/ug.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/uk.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/vi.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/lang/zh.js
+%%WWWDIR%%/scripts/ckeditor/plugins/specialchar/dialogs/specialchar.js
+%%WWWDIR%%/scripts/ckeditor/plugins/table/dialogs/table.js
+%%WWWDIR%%/scripts/ckeditor/plugins/tabletools/dialogs/tableCell.js
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/dialogs/templates.css
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/dialogs/templates.js
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/default.js
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template1.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template2.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/templates/templates/images/template3.gif
+%%WWWDIR%%/scripts/ckeditor/plugins/timestamp/icons/timestamp.png
+%%WWWDIR%%/scripts/ckeditor/plugins/timestamp/plugin.js
+%%WWWDIR%%/scripts/ckeditor/plugins/widget/images/handle.png
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/LICENSE.md
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/README.md
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/ciframe.html
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc.css
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc.js
+%%WWWDIR%%/scripts/ckeditor/plugins/wsc/dialogs/wsc_ie.js
+%%WWWDIR%%/scripts/ckeditor/samples/css/samples.css
+%%WWWDIR%%/scripts/ckeditor/samples/img/github-top.png
+%%WWWDIR%%/scripts/ckeditor/samples/img/header-bg.png
+%%WWWDIR%%/scripts/ckeditor/samples/img/header-separator.png
+%%WWWDIR%%/scripts/ckeditor/samples/img/logo.png
+%%WWWDIR%%/scripts/ckeditor/samples/img/navigation-tip.png
+%%WWWDIR%%/scripts/ckeditor/samples/index.html
+%%WWWDIR%%/scripts/ckeditor/samples/js/sample.js
+%%WWWDIR%%/scripts/ckeditor/samples/js/sf.js
+%%WWWDIR%%/scripts/ckeditor/samples/old/ajax.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/api.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/appendto.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/assets/inlineall/logo.png
+%%WWWDIR%%/scripts/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css
+%%WWWDIR%%/scripts/ckeditor/samples/old/assets/posteddata.php
+%%WWWDIR%%/scripts/ckeditor/samples/old/assets/sample.jpg
+%%WWWDIR%%/scripts/ckeditor/samples/old/assets/uilanguages/languages.js
+%%WWWDIR%%/scripts/ckeditor/samples/old/datafiltering.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/dialog/assets/my_dialog.js
+%%WWWDIR%%/scripts/ckeditor/samples/old/dialog/dialog.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/divreplace.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/enterkey/enterkey.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla
+%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf
+%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js
+%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/outputforflash.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/htmlwriter/outputhtml.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/index.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/inlineall.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/inlinebycode.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/inlinetextarea.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/jquery.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/magicline/magicline.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/readonly.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/replacebyclass.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/replacebycode.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/sample.css
+%%WWWDIR%%/scripts/ckeditor/samples/old/sample.js
+%%WWWDIR%%/scripts/ckeditor/samples/old/sample_posteddata.php
+%%WWWDIR%%/scripts/ckeditor/samples/old/tabindex.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/toolbar/toolbar.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/uicolor.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/uilanguages.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/wysiwygarea/fullpage.html
+%%WWWDIR%%/scripts/ckeditor/samples/old/xhtmlstyle.html
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/css/fontello.css
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/config.json
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.eot
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.svg
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.ttf
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/font/fontello.woff
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/index.html
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css
+%%WWWDIR%%/scripts/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js
+%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie7.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_ie8.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/dialog_iequirks.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_gecko.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie7.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_ie8.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/editor_iequirks.css
+%%WWWDIR%%/scripts/ckeditor/skins/moono/icons.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/icons_hidpi.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/arrow.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/close.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/close.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/lock-open.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/lock.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/hidpi/refresh.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/lock-open.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/lock.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/refresh.png
+%%WWWDIR%%/scripts/ckeditor/skins/moono/images/spinner.gif
+%%WWWDIR%%/scripts/ckeditor/skins/moono/readme.md
+%%WWWDIR%%/scripts/ckeditor/styles.js
+%%WWWDIR%%/scripts/dnd.js
+%%WWWDIR%%/scripts/elcode.js
+%%WWWDIR%%/scripts/im.js
+%%WWWDIR%%/scripts/jquery-1.11.1.min.js
+%%WWWDIR%%/scripts/load-ckeditor.js
+%%WWWDIR%%/scripts/progress/progress.min.js
+%%WWWDIR%%/scripts/progress/progressjs.min.css
+@dir %%WWWDIR%%/ssl
+%%WWWDIR%%/themes/default/all_entry.png
+%%WWWDIR%%/themes/default/attachment.png
+%%WWWDIR%%/themes/default/cal.png
+%%WWWDIR%%/themes/default/cal_next.png
+%%WWWDIR%%/themes/default/cal_prev.png
+%%WWWDIR%%/themes/default/clock.png
+%%WWWDIR%%/themes/default/compact.css
+%%WWWDIR%%/themes/default/delete.png
+%%WWWDIR%%/themes/default/down.png
+%%WWWDIR%%/themes/default/edit.png
+%%WWWDIR%%/themes/default/elog.css
+%%WWWDIR%%/themes/default/elog.png
+%%WWWDIR%%/themes/default/entry.png
+%%WWWDIR%%/themes/default/favicon.ico
+%%WWWDIR%%/themes/default/favicon.png
+%%WWWDIR%%/themes/default/first.png
+%%WWWDIR%%/themes/default/icons/arrow.png
+%%WWWDIR%%/themes/default/icons/astonished.png
+%%WWWDIR%%/themes/default/icons/attn.png
+%%WWWDIR%%/themes/default/icons/biggrin.png
+%%WWWDIR%%/themes/default/icons/bulb.png
+%%WWWDIR%%/themes/default/icons/confused.png
+%%WWWDIR%%/themes/default/icons/cool.png
+%%WWWDIR%%/themes/default/icons/crying.png
+%%WWWDIR%%/themes/default/icons/elc_anchor.png
+%%WWWDIR%%/themes/default/icons/elc_arrow.png
+%%WWWDIR%%/themes/default/icons/elc_astonished.png
+%%WWWDIR%%/themes/default/icons/elc_biggrin.png
+%%WWWDIR%%/themes/default/icons/elc_bold.png
+%%WWWDIR%%/themes/default/icons/elc_center.png
+%%WWWDIR%%/themes/default/icons/elc_clock.png
+%%WWWDIR%%/themes/default/icons/elc_code.png
+%%WWWDIR%%/themes/default/icons/elc_confused.png
+%%WWWDIR%%/themes/default/icons/elc_cool.png
+%%WWWDIR%%/themes/default/icons/elc_crying.png
+%%WWWDIR%%/themes/default/icons/elc_delatt.png
+%%WWWDIR%%/themes/default/icons/elc_email.png
+%%WWWDIR%%/themes/default/icons/elc_frown.png
+%%WWWDIR%%/themes/default/icons/elc_happy.png
+%%WWWDIR%%/themes/default/icons/elc_heading.png
+%%WWWDIR%%/themes/default/icons/elc_image.png
+%%WWWDIR%%/themes/default/icons/elc_italic.png
+%%WWWDIR%%/themes/default/icons/elc_larger.png
+%%WWWDIR%%/themes/default/icons/elc_line.png
+%%WWWDIR%%/themes/default/icons/elc_list.png
+%%WWWDIR%%/themes/default/icons/elc_mad.png
+%%WWWDIR%%/themes/default/icons/elc_original.png
+%%WWWDIR%%/themes/default/icons/elc_pleased.png
+%%WWWDIR%%/themes/default/icons/elc_quote.png
+%%WWWDIR%%/themes/default/icons/elc_rotleft.png
+%%WWWDIR%%/themes/default/icons/elc_rotright.png
+%%WWWDIR%%/themes/default/icons/elc_smaller.png
+%%WWWDIR%%/themes/default/icons/elc_smile.png
+%%WWWDIR%%/themes/default/icons/elc_table.png
+%%WWWDIR%%/themes/default/icons/elc_tongue.png
+%%WWWDIR%%/themes/default/icons/elc_underline.png
+%%WWWDIR%%/themes/default/icons/elc_url.png
+%%WWWDIR%%/themes/default/icons/elc_wink.png
+%%WWWDIR%%/themes/default/icons/elc_yawn.png
+%%WWWDIR%%/themes/default/icons/eld_anchor.png
+%%WWWDIR%%/themes/default/icons/eld_arrow.png
+%%WWWDIR%%/themes/default/icons/eld_astonished.png
+%%WWWDIR%%/themes/default/icons/eld_biggrin.png
+%%WWWDIR%%/themes/default/icons/eld_bold.png
+%%WWWDIR%%/themes/default/icons/eld_center.png
+%%WWWDIR%%/themes/default/icons/eld_clock.png
+%%WWWDIR%%/themes/default/icons/eld_code.png
+%%WWWDIR%%/themes/default/icons/eld_confused.png
+%%WWWDIR%%/themes/default/icons/eld_cool.png
+%%WWWDIR%%/themes/default/icons/eld_crying.png
+%%WWWDIR%%/themes/default/icons/eld_delatt.png
+%%WWWDIR%%/themes/default/icons/eld_email.png
+%%WWWDIR%%/themes/default/icons/eld_frown.png
+%%WWWDIR%%/themes/default/icons/eld_happy.png
+%%WWWDIR%%/themes/default/icons/eld_heading.png
+%%WWWDIR%%/themes/default/icons/eld_image.png
+%%WWWDIR%%/themes/default/icons/eld_italic.png
+%%WWWDIR%%/themes/default/icons/eld_larger.png
+%%WWWDIR%%/themes/default/icons/eld_line.png
+%%WWWDIR%%/themes/default/icons/eld_list.png
+%%WWWDIR%%/themes/default/icons/eld_mad.png
+%%WWWDIR%%/themes/default/icons/eld_original.png
+%%WWWDIR%%/themes/default/icons/eld_pleased.png
+%%WWWDIR%%/themes/default/icons/eld_quote.png
+%%WWWDIR%%/themes/default/icons/eld_rotleft.png
+%%WWWDIR%%/themes/default/icons/eld_rotright.png
+%%WWWDIR%%/themes/default/icons/eld_smaller.png
+%%WWWDIR%%/themes/default/icons/eld_smile.png
+%%WWWDIR%%/themes/default/icons/eld_table.png
+%%WWWDIR%%/themes/default/icons/eld_tongue.png
+%%WWWDIR%%/themes/default/icons/eld_underline.png
+%%WWWDIR%%/themes/default/icons/eld_url.png
+%%WWWDIR%%/themes/default/icons/eld_wink.png
+%%WWWDIR%%/themes/default/icons/eld_yawn.png
+%%WWWDIR%%/themes/default/icons/frown.png
+%%WWWDIR%%/themes/default/icons/happy.png
+%%WWWDIR%%/themes/default/icons/icon1.gif
+%%WWWDIR%%/themes/default/icons/icon1.png
+%%WWWDIR%%/themes/default/icons/icon10.gif
+%%WWWDIR%%/themes/default/icons/icon10.png
+%%WWWDIR%%/themes/default/icons/icon11.gif
+%%WWWDIR%%/themes/default/icons/icon11.png
+%%WWWDIR%%/themes/default/icons/icon12.gif
+%%WWWDIR%%/themes/default/icons/icon12.png
+%%WWWDIR%%/themes/default/icons/icon13.gif
+%%WWWDIR%%/themes/default/icons/icon13.png
+%%WWWDIR%%/themes/default/icons/icon14.gif
+%%WWWDIR%%/themes/default/icons/icon14.png
+%%WWWDIR%%/themes/default/icons/icon2.gif
+%%WWWDIR%%/themes/default/icons/icon2.png
+%%WWWDIR%%/themes/default/icons/icon3.gif
+%%WWWDIR%%/themes/default/icons/icon3.png
+%%WWWDIR%%/themes/default/icons/icon4.gif
+%%WWWDIR%%/themes/default/icons/icon4.png
+%%WWWDIR%%/themes/default/icons/icon5.gif
+%%WWWDIR%%/themes/default/icons/icon5.png
+%%WWWDIR%%/themes/default/icons/icon6.gif
+%%WWWDIR%%/themes/default/icons/icon6.png
+%%WWWDIR%%/themes/default/icons/icon7.gif
+%%WWWDIR%%/themes/default/icons/icon7.png
+%%WWWDIR%%/themes/default/icons/icon8.gif
+%%WWWDIR%%/themes/default/icons/icon8.png
+%%WWWDIR%%/themes/default/icons/icon9.gif
+%%WWWDIR%%/themes/default/icons/icon9.png
+%%WWWDIR%%/themes/default/icons/mad.png
+%%WWWDIR%%/themes/default/icons/paper.png
+%%WWWDIR%%/themes/default/icons/pleased.png
+%%WWWDIR%%/themes/default/icons/question.png
+%%WWWDIR%%/themes/default/icons/smile.png
+%%WWWDIR%%/themes/default/icons/thmbdown.png
+%%WWWDIR%%/themes/default/icons/thmbup.png
+%%WWWDIR%%/themes/default/icons/tongue.png
+%%WWWDIR%%/themes/default/icons/wink.png
+%%WWWDIR%%/themes/default/icons/yawn.png
+%%WWWDIR%%/themes/default/last.png
+%%WWWDIR%%/themes/default/lock.png
+%%WWWDIR%%/themes/default/new_entry.png
+%%WWWDIR%%/themes/default/next.png
+%%WWWDIR%%/themes/default/previous.png
+%%WWWDIR%%/themes/default/reply.png
+%%WWWDIR%%/themes/default/stop.png
+%%WWWDIR%%/themes/default/tiny.css
+%%WWWDIR%%/themes/default/up.png



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409162020.48GKKOX9062586>