History log of /dokuwiki/lib/tpl/ (Results 126 – 150 of 678)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8ff80ee328-Feb-2017 phy25 <git@phy25.com>

translation update


/dokuwiki/data/deleted.files
/dokuwiki/doku.php
/dokuwiki/inc/lang/ca/subscr_single.txt
/dokuwiki/inc/lang/de-informal/lang.php
/dokuwiki/inc/lang/fr/lang.php
/dokuwiki/inc/lang/nl/lang.php
/dokuwiki/inc/lang/ru/lang.php
/dokuwiki/inc/lang/zh/lang.php
/dokuwiki/inc/lang/zh/stopwords.txt
/dokuwiki/inc/lang/zh/subscr_digest.txt
/dokuwiki/inc/lang/zh/subscr_list.txt
/dokuwiki/inc/lang/zh/subscr_single.txt
/dokuwiki/install.php
/dokuwiki/lib/plugins/acl/lang/de-informal/lang.php
/dokuwiki/lib/plugins/authad/lang/ca/lang.php
/dokuwiki/lib/plugins/authad/lang/ca/settings.php
/dokuwiki/lib/plugins/authad/lang/de-informal/lang.php
/dokuwiki/lib/plugins/authad/lang/de-informal/settings.php
/dokuwiki/lib/plugins/authad/lang/zh/lang.php
/dokuwiki/lib/plugins/authldap/lang/de-informal/lang.php
/dokuwiki/lib/plugins/authldap/lang/de-informal/settings.php
/dokuwiki/lib/plugins/authldap/lang/zh/settings.php
/dokuwiki/lib/plugins/authmysql/lang/de-informal/lang.php
/dokuwiki/lib/plugins/authmysql/lang/de-informal/settings.php
/dokuwiki/lib/plugins/authpgsql/lang/de-informal/settings.php
/dokuwiki/lib/plugins/authplain/lang/de-informal/lang.php
/dokuwiki/lib/plugins/config/lang/de-informal/lang.php
/dokuwiki/lib/plugins/config/lang/fr/lang.php
/dokuwiki/lib/plugins/config/lang/ru/lang.php
/dokuwiki/lib/plugins/config/lang/zh/intro.txt
/dokuwiki/lib/plugins/config/lang/zh/lang.php
/dokuwiki/lib/plugins/extension/lang/de-informal/intro_install.txt
/dokuwiki/lib/plugins/extension/lang/de-informal/intro_plugins.txt
/dokuwiki/lib/plugins/extension/lang/de-informal/intro_search.txt
/dokuwiki/lib/plugins/extension/lang/de/lang.php
/dokuwiki/lib/plugins/extension/lang/zh/intro_search.txt
/dokuwiki/lib/plugins/extension/lang/zh/intro_templates.txt
/dokuwiki/lib/plugins/extension/lang/zh/lang.php
/dokuwiki/lib/plugins/popularity/lang/de-informal/lang.php
/dokuwiki/lib/plugins/popularity/lang/zh/lang.php
/dokuwiki/lib/plugins/revert/lang/de-informal/lang.php
/dokuwiki/lib/plugins/usermanager/lang/de-informal/lang.php
/dokuwiki/lib/scripts/fileuploaderextended.js
dokuwiki/lang/zh/style.txt
6e0c32d717-Feb-2017 Hella Breitkopf <hella.breitkopf@gmail.com>

translation update

935d40e916-Feb-2017 Marco Hofmann <xenadmin@meinekleinefarm.net>

translation update

9c5f311508-Feb-2017 Andreas Gohr <gohr@cosmocode.de>

admin screen: override fill attribute of paths

When an svg has a fill attribute directly on the path, we need more
specifity to override it.

08ee067106-Feb-2017 Andreas Gohr <andi@splitbrain.org>

added RTL styles

a6fbb60b06-Feb-2017 Andreas Gohr <andi@splitbrain.org>

smaller icons, less vertical space

4027256306-Feb-2017 Andreas Gohr <andi@splitbrain.org>

created distinct create image, optimized images

I used svgo to strip all unneeded cruft from the svgs

fb03ffd306-Feb-2017 Andreas Gohr <andi@splitbrain.org>

made pageToolItem() more flexible

Now any arbitrary attributes can be passed as 4th argument. This way
classes etc could be added by plugins.

db43368006-Feb-2017 Andreas Gohr <andi@splitbrain.org>

adjust the event

This will open up the discussion from #236 again and I'm not sure how to
solve this best.

The TEMPLATE_PAGETOOLS_DISPLAY event is very specific to the dokuwiki
template in theory.

adjust the event

This will open up the discussion from #236 again and I'm not sure how to
solve this best.

The TEMPLATE_PAGETOOLS_DISPLAY event is very specific to the dokuwiki
template in theory. In practice many other templates implemented not
only the same event but also use the same HTML (and often even the same
CSS). Which makes the event more like a core event.

This branch now changes the HTML the event expects back from handlers.
When merged it would immeadiately break all plugins implementing this
event (and by broken I mean the layout/design of the template breaks).

Since the expected data changes, I would argue this should be a new
event or at least be implemented in a way to not break the design by
installing an old plugin and by giving the plugin a chance to know if
it's running on the old or the new code.

This is what this commit does. By changing the view names, old plugins
should not display (because they hopefull do not handle those views) but
gives them an easy way to handle the old and new views in one plugin.

However, I'm not perfectly happy with it, yet.

The way I implemented the new SVG handling is by means of a new class
dokuwiki\template\dokuwiki\tpl which provides a pageToolAction() method.
Plugins could use this method to easily return the proper HTML for the
pagetool items and we could adjust this method later on to make
adjustments to the pagetools without breaking anything again.

However this method is template specific again. While it would possible
for plugins to use this method even when the wiki runs another plugin
emitting the event, it would be a bit weird.

A better way would be for the event to not expect HTML at all, but
instead a data structure of the data currently passed to
pageToolAction(). Templates could then decide to implement the event,
but still render the data in a completely different way...

OTOH this means plugins are no longer free to add whatever they want
into the pagetools. We once argued plugins might want to add submenus or
other fancy stuff there. But in fact no plugin ever did.

If we decide to go this new way of making the event more of a first
class citizen of template development, then we would probably have to
move parts or all of the tpl class back to the core.

show more ...

07932c8c06-Feb-2017 Andreas Gohr <andi@splitbrain.org>

adjusted function name

b4b0a66605-Feb-2017 Andreas Gohr <andi@splitbrain.org>

proper action handling for pagetools

The whole pagetool items are now build in an extra helper class that can
be reused by plugins.

5172d49d05-Feb-2017 Andreas Gohr <andi@splitbrain.org>

first very simple attempt at implementing svg pagetools

todos:

* edit action (and maybe others) use different icons depending on state,
we can't rely on passing $post
* media details screen not a

first very simple attempt at implementing svg pagetools

todos:

* edit action (and maybe others) use different icons depending on state,
we can't rely on passing $post
* media details screen not adjusted, yet
* no RTL styles
* no focus/active styles
* the event needs to be adjusted (maybe throw it away and do a new one)
* some icons are not good (create = edit)
* possibly more

show more ...

5d2e38cb31-Jan-2017 Andreas Gohr <andi@splitbrain.org>

use lower case class names

220b8a2031-Jan-2017 Andreas Gohr <andi@splitbrain.org>

improve admin styling

* use inline-block instead of flexbox
* fix RTL alignments

713faa9421-Jan-2017 Andreas Gohr <andi@splitbrain.org>

Adds proper styling for new Admin UI

3c27983b21-Jan-2017 Andreas Gohr <andi@splitbrain.org>

Use inline SVG for Admin Plugin icons and style them via CSS

This introduces an embedSVG() function that can be used at other places.

3b93167c21-Jan-2017 ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>

Provide icons for plugins in admin menu

Squashed commit of the following:

commit 86183b66c5b53b47e5ddb1e0d1c155c06c331d35
Merge: ebfb1ab1e 4a8f4288e
Author: Andreas Gohr <andi@splitbrain.org>
Date:

Provide icons for plugins in admin menu

Squashed commit of the following:

commit 86183b66c5b53b47e5ddb1e0d1c155c06c331d35
Merge: ebfb1ab1e 4a8f4288e
Author: Andreas Gohr <andi@splitbrain.org>
Date: Sat Jan 21 11:20:32 2017 +0100

Merge branch 'master' of git://github.com/ThisNameIsNotAllowed/dokuwiki into pull-request-1767

* 'master' of git://github.com/ThisNameIsNotAllowed/dokuwiki:
Update admin.php
Update admin.php
Update _admin.css
Update admin.php
Update html.php
Update _admin.css
Update html.php
Update html.php
Update html.php
Update.html
Update html.php
Update admin.php

commit 4a8f4288e61d48156bf9c4a7c49756912e4dac25
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Fri Jan 20 09:25:52 2017 +0100

Update admin.php

Changed the code to check for icons being SVG files.
This should fix php5.3 errors for using method returns straight on.

commit e43b6cae1e12c1d24efae301e6b25f79a660f353
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Fri Jan 20 08:22:41 2017 +0100

Update admin.php

Removed elements that could lead to behaviors that shouldn't occure.

commit 9af82fb6f43a5ce10ba9b54f1d5f5cac644c7611
Merge: b99c67797 0b8d1871c
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Jan 19 16:22:02 2017 +0100

Merge pull request #1 from ThisNameIsNotAllowed/add-c

Added css, forced the author to use ".svg"-files for plugin icons.

commit 0b8d1871c8bd0a02aca3ff56128465e8739c96ea
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Jan 19 16:17:34 2017 +0100

Update _admin.css

fixed some aligning for plugin names.

commit 9158649de99867574471a2b894f8611bb99b9a7f
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Jan 19 15:49:20 2017 +0100

Update admin.php

Added method to return menu icons only in case their mime type matches svg files.

Added warning to getMenuIcon comments telling the user to provide svg only.

commit 6df4e0f41880d40f0e7b1882d26fc647d6d2188e
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Jan 19 15:46:17 2017 +0100

Update html.php

Added code to accept svg files only.
Also changed names of css classes to suit dokuwiki style.

commit 3435abc52ac1dbd4e0cea291a8b30bef722638a6
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Jan 19 15:41:06 2017 +0100

Update _admin.css

Added css for displaying plugin icons.

commit b99c67797eafdb73351f62d2db4c206426b9f828
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Nov 24 14:16:23 2016 +0100

Update html.php

Changed the list of admin plugins.

The icons and plugin names appearance can now be influenced by css.

commit 479c6517ff6fc6010c24b2a285249f3600bc3248
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Thu Nov 24 13:45:08 2016 +0100

Update html.php

Cleaned, due to too much duplicated code.

commit e621fd9788c064cc22385cfa4999a9be588bedc2
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Wed Nov 23 16:26:14 2016 +0100

Update html.php

Changed class name for images shown before plugin names.

commit 9099dac8483fc1aa5a875755ba3dea6e7eb3f280
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Wed Nov 23 16:24:01 2016 +0100

Update.html

Added icon to plugin array

commit faea3ceb7986ecd6d6bad3d8055a388f3810c4b1
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Wed Nov 23 15:56:40 2016 +0100

Update html.php

Added support to display plugin icons in admin menu.

commit 539e60be075ab060d7d57beadc74d94606262a2e
Author: ThisNameIsNotAllowed <ThisNameIsNotAllowed@users.noreply.github.com>
Date: Wed Nov 23 15:51:39 2016 +0100

Update admin.php

Add support for icons in admin menu.

show more ...


/dokuwiki/.gitignore
/dokuwiki/.travis.yml
/dokuwiki/_test/core/DokuWikiTest.php
/dokuwiki/_test/tests/inc/changelog_getlastrevisionat.test.php
/dokuwiki/_test/tests/inc/common_saveWikiText.test.php
/dokuwiki/_test/tests/inc/form/dropdownelement.test.php
/dokuwiki/_test/tests/inc/media_get_from_url.test.php
/dokuwiki/_test/tests/inc/remoteapicore.test.php
/dokuwiki/composer.json
/dokuwiki/composer.lock
/dokuwiki/inc/Form/DropdownElement.php
/dokuwiki/inc/Form/OptGroup.php
/dokuwiki/inc/HTTPClient.php
/dokuwiki/inc/PassHash.class.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/changelog.php
/dokuwiki/inc/common.php
/dokuwiki/inc/html.php
/dokuwiki/inc/lang/ca/lang.php
/dokuwiki/inc/lang/fa/admin.txt
/dokuwiki/inc/lang/fa/denied.txt
/dokuwiki/inc/lang/fa/lang.php
/dokuwiki/inc/lang/fa/locked.txt
/dokuwiki/inc/lang/fa/password.txt
/dokuwiki/inc/lang/fa/preview.txt
/dokuwiki/inc/lang/fa/pwconfirm.txt
/dokuwiki/inc/lang/fa/showrev.txt
/dokuwiki/inc/lang/no/backlinks.txt
/dokuwiki/inc/lang/no/lang.php
/dokuwiki/inc/lang/no/login.txt
/dokuwiki/inc/lang/no/resendpwd.txt
/dokuwiki/inc/lang/ro/lang.php
/dokuwiki/inc/lang/sr/lang.php
/dokuwiki/inc/lang/sr/updateprofile.txt
/dokuwiki/inc/lang/zh/lang.php
/dokuwiki/inc/load.php
/dokuwiki/inc/media.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/lib/exe/css.php
/dokuwiki/lib/exe/xmlrpc.php
/dokuwiki/lib/plugins/acl/lang/ca/lang.php
/dokuwiki/lib/plugins/acl/lang/ro/lang.php
/dokuwiki/lib/plugins/acl/lang/sr/lang.php
/dokuwiki/lib/plugins/admin.php
/dokuwiki/lib/plugins/authad/lang/ca/lang.php
/dokuwiki/lib/plugins/authad/lang/de/settings.php
/dokuwiki/lib/plugins/authad/lang/it/settings.php
/dokuwiki/lib/plugins/authad/lang/no/lang.php
/dokuwiki/lib/plugins/authad/lang/no/settings.php
/dokuwiki/lib/plugins/authad/lang/ro/lang.php
/dokuwiki/lib/plugins/authad/lang/zh/settings.php
/dokuwiki/lib/plugins/authldap/auth.php
/dokuwiki/lib/plugins/authldap/lang/no/lang.php
/dokuwiki/lib/plugins/authldap/lang/no/settings.php
/dokuwiki/lib/plugins/authmysql/lang/no/lang.php
/dokuwiki/lib/plugins/authmysql/lang/no/settings.php
/dokuwiki/lib/plugins/authpdo/_test/mysql/mybb.php
/dokuwiki/lib/plugins/authpdo/_test/mysql/mybb.sql
/dokuwiki/lib/plugins/authpdo/_test/sqlite.test.php
/dokuwiki/lib/plugins/authpdo/auth.php
/dokuwiki/lib/plugins/authpdo/conf/default.php
/dokuwiki/lib/plugins/authpdo/conf/metadata.php
/dokuwiki/lib/plugins/authpdo/lang/en/settings.php
/dokuwiki/lib/plugins/authpdo/plugin.info.txt
/dokuwiki/lib/plugins/authpgsql/lang/no/settings.php
/dokuwiki/lib/plugins/authplain/lang/ca/lang.php
/dokuwiki/lib/plugins/authplain/lang/de/lang.php
/dokuwiki/lib/plugins/authplain/lang/no/lang.php
/dokuwiki/lib/plugins/authplain/lang/ro/lang.php
/dokuwiki/lib/plugins/authplain/lang/sr/lang.php
/dokuwiki/lib/plugins/authplain/lang/zh/lang.php
/dokuwiki/lib/plugins/config/lang/ca/lang.php
/dokuwiki/lib/plugins/config/lang/it/lang.php
/dokuwiki/lib/plugins/config/lang/no/intro.txt
/dokuwiki/lib/plugins/config/lang/no/lang.php
/dokuwiki/lib/plugins/config/lang/ro/lang.php
/dokuwiki/lib/plugins/config/lang/sr/lang.php
/dokuwiki/lib/plugins/config/lang/zh/lang.php
/dokuwiki/lib/plugins/extension/lang/no/intro_install.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_plugins.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_search.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_templates.txt
/dokuwiki/lib/plugins/extension/lang/no/lang.php
/dokuwiki/lib/plugins/popularity/lang/ca/lang.php
/dokuwiki/lib/plugins/popularity/lang/no/intro.txt
/dokuwiki/lib/plugins/popularity/lang/no/lang.php
/dokuwiki/lib/plugins/popularity/lang/ro/lang.php
/dokuwiki/lib/plugins/popularity/lang/sr/lang.php
/dokuwiki/lib/plugins/revert/lang/ca/lang.php
/dokuwiki/lib/plugins/revert/lang/no/intro.txt
/dokuwiki/lib/plugins/revert/lang/no/lang.php
/dokuwiki/lib/plugins/revert/lang/ro/lang.php
/dokuwiki/lib/plugins/revert/lang/sr/lang.php
/dokuwiki/lib/plugins/styling/lang/no/intro.txt
/dokuwiki/lib/plugins/styling/lang/no/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ca/lang.php
/dokuwiki/lib/plugins/usermanager/lang/de/lang.php
/dokuwiki/lib/plugins/usermanager/lang/no/import.txt
/dokuwiki/lib/plugins/usermanager/lang/no/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ro/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sr/lang.php
dokuwiki/css/_admin.css
/dokuwiki/vendor/composer/ClassLoader.php
/dokuwiki/vendor/composer/LICENSE
/dokuwiki/vendor/composer/autoload_files.php
/dokuwiki/vendor/composer/autoload_psr4.php
/dokuwiki/vendor/composer/autoload_real.php
/dokuwiki/vendor/composer/autoload_static.php
/dokuwiki/vendor/composer/installed.json
/dokuwiki/vendor/easybook/geshi/geshi/css.php
/dokuwiki/vendor/easybook/geshi/geshi/php-brief.php
/dokuwiki/vendor/easybook/geshi/geshi/php.php
/dokuwiki/vendor/paragonie/random_compat/LICENSE
/dokuwiki/vendor/paragonie/random_compat/composer.json
/dokuwiki/vendor/paragonie/random_compat/lib/byte_safe_strings.php
/dokuwiki/vendor/paragonie/random_compat/lib/cast_to_int.php
/dokuwiki/vendor/paragonie/random_compat/lib/error_polyfill.php
/dokuwiki/vendor/paragonie/random_compat/lib/random.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_int.php
/dokuwiki/vendor/phpseclib/phpseclib/AUTHORS
/dokuwiki/vendor/phpseclib/phpseclib/LICENSE
/dokuwiki/vendor/phpseclib/phpseclib/README.md
/dokuwiki/vendor/phpseclib/phpseclib/composer.json
/dokuwiki/vendor/phpseclib/phpseclib/composer.lock
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Element.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/X509.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/Identity.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf
5170fe9926-Nov-2016 Andreas Gohr <andi@splitbrain.org>

replace deprecated bind() calls

The bind() call is deprecated in jQuery 3. This replaces it with
the on() call.

46b9e00726-Nov-2016 Andreas Gohr <andi@splitbrain.org>

fixed radio options in media manager for new jQ-UI

jQuery UI replaced the buttonset widget with a controlgroup widget. This
adjusts the JavaScript and styling accordingly.


/dokuwiki/.gitignore
/dokuwiki/.travis.yml
/dokuwiki/_test/tests/inc/changelog_getlastrevisionat.test.php
/dokuwiki/composer.json
/dokuwiki/composer.lock
/dokuwiki/inc/PassHash.class.php
/dokuwiki/inc/auth.php
/dokuwiki/inc/changelog.php
/dokuwiki/inc/common.php
/dokuwiki/inc/lang/af/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ar/jquery.ui.datepicker.js
/dokuwiki/inc/lang/az/jquery.ui.datepicker.js
/dokuwiki/inc/lang/bg/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ca/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ca/lang.php
/dokuwiki/inc/lang/cs/jquery.ui.datepicker.js
/dokuwiki/inc/lang/cy/jquery.ui.datepicker.js
/dokuwiki/inc/lang/da/jquery.ui.datepicker.js
/dokuwiki/inc/lang/de-informal/jquery.ui.datepicker.js
/dokuwiki/inc/lang/de/jquery.ui.datepicker.js
/dokuwiki/inc/lang/el/jquery.ui.datepicker.js
/dokuwiki/inc/lang/eo/jquery.ui.datepicker.js
/dokuwiki/inc/lang/es/jquery.ui.datepicker.js
/dokuwiki/inc/lang/et/jquery.ui.datepicker.js
/dokuwiki/inc/lang/eu/jquery.ui.datepicker.js
/dokuwiki/inc/lang/fa/jquery.ui.datepicker.js
/dokuwiki/inc/lang/fi/jquery.ui.datepicker.js
/dokuwiki/inc/lang/fo/jquery.ui.datepicker.js
/dokuwiki/inc/lang/fr/jquery.ui.datepicker.js
/dokuwiki/inc/lang/gl/jquery.ui.datepicker.js
/dokuwiki/inc/lang/he/jquery.ui.datepicker.js
/dokuwiki/inc/lang/hi/jquery.ui.datepicker.js
/dokuwiki/inc/lang/hr/jquery.ui.datepicker.js
/dokuwiki/inc/lang/hu/jquery.ui.datepicker.js
/dokuwiki/inc/lang/id/jquery.ui.datepicker.js
/dokuwiki/inc/lang/is/jquery.ui.datepicker.js
/dokuwiki/inc/lang/it/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ja/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ka/jquery.ui.datepicker.js
/dokuwiki/inc/lang/kk/jquery.ui.datepicker.js
/dokuwiki/inc/lang/km/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ko/jquery.ui.datepicker.js
/dokuwiki/inc/lang/lb/jquery.ui.datepicker.js
/dokuwiki/inc/lang/lt/jquery.ui.datepicker.js
/dokuwiki/inc/lang/lv/jquery.ui.datepicker.js
/dokuwiki/inc/lang/mk/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ml/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ms/jquery.ui.datepicker.js
/dokuwiki/inc/lang/nl/jquery.ui.datepicker.js
/dokuwiki/inc/lang/no/backlinks.txt
/dokuwiki/inc/lang/no/jquery.ui.datepicker.js
/dokuwiki/inc/lang/no/lang.php
/dokuwiki/inc/lang/no/login.txt
/dokuwiki/inc/lang/no/resendpwd.txt
/dokuwiki/inc/lang/pl/jquery.ui.datepicker.js
/dokuwiki/inc/lang/pt-br/jquery.ui.datepicker.js
/dokuwiki/inc/lang/pt/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ro/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ro/lang.php
/dokuwiki/inc/lang/ru/jquery.ui.datepicker.js
/dokuwiki/inc/lang/sk/jquery.ui.datepicker.js
/dokuwiki/inc/lang/sl/jquery.ui.datepicker.js
/dokuwiki/inc/lang/sq/jquery.ui.datepicker.js
/dokuwiki/inc/lang/sr/jquery.ui.datepicker.js
/dokuwiki/inc/lang/sr/lang.php
/dokuwiki/inc/lang/sr/updateprofile.txt
/dokuwiki/inc/lang/sv/jquery.ui.datepicker.js
/dokuwiki/inc/lang/ta/jquery.ui.datepicker.js
/dokuwiki/inc/lang/th/jquery.ui.datepicker.js
/dokuwiki/inc/lang/tr/jquery.ui.datepicker.js
/dokuwiki/inc/lang/uk/jquery.ui.datepicker.js
/dokuwiki/inc/lang/vi/jquery.ui.datepicker.js
/dokuwiki/inc/lang/zh-tw/jquery.ui.datepicker.js
/dokuwiki/inc/lang/zh/jquery.ui.datepicker.js
/dokuwiki/inc/lang/zh/lang.php
/dokuwiki/inc/load.php
/dokuwiki/inc/parser/handler.php
/dokuwiki/inc/parser/xhtml.php
/dokuwiki/lib/exe/xmlrpc.php
/dokuwiki/lib/plugins/acl/lang/ca/lang.php
/dokuwiki/lib/plugins/acl/lang/ro/lang.php
/dokuwiki/lib/plugins/acl/lang/sr/lang.php
/dokuwiki/lib/plugins/authad/lang/ca/lang.php
/dokuwiki/lib/plugins/authad/lang/de/settings.php
/dokuwiki/lib/plugins/authad/lang/no/lang.php
/dokuwiki/lib/plugins/authad/lang/no/settings.php
/dokuwiki/lib/plugins/authad/lang/ro/lang.php
/dokuwiki/lib/plugins/authldap/auth.php
/dokuwiki/lib/plugins/authldap/lang/no/lang.php
/dokuwiki/lib/plugins/authldap/lang/no/settings.php
/dokuwiki/lib/plugins/authmysql/lang/no/lang.php
/dokuwiki/lib/plugins/authmysql/lang/no/settings.php
/dokuwiki/lib/plugins/authpdo/_test/mysql/mybb.php
/dokuwiki/lib/plugins/authpdo/_test/mysql/mybb.sql
/dokuwiki/lib/plugins/authpdo/auth.php
/dokuwiki/lib/plugins/authpdo/conf/default.php
/dokuwiki/lib/plugins/authpdo/conf/metadata.php
/dokuwiki/lib/plugins/authpdo/lang/en/settings.php
/dokuwiki/lib/plugins/authpdo/plugin.info.txt
/dokuwiki/lib/plugins/authpgsql/lang/no/settings.php
/dokuwiki/lib/plugins/authplain/lang/ca/lang.php
/dokuwiki/lib/plugins/authplain/lang/de/lang.php
/dokuwiki/lib/plugins/authplain/lang/no/lang.php
/dokuwiki/lib/plugins/authplain/lang/ro/lang.php
/dokuwiki/lib/plugins/authplain/lang/sr/lang.php
/dokuwiki/lib/plugins/authplain/lang/zh/lang.php
/dokuwiki/lib/plugins/config/lang/ca/lang.php
/dokuwiki/lib/plugins/config/lang/no/intro.txt
/dokuwiki/lib/plugins/config/lang/no/lang.php
/dokuwiki/lib/plugins/config/lang/ro/lang.php
/dokuwiki/lib/plugins/config/lang/sr/lang.php
/dokuwiki/lib/plugins/config/lang/zh/lang.php
/dokuwiki/lib/plugins/extension/lang/no/intro_install.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_plugins.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_search.txt
/dokuwiki/lib/plugins/extension/lang/no/intro_templates.txt
/dokuwiki/lib/plugins/extension/lang/no/lang.php
/dokuwiki/lib/plugins/popularity/lang/ca/lang.php
/dokuwiki/lib/plugins/popularity/lang/no/intro.txt
/dokuwiki/lib/plugins/popularity/lang/no/lang.php
/dokuwiki/lib/plugins/popularity/lang/ro/lang.php
/dokuwiki/lib/plugins/popularity/lang/sr/lang.php
/dokuwiki/lib/plugins/revert/lang/ca/lang.php
/dokuwiki/lib/plugins/revert/lang/no/intro.txt
/dokuwiki/lib/plugins/revert/lang/no/lang.php
/dokuwiki/lib/plugins/revert/lang/ro/lang.php
/dokuwiki/lib/plugins/revert/lang/sr/lang.php
/dokuwiki/lib/plugins/styling/lang/no/intro.txt
/dokuwiki/lib/plugins/styling/lang/no/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ca/lang.php
/dokuwiki/lib/plugins/usermanager/lang/de/lang.php
/dokuwiki/lib/plugins/usermanager/lang/no/import.txt
/dokuwiki/lib/plugins/usermanager/lang/no/lang.php
/dokuwiki/lib/plugins/usermanager/lang/ro/lang.php
/dokuwiki/lib/plugins/usermanager/lang/sr/lang.php
/dokuwiki/lib/scripts/jquery/jquery-migrate.js
/dokuwiki/lib/scripts/jquery/jquery-migrate.min.js
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_65_ffffff_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_75_dadada_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_75_e6e6e6_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_95_fef1ec_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_222222_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_2e83ff_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_454545_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_888888_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_cd0a0a_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/smoothness.css
/dokuwiki/lib/scripts/jquery/jquery-ui.js
/dokuwiki/lib/scripts/jquery/jquery-ui.min.js
/dokuwiki/lib/scripts/jquery/jquery.js
/dokuwiki/lib/scripts/jquery/jquery.min.js
/dokuwiki/lib/scripts/jquery/update.sh
/dokuwiki/lib/scripts/media.js
dokuwiki/css/_media_fullscreen.css
/dokuwiki/vendor/autoload.php
/dokuwiki/vendor/composer/ClassLoader.php
/dokuwiki/vendor/composer/LICENSE
/dokuwiki/vendor/composer/autoload_files.php
/dokuwiki/vendor/composer/autoload_real.php
/dokuwiki/vendor/composer/autoload_static.php
/dokuwiki/vendor/composer/installed.json
/dokuwiki/vendor/paragonie/random_compat/LICENSE
/dokuwiki/vendor/paragonie/random_compat/composer.json
/dokuwiki/vendor/paragonie/random_compat/lib/byte_safe_strings.php
/dokuwiki/vendor/paragonie/random_compat/lib/cast_to_int.php
/dokuwiki/vendor/paragonie/random_compat/lib/error_polyfill.php
/dokuwiki/vendor/paragonie/random_compat/lib/random.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php
/dokuwiki/vendor/paragonie/random_compat/lib/random_int.php
73d7249710-Oct-2016 Radimir <radimir.shevchenko@gmail.com>

translation update

909860c403-Oct-2016 Eric <ericstevenart@netc.fr>

translation update

320c434e01-Oct-2016 Arne Hanssen <arne.hanssen@getmail.no>

translation update

636c144d21-Sep-2016 KeenRivals <KeenRivals@users.noreply.github.com>

Add height: auto to video element css

5433364218-Sep-2016 Davor Turkalj <turki.bsc@gmail.com>

translation update


/dokuwiki/.travis.yml
/dokuwiki/inc/lang/hr/admin.txt
/dokuwiki/inc/lang/hr/backlinks.txt
/dokuwiki/inc/lang/hr/conflict.txt
/dokuwiki/inc/lang/hr/denied.txt
/dokuwiki/inc/lang/hr/diff.txt
/dokuwiki/inc/lang/hr/draft.txt
/dokuwiki/inc/lang/hr/edit.txt
/dokuwiki/inc/lang/hr/editrev.txt
/dokuwiki/inc/lang/hr/lang.php
/dokuwiki/inc/lang/hr/mailtext.txt
/dokuwiki/inc/lang/hr/norev.txt
/dokuwiki/inc/lang/hr/preview.txt
/dokuwiki/inc/lang/hr/resendpwd.txt
/dokuwiki/inc/lang/hr/revisions.txt
/dokuwiki/inc/lang/hr/stopwords.txt
/dokuwiki/inc/lang/hr/subscr_digest.txt
/dokuwiki/inc/lang/hr/subscr_single.txt
/dokuwiki/inc/lang/hr/uploadmail.txt
/dokuwiki/inc/lang/nl/adminplugins.txt
/dokuwiki/inc/lang/nl/conflict.txt
/dokuwiki/inc/lang/nl/edit.txt
/dokuwiki/inc/lang/nl/lang.php
/dokuwiki/inc/lessc.inc.php
/dokuwiki/inc/template.php
/dokuwiki/lib/plugins/acl/lang/hr/lang.php
/dokuwiki/lib/plugins/authad/lang/hr/lang.php
/dokuwiki/lib/plugins/authad/lang/hr/settings.php
/dokuwiki/lib/plugins/authldap/lang/hr/lang.php
/dokuwiki/lib/plugins/authldap/lang/hr/settings.php
/dokuwiki/lib/plugins/authmysql/lang/hr/lang.php
/dokuwiki/lib/plugins/authmysql/lang/hr/settings.php
/dokuwiki/lib/plugins/authpgsql/lang/hr/settings.php
/dokuwiki/lib/plugins/config/lang/hr/intro.txt
/dokuwiki/lib/plugins/config/lang/hr/lang.php
/dokuwiki/lib/plugins/extension/lang/hr/lang.php
/dokuwiki/lib/plugins/popularity/lang/hr/lang.php
/dokuwiki/lib/plugins/revert/lang/hr/lang.php
/dokuwiki/lib/plugins/styling/lang/hr/lang.php
/dokuwiki/lib/plugins/usermanager/lang/hr/lang.php
dokuwiki/lang/hr/lang.php
d785a18025-Aug-2016 Daniel Slováček <danslo@danslo.cz>

translation update

12345678910>>...28