summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2016-01-08Update py-flask-security to 1.7.5.kleink2-7/+7
Version 1.7.5 ------------- Released December 2nd 2015 - Added `SECURITY_TOKEN_MAX_AGE` configuration setting - Fixed calls to `SQLAlchemyUserDatastore.get_user(None)` (this now returns `False` instead of raising a `TypeError` - Fixed URL generation adding extra slashes in some cases (see GitHub #343) - Fixed handling of trackable IP addresses when the `X-Forwarded-For` header contains multiple values - Include WWW-Authenticate headers in `@auth_required` authentication checks - Fixed error when `check_token` function is used with a json list - Added support for custom `AnonymousUser` classes - Restricted `forgot_password` endpoint to anonymous users - Allowed unauthorized callback to be overridden - Fixed issue where passwords cannot be reset if currently set to `None` - Ensured that password reset tokens are invalidated after use - Updated `is_authenticated` and `is_active` functions to support Flask-Login changes - Various documentation improvements
2016-01-08Update py-flask-frozen to 0.12.kleink3-10/+11
Version 0.12 ~~~~~~~~~~~~ Released on 2015-10-05. * Fix `#38 <https://github.com/SimonSapin/Frozen-Flask/issues/38>`_: add ``FREEZER_STATIC_IGNORE`` config option. * Add ``FREEZER_IGNORE_404_NOT_FOUND`` config option.
2016-01-08Update py-flask-uploads to 0.2.0.kleink3-15/+14
No changelog provided; includes several structural updates including the switch from package to module, and a change in maintainer. Backwards Compatibility ======================= Version 0.2.0 ------------- * The `patch_request_class` function was removed as it's unnecessary from Flask 0.6 onward. * Filenames without extensions are no longer lowercased by `lowercase_ext`, only the extension is returned in lowercase, if an extension exists.
2016-01-08Update py-flask-admin to 1.4.0.kleink3-18/+24
1.4.0 ----- * Updated and reworked documentation * FileAdmin went through minor refactoring and now supports remote file systems. Comes with the new, optional, AWS S3 file management interface * Configurable CSV export for model views * Added overridable URL generation logic. Allows using custom URLs with parameters for administrative views * Added column_display_actions to ModelView control visibility of the action column without overriding the template * Added support for the latest MongoEngine * New SecureForm base class for easier CSRF validation * Lots of translation-related fixes and updated translations * Bug fixes
2016-01-08Update py-wtforms to 2.1.kleink3-8/+14
Version 2.1 ----------- Released December 15, 2015 - Added `render_kw` to allow default rendering time options. - Updated / added a number of localizations - Updated docs - Allow widgets to set flags
2016-01-08Update to 6.39wen2-7/+7
Upstream changes: 6.39 2016-01-03 - Updated links to Mojolicious website. - Fixed small html_unescape bug in Mojo::Util. - Fixed handling of invalid max age in Mojo::UserAgent::CookieJar. 6.38 2015-12-19 - Updated prettify.js to version 8-Dec-2015. - Improved form generation in Mojo::UserAgent::Transactor to use UTF-8 as the default charset. 6.37 2015-12-14 - Added protocol and with_protocols methods to Mojo::Transaction::WebSocket. - Fixed a few reference encoding bugs in Mojo::JSON. - Fixed a few form generation bugs in Mojo::UserAgent::Transactor.
2016-01-08Update to 1.71wen2-7/+7
Upstream changes: 2016-01-08 Karen Etheridge <ether@cpan.org> Release 1.71 No changes since 1.70_001 2015-12-29 Karen Etheridge <ether@cpan.org> Release 1.70_001 Kaitlyn Parkhurst: - Localize $@ when attempting to load URI subclasses (PR#30) Karen Etheridge: - speed up construction time by not attempting to load the same non-existent URI subclass twice
2016-01-06Update py-werkzeug and py-werkzeug-docs to 0.11.3.kleink3-10/+8
Version 0.11.3 -------------- Released on December 20th 2015. - Fixed an issue with copy operations not working against proxies. - Changed the logging operations of the development server to correctly log where the server is running in all situations again. - Fixed another regression with SSL wrapping similar to the fix in 0.11.2 but for a different code path.
2016-01-06Revbump after updating graphics/libwebpadam13-22/+26
2016-01-06Changes 6.5:adam2-8/+7
This is a mantenance release to fix an overlaping bug on bytes charts with last versions of browsers like firefox, iceweasel and chrome. - Fix height of bytes graphs that was overlaping on third graph. - Update russian translation. - Update copyright year.
2016-01-03Update otter-browser to 0.9.09kamil6-7/+112
Upstream changes since 0.9.08: added initial support for spell checking; added support for selecting allowed and rejected domains for third-party cookies; added support for customizing visible columns and their order in most of views; added support for customizing text and icon of toolbar entries; added support for adding arbitrary menus to toolbars; some other fixes and minor improvements. Cherry-picked changes suggested by upstream: Always mark dialogs as restored (67c2ae72cc57c) Fallback to QItemDelegate::paint() if type is unknown (fd7380a9eec7) Try to return first address field from the list if none was matched (d1a1b0bbc8d80d0)
2016-01-03Update to newest version 4.4.morr3-72/+159
What's New General * Developer reference - Improvements to inline code documentation. * i18n support - Improvements to translation strings all over the core. * Admin page headings were adjusted from H3 to H2 tags to reinforce page hierarchy * Improvements to how list tables are displayed on all size screens Posts * The post/page permalink UI was simplified, linking the permalink and removing the "View" button Comments * The "View Comment" link was relocated from the Status meta box in the comment-editing screen * Many comment functions can now accept a full object instead of 'comment_ID' to reduce cache/db lookups * Orphaned comments now fall back to the 'edit_posts' capability Appearance * Site icons will now fall back to the 'full' size URL when the 'thumbnail' size doesn't exist Multisite * The language chooser was added to the new site form on wp-signup.php * Sites may no longer be created with the following reserved slugs: wp-admin, wp-content, wp-includes, or wp-json
2016-01-03Changes 1.8.8:adam2-7/+7
Fixed incorrect unique_together field name generation by inspectdb. Corrected __len query lookup on ArrayField for empty arrays. Restored the ability to use custom formats from formats.py with django.utils.formats.get_format() and the date template filter. Fixed a state bug when migrating a SeparateDatabaseAndState operation backwards. Fixed missing varchar/text_pattern_ops index on CharField and TextField respectively when using AlterField on PostgreSQL. Fixed a state bug when using an AlterModelManagers operation. Fixed a regression which prevented using a language not in Django’s default language list (LANGUAGES). django.views.decorators.cache.never_cache() now sends more persuasive headers (added no-cache, no-store, must-revalidate to Cache-Control) to better prevent caching. This fixes a problem where a page refresh in Firefox cleared the selected entries in the admin’s filter_horizontal and filter_vertical widgets, which could result in inadvertent data loss if a user didn’t notice that and then submitted the form. Fixed a regression in the admin which ignored line breaks in read-only fields instead of converting them to <br>. Made loaddata skip disabling and enabling database constraints when it doesn’t load any fixtures. Fixed a crash in QuerySet.values()/values_list() after an annotate() and order_by() when values()/values_list() includes a field not in the order_by()
2016-01-03Update ruby-mechanize to 2.7.4.taca3-14/+15
=== 2.7.4 * New Features * Accept array-like and hash-like values as query/parameter value. A new utility method Mechanize::Util.each_parameter is added, and Mechanize::Util.build_query_string is enhanced for this feature. * Allow passing a `Form::FileUpload` instance to `#post`. #350 by Sam Rawlins. * Capture link when scheme is unsupported. #362 by Jon Rowe. * Pre-defined User-Agent stings are updated to those of more recent versions, and new aliases for IE 10/11 and Edge are added. * Support for mime-types 1.x is restored while keeping compatible with mime-types 2.x and adding support for 3.0. * Mechanize::Page now responds to #xpath, #css, #at_xpath, #at_css, and #%. * element(s)_with methods now accept :xpath and :css options for doing xpath/css selector searching. * Pass URI information to Nokogiri where applicable. #405 @lulalala * Bug fix * Don't raise an exception if a connection has set a {read,open}_timeout and a `file://` request is made. (#397) * Fix whitespace bug in WWW-Authenticate. #451, #450, by Rasmus Bergholdt * Don't allow redirect from a non-file URL to a file URL for security reasons. (#455)
2016-01-03Update ruby-jekyll-sass-converter to 1.4.0.taca2-8/+8
1.4.0 / 2015-12-25 Minor Enhancements Bump Sass to v3.4 and above. (#40) Strip byte order mark from generated compressed Sass/SCSS (#39) Strip BOM by default, but don't add in the @charset by default (#42) Development Fixes Add Jekyll 2 & 3 to test matrix (#41)
2016-01-03Update ruby-httpclient to 2.7.1.taca3-10/+8
pkgsrc changes: * Add completely support for pkg_alternatives (adding ALTERNATIVES). * Remove ruby18 specific description in Makefile. Changes in 2.7.1 Jan 1, 2016 - version 2.7.1 * Changes - Symbol aware header key comparison Normalizes symbol to String for header key. https://github.com/nahi/httpclient/issues/278 - Show warning message only once Added HTTPClient::Util.warning that cached warning message and supress the message if it's already dumped. - Use Timeout.timeout instead of Kernel.timeout that is deprecated from ruby 2.3.0. * Bug fixes - [JRuby] Set ssl_version properly
2016-01-03Update ruby-http to 1.0.1.taca3-9/+8
## 1.0.1 (2015-12-27) * [#283](https://github.com/httprb/http/pull/283): Use io/wait on supported platforms. ([@tarcieri]) ## 1.0.0 (2015-12-25) * [#265](https://github.com/httprb/http/pull/265/): Remove deprecations ([@tarcieri]): - HTTP::Chainable#with_follow (use #follow) - HTTP::Chainable#with, #with_headers (use #headers) - HTTP::Chainable#auth(:basic, ...) (use #basic_auth) - HTTP::Chainable#default_headers (use #default_options[:headers]) - HTTP::Headers#append (use #add) - HTTP::Options#[] hash-like API deprecated in favor of explicit methods - HTTP::Request#request_header (use #headline) - HTTP::Response::STATUS_CODES (use HTTP::Status::REASONS) - HTTP::Response::SYMBOL_TO_STATUS_CODE (no replacement) - HTTP::Response#status_code (use #status or #code) - HTTP::Response::Status#symbolize (use #to_sym) * [#269](https://github.com/httprb/http/pull/273/): Close connection in case of error during request. ([@ixti]) * [#271](https://github.com/httprb/http/pull/273/): High-level exception wrappers for low-level I/O errors. ([@ixti]) * [#273](https://github.com/httprb/http/pull/273/): Add encoding option. ([@connorhd]) * [#275](https://github.com/httprb/http/pull/273/): Support for disabling Nagle's algorithm with `HTTP.nodelay`. ([@nerdrew]) * [#276](https://github.com/httprb/http/pull/276) Use Encoding::BINARY as the default encoding for HTTP::Response::Body. ([@tarcieri]) * [#278](https://github.com/httprb/http/pull/278) Use an options hash for HTTP::Request initializer API. ([@ixti]) * [#279](https://github.com/httprb/http/pull/279) Send headers and body in one write if possible. This avoids a pathological case in Nagle's algorithm. ([@tarcieri]) * [#281](https://github.com/httprb/http/pull/281) Remove legacy 'Http' constant alias to 'HTTP'. ([@tarcieri])
2016-01-03Update ruby-em-http-request to 1.1.3.taca3-9/+10
Quote from commit logs: * Reset and close connection on duplicate response. * Rescue from StandardError instead of Exception. * Handle redirects on keep-alive connections. * Fix the issue when redirect url is triggered only after inactivity timeout. * ignore query option when redirecting. * Use Base64.strict_encode64 to not add line feeds. * Cleanup header annotations for rubydocs, closes #281. * Use inferred_port, port can be nil causing connection failures. * Don't modify header for CONNECT style proxies. * fixing specs, cleaning up deprecation warning. * Don't memoize status; http_status may change.
2016-01-02Add two build (test) dependencies that are needed according to upstream.wiz1-1/+3
No change in test results though.
2016-01-02+ py-httpbin, py-test-httpbin.wiz1-1/+3
2016-01-02Import py-test-httpbin-0.2.0 as www/py-test-httpbin.wiz4-0/+64
httpbin is an amazing web service for testing HTTP libraries. It has several great endpoints that can test pretty much everything you need in a HTTP library. The only problem is: maybe you don't want to wait for your tests to travel across the Internet and back to make assertions against a remote web service (speed), and maybe you want to work offline (convenience). Enter pytest-httpbin. Pytest-httpbin creates a pytest fixture that is dependency-injected into your tests. It automatically starts up a HTTP server in a separate thread running httpbin and provides your test with the URL in the fixture.
2016-01-02Import py-httpbin-0.4.0 as www/py-httpbin.wiz5-0/+88
Testing an HTTP Library can become difficult sometimes. RequestBin is fantastic for testing POST requests, but doesn't let you control the response. This exists to cover all kinds of HTTP scenarios. Additional endpoints are being considered. All endpoint responses are JSON-encoded.
2016-01-02Update py-urllib3 to 1.14:wiz3-36/+61
1.14 (2015-12-29) +++++++++++++++++ * contrib: SOCKS proxy support! (Issue #762) * Fixed AppEngine handling of transfer-encoding header and bug in Timeout defaults checking. (Issue #763) 1.13.1 (2015-12-18) +++++++++++++++++++ * Fixed regression in IPv6 + SSL for match_hostname. (Issue #761) 1.13 (2015-12-14) +++++++++++++++++ * Fixed ``pip install urllib3[secure]`` on modern pip. (Issue #706) * pyopenssl: Fixed SSL3_WRITE_PENDING error. (Issue #717) * pyopenssl: Support for TLSv1.1 and TLSv1.2. (Issue #696) * Close connections more defensively on exception. (Issue #734) * Adjusted ``read_chunked`` to handle gzipped, chunk-encoded bodies without repeatedly flushing the decoder, to function better on Jython. (Issue #743) * Accept ``ca_cert_dir`` for SSL-related PoolManager configuration. (Issue #758) 1.12 (2015-09-03) +++++++++++++++++ * Rely on ``six`` for importing ``httplib`` to work around conflicts with other Python 3 shims. (Issue #688) * Add support for directories of certificate authorities, as supported by OpenSSL. (Issue #701) * New exception: ``NewConnectionError``, raised when we fail to establish a new connection, usually ``ECONNREFUSED`` socket error. 1.11 (2015-07-21) +++++++++++++++++ * When ``ca_certs`` is given, ``cert_reqs`` defaults to ``'CERT_REQUIRED'``. (Issue #650) * ``pip install urllib3[secure]`` will install Certifi and PyOpenSSL as dependencies. (Issue #678) * Made ``HTTPHeaderDict`` usable as a ``headers`` input value (Issues #632, #679) * Added `urllib3.contrib.appengine <https://urllib3.readthedocs.org/en/latest/contrib.html#google-app-engine>`_ which has an ``AppEngineManager`` for using ``URLFetch`` in a Google AppEngine environment. (Issue #664) * Dev: Added test suite for AppEngine. (Issue #631) * Fix performance regression when using PyOpenSSL. (Issue #626) * Passing incorrect scheme (e.g. ``foo://``) will raise ``ValueError`` instead of ``AssertionError`` (backwards compatible for now, but please migrate). (Issue #640) * Fix pools not getting replenished when an error occurs during a request using ``release_conn=False``. (Issue #644) * Fix pool-default headers not applying for url-encoded requests like GET. (Issue #657) * log.warning in Python 3 when headers are skipped due to parsing errors. (Issue #642) * Close and discard connections if an error occurs during read. (Issue #660) * Fix host parsing for IPv6 proxies. (Issue #668) * Separate warning type SubjectAltNameWarning, now issued once per host. (Issue #671) * Fix ``httplib.IncompleteRead`` not getting converted to ``ProtocolError`` when using ``HTTPResponse.stream()`` (Issue #674) 1.10.4 (2015-05-03) +++++++++++++++++++ * Migrate tests to Tornado 4. (Issue #594) * Append default warning configuration rather than overwrite. (Issue #603) * Fix streaming decoding regression. (Issue #595) * Fix chunked requests losing state across keep-alive connections. (Issue #599) * Fix hanging when chunked HEAD response has no body. (Issue #605) 1.10.3 (2015-04-21) +++++++++++++++++++ * Emit ``InsecurePlatformWarning`` when SSLContext object is missing. (Issue #558) * Fix regression of duplicate header keys being discarded. (Issue #563) * ``Response.stream()`` returns a generator for chunked responses. (Issue #560) * Set upper-bound timeout when waiting for a socket in PyOpenSSL. (Issue #585) * Work on platforms without `ssl` module for plain HTTP requests. (Issue #587) * Stop relying on the stdlib's default cipher list. (Issue #588) 1.10.2 (2015-02-25) +++++++++++++++++++ * Fix file descriptor leakage on retries. (Issue #548) * Removed RC4 from default cipher list. (Issue #551) * Header performance improvements. (Issue #544) * Fix PoolManager not obeying redirect retry settings. (Issue #553) 1.10.1 (2015-02-10) +++++++++++++++++++ * Pools can be used as context managers. (Issue #545) * Don't re-use connections which experienced an SSLError. (Issue #529) * Don't fail when gzip decoding an empty stream. (Issue #535) * Add sha256 support for fingerprint verification. (Issue #540) * Fixed handling of header values containing commas. (Issue #533)
2015-12-31Update www/liferea to 1.10.17.leot2-8/+7
Changes: * Fixes Github #194: Add source dialog visually broken (reported by k0377) * Fixes Github #195: Out-dated documentation on enclosure download (reported by brian-in-crawford) * Fixes Github #223: Search folder dialog don't show rules (reported by Guido Masella) * Fixes Github #227: Preference dialog fails to load with latest GtkBuilder (patch by Yanko Kaneti) * Fixes Github #234: Segmentation fault upon attempting to add an OPML (reported by GreenLunar) * Fixes compilation error when there is no libnotify * Added debugging for #258: Dialog loading issues (patch by glitsj16)
2015-12-31Update to 43.0.3ryoon2-360/+360
* Sync with firefox-43.0.3
2015-12-31Update to 43.0.3ryoon3-36/+40
* Fix alsa option build, fix PR pkg/50427 Changelog: Fix: Fix network issue when using Nvidia's Network Access Manager (1233237) Fix: On some Windows configurations, improve the decoding of some videos on YouTube (1233970)
2015-12-30Added www/libsass|sassc version 3.3.2adam1-1/+3
2015-12-30SassC is a wrapper around libsass used to generate a useful command-lineadam4-0/+32
application that can be installed and packaged for several operating systems.
2015-12-30LibSass is a C/C++ port of the Sass CSS precompiler. The original version wasadam5-0/+55
written in Ruby, but this version is meant for efficiency and portability. This library strives to be light, simple, and easy to build and integrate with a variety of platforms and languages.
2015-12-30Add pkg_alternatives support which should be added with previous commit.taca2-0/+2
2015-12-29Update libmicrohttpd to 0.9.48:wiz2-7/+7
Fri Dec 18 15:54:50 CET 2015 Releasing libmicrohttpd 0.9.48. -CG Tue Dec 15 18:35:55 CET 2015 Improved compatibility with VS2010 and other older compilers. -EG Tue Dec 8 21:48:44 CET 2015 Default backlog size for listen socket was changed from 32 to SOMAXCONN, added new option MHD_OPTION_LISTEN_BACKLOG_SIZE to override default backlog size. If not all connections can be handled by MHD_select() than at least some of connections will be processed instead of failing without any processing. Fixed redefenition of FD_SETSIZE on W32 so select() will work with 2000 connections instead of 64. Better handled redefenition of FD_SETSIZE on all platforms. -EG Sat Dec 5 17:30:45 CET 2015 Close sockets more aggressively in multi-threaded mode (possibly relevant for idle servers). -CG
2015-12-29Drop checksum for nonexistent patch.dholland1-2/+1
2015-12-29Whitespace.dholland1-7/+7
2015-12-29pkglintdholland1-3/+5
2015-12-29Add missing cvs tag.dholland2-2/+4
2015-12-29Sort.dholland1-5164/+5164
2015-12-28Update to 1.4.38mef2-7/+7
---------------------- - 1.4.38 - 2015-12-05 * [stat-cache] fix handling of collisions, might have returned wrong data (fixes #2669) * [core] allocate at least 4k buffer for incoming data * [core] fix search for header end if split across chunks (fixes #2670) * [core] check configparserAlloc() result with force_assert * [mod_auth] implement and use safe_memclear, using memset_s or explicit_bzero if available (thx loganaden) * [core] don't buffer request bodies smaller than 64k on disk * add force_assert for many allocations and function results * [mod_secdownload] use a hopefully constant time comparison to check hash (fixes #2679) * [config] check config option scope; warn if server option is given in conditional * [core] revert increase of temp file size back to 1MB, provide a configure option "server.upload-temp-file-size" instead (fixes #2680) * [core] add '~' to safe characters in ENCODING_REL_URI/ENCODING_REL_URI_PART encoding * [core] encode path with ENCODING_REL_URI in redirect to directory (fixes #2661, thx gstrauss) * [mod_secdownload] add required algorithm option; old behaviour available as "md5", new options "hmac-sha1" and "hmac-sha256" * [mod_fastcgi/mod_scgi] zero sockaddr structs before use (fixes #2691, thx Kyle J. McKay) * [network] add darwin-sendfile backend (fixes #2687, thx Kyle J. McKay) * [core] show correct crypt support result (fixes #2690, thx Kyle J. McKay)
2015-12-28Changes 1.0.7:adam3-9/+28
revert changes on dashboard adapt changelog [ci skip] fix jumping on mobile devices more comments Revert dashboard and adaptions
2015-12-27Update p5-CGI to 4.25.wiz2-7/+7
4.25 2015-12-17 [ DOCUMENTATION ] - fix link to CONTRIBUTING file (thanks to Manwar for the fix) - clarify that "soft" deprecation means that the HTML functions are deprecated but will not raise any deprecation warnings [ SPEC / BUG FIXES ] - make the list context warning only happen once per process (or thread) to prevent excessive log noise in long running or in persistent processes (thanks to @dadamail for the suggestion) 4.23 2015-12-17 [ DOCUMENTATION ] - add LICENSE file and LICENSE info to Makefile.PL
2015-12-27Update to 4.4ryoon3-78/+163
Changelog: On December 8, 2015, WordPress Version 4.4, named for jazz musician Clifford Brown, was released to the public. For more information on this enhancement and bug-fix release, read the WordPress Blog, and see the Changelog for 4.4. For Version 4.4, the database version (db_version in wp_options) changed to 35700, and the Trac revision was 35842. Highlights twenty-sixteen-white-desktop-1x.png New Default Theme - Twenty Sixteen Modern take on the classic blog design Flexible header and fun color schemes will make your content shine Mobile-first and responsive The Finer Points responsive-devices-desktop-1x.png Responsive images: WordPress now takes a smarter approach to displaying appropriate image sizes on any device, ensuring a perfect fit every time. You don’t need to do anything to your theme, it just works. wp embed preview.png Embed your WordPress content: Now you can embed your posts on other sites, even other WordPress sites. Simply drop a post URL into the editor and see an instant embed preview, complete with the title, excerpt, and featured image if you’ve set one. We’ll even include your site icon and links for comments and sharing. reverbnation embed.png Even more embed providers: In addition to post embeds, WordPress 4.4 also adds support for five new oEmbed providers: Cloudup, Reddit Comments, ReverbNation, Speaker Deck, and VideoPress. For Developers REST API infrastructure: Infrastructure for the REST API has been integrated into core, the first part of a multi-stage rollout. Inclusion of core endpoints is targeted for an upcoming release. To get a sneak peek of the core endpoints, and for more information on extending the REST API, check out the official WordPress REST API plugin. Term meta: Terms now support metadata, just like posts. See add_term_meta(), get_term_meta(), and update_term_meta() for more information. Comment query improvements: Comment queries now have cache handling to improve performance. New arguments in WP_Comment_Query make crafting robust comment queries simpler. Term, comment, and network objects: New WP_Term, WP_Comment, and WP_Network objects make interacting with terms, comments, and networks more predictable and intuitive in code. What's New General Developer reference - Improvements to inline code documentation. i18n support - Improvements to translation strings all over the core. Admin page headings were adjusted from H3 to H2 tags to reinforce page hierarchy Improvements to how list tables are displayed on all size screens Posts The post/page permalink UI was simplified, linking the permalink and removing the "View" button Media Comments The "View Comment" link was relocated from the Status meta box in the comment-editing screen Many comment functions can now accept a full object instead of 'comment_ID' to reduce cache/db lookups Orphaned comments now fall back to the 'edit_posts' capability Appearance Site icons will now fall back to the 'full' size URL when the 'thumbnail' size doesn't exist Users Install Process Multisite The language chooser was added to the new site form on wp-signup.php Sites may no longer be created with the following reserved slugs: wp-admin, wp-content, wp-includes, or wp-json Accessibility Under The Hood General Unclosed HTML elements in shortcode attributes were disallowed HTML was removed from all translatable text strings Rewrite rules are now flushed on theme switch Most core classes were moved to their own files Embeds Add oEmbed support for Cloudup. Add oEmbed support for Reddit Comments. Add oEmbed support for ReverbNation. Add oEmbed support for Speaker Deck. Add oEmbed support for VideoPress. Remove oEmbed support for Blip. JavaScript Customizer: Ensure persistence of unchanged active state for controls, sections, and panels Customizer: Fixed logic for determining the container element when focusing on a panel, section, or control Customizer: Fixed clearing of a color control's setting by using proper empty value Bug Fixes Fail gracefully when checking mapped capabilities against unregistered post types Visibility was restored for the Tags auto-suggest tooltip in Quick Edit The $public_only parameter was added to count_user_posts() Cron: Events are now rejected when the provided $timestamp value is not a valid timestamp Users with no role are now redirected to the home page on login instead of their profile-editing screen Multisite A network can now be retrieved by its ID through WP_Network::get_instance() A network can now be created or completed by passing arguments to WP_Network Network-level capabilities were clarified and some long-time bugs were fixed Classes What's New WP_Comment WP_Comment_Query->$found_comments WP_Comment_Query->$max_num_pages WP_Comment_Query->$meta_query_clauses WP_Comment_Query->$sql_clauses WP_Comment_Query::fill_descendants() WP_Comment_Query::get_comment_ids() WP_Customize_Manager->$autofocus WP_Customize_Manager->$preview_url WP_Customize_Manager->$return_url WP_Customize_Manager::customize_pane_settings() WP_Customize_Manager::get_autofocus() WP_Customize_Manager::get_document_title_template() WP_Customize_Manager::get_preview_url() WP_Customize_Manager::get_return_url() WP_Customize_Manager::is_ios() WP_Customize_Manager::set_autofocus() WP_Customize_Manager::set_preview_url() WP_Customize_Manager::set_return_url() WP_Customize_Setting->$is_multidimensional_aggregated WP_Customize_Setting->$is_previewed WP_Customize_Setting::$aggregated_multidimensionals WP_Customize_Setting::_multidimensional_preview_filter() WP_Customize_Setting::aggregate_multidimensional() get_root_value/ WP_Customize_Setting::get_root_value() id_data/ WP_Customize_Setting::id_data() set_root_value/ WP_Customize_Setting::set_root_value() WP_Customize_Widgets::get_widget_control_parts() WP_Customize_Widgets::is_panel_active() WP_Filesystem_SSH2::sftp_path() WP_HTTP_Response WP_List_Table::get_primary_column() WP_Locale->$start_of_week WP_MS_Sites_List_Table::column_id() WP_MS_Users_List_Table::column_id() WP_Media_List_Table->$comment_pending_count WP_Network WP_Posts_List_Table::get_edit_link() WP_Query->$is_embed WP_Query->$updated_comment_meta_cache WP_Query->$updated_term_meta_cache WP_Query::is_embed() WP_Query::lazyload_comment_meta() WP_Query::lazyload_term_meta() WP_REST_Request WP_REST_Response WP_REST_Server WP_Screen->$_screen_reader_content WP_Screen::get_screen_reader_content() WP_Screen::get_screen_reader_text() WP_Screen::remove_screen_reader_content() WP_Screen::render_list_table_columns_preferences() WP_Screen::render_meta_boxes_preferences() WP_Screen::render_screen_reader_content() WP_Screeb::render_view_mode() WP_Screen::set_screen_reader_content() WP_Term >$update WP_Theme WP_User::__unset() >$request WP_User_Query WP_User_Query::fill_query_vars() WP_Users_List_Table::get_role_list() WP_Widget_Calendar::$instance WP_Widget_Tag_Cloud::_get_current_taxonomy() WP_oEmbed_Controller wpdb->$termmeta Deprecated Functions What's New _prime_comment_caches() add_network_option() add_term_meta() delete_network_option() delete_term_meta() enqueue_embed_scripts() get_header_image_tag() get_html_split_regex() get_network_option() get_oembed_endpoint_url() get_oembed_response_data() get_oembed_response_data_rich() get_password_reset_key() get_post_embed_html() get_post_embed_url() get_preview_post_link() get_rest_url() get_shortcode_atts_regex() get_subdirectory_reserved_names() get_term_meta() get_the_author_posts_link() get_the_comments_navigation() get_the_comments_pagination() get_the_post_thumbnail_url() is_embed() is_post_type_viewable() is_registered_sidebar() map_deep() print_embed_comments_button() print_embed_scripts() print_embed_sharing_button() print_embed_sharing_dialog() print_embed_styles() register_rest_route() rest_api_default_filters() rest_api_init() rest_api_loaded() rest_api_register_rewrites() rest_cookie_check_errors() rest_cookie_collect_status() rest_do_request() rest_ensure_request() rest_ensure_response() rest_get_date_with_gmt() rest_get_url_prefix() rest_handle_deprecated_argument() rest_handle_deprecated_function() rest_handle_options_request() rest_output_link_header() rest_output_link_wp_head() rest_output_rsd() rest_parse_date() rest_send_allow_header() rest_send_cors_headers() rest_url() signup_get_available_languages() strip_fragment_from_url() stripslashes_from_strings_only() the_comments_navigation() the_comments_pagination() the_excerpt_embed() the_header_image_tag() the_post_thumbnail_url() update_network_option() update_term_meta() update_termmeta_cache() urldecode_deep() wp_ajax_delete_inactive_widgets() wp_ajax_generate_password() wp_ajax_save_wporg_username() wp_calculate_image_sizes() wp_calculate_image_srcset() wp_embed_excerpt_attachment() wp_embed_excerpt_attachment() wp_filter_oembed_result() wp_get_attachment_image_sizes() wp_get_attachment_image_srcset() wp_get_attachment_image_url() wp_get_document_title() wp_get_server_protocol() wp_get_users_with_no_role() wp_handle_comment_submission() wp_image_add_srcset_and_sizes() wp_installing() wp_is_numeric_array() wp_make_content_images_responsive() wp_maybe_decline_date() wp_new_comment_notify_moderator() wp_new_comment_notify_postauthor() wp_oembed_add_discovery_links() wp_oembed_add_host_js() wp_oembed_ensure_format() wp_oembed_register_route() wp_parse_url() wp_remote_retrieve_cookie() wp_remote_retrieve_cookie_value() wp_remote_retrieve_cookies() wp_removable_query_args() wp_rest_server_class() wp_send_new_user_notifications() wp_term_is_shared() Deprecated wp_get_http() Actions & Filters New Actions after_password_reset after_signup_site after_signup_user attachment_updated before_signup_header clean_user_cache customize_post_value_set customize_post_value_set_{$setting_id} delete_plugin delete_widget deleted_plugin edit_user_created_user embed_content embed_content_meta embed_footer embed_head enqueue_embed_scripts invite_user manage_posts_extra_tablenav ms_network_not_found network_site_new_created_user network_site_users_created_user network_user_new_created_user page_attributes_meta_box_template post_submitbox_minor_actions pre_auto_update register_new_user rest_api_init wp_add_nav_menu_item wp_mail_failed wp_verify_nonce_failed New Filters admin_post_thumbnail_size comment_excerpt_length comment_form_fields content_pagination customize_loaded_components dashboard_recent_drafts_query_args dashboard_secondary_items default_hidden_columns document_title_parts document_title_separator duplicate_comment_id embed_html embed_oembed_discover embed_site_title_html embed_template embed_thumbnail_image_shape embed_thumbnail_image_size enclosure_links expiration_of_site_transient_{$transient} expiration_of_transient_{$transient} export_wp_filename feed_links_show_comments_feed feed_links_show_posts_feed found_comments_query get_header_image_tag get_page_of_comment get_page_uri get_post_status get_role_list get_sample_permalink get_terms_defaults get_{$adjacent}_post_excluded_terms hidden_columns illegal_user_logins image_get_intermediate_size insert_user_meta max_srcset_image_width mejs_settings nav_menu_item_args nav_menu_item_title navigation_markup_template network_admin_plugin_action_links network_admin_plugin_action_links_{$plugin_file} notify_moderator notify_post_author oembed_discovery_links oembed_endpoint_url oembed_min_max_width oembed_response_data old_slug_redirect_url plugin_action_links plugin_action_links_{$plugin_file} post_edit_category_parent_dropdown_args post_embed_url postmeta_form_keys pre_delete_post pre_get_document_title pre_get_lastpostmodified register_post_type_args register_taxonomy_args respond_link rest_url rest_url_prefix screen_options_show_submit show_network_active_plugins signup_get_available_languages subdirectory_reserved_names submenu_file taxonomy_labels_{$taxonomy} the_category_list the_excerpt_embed update_right_now_text user_profile_picture_description users_list_table_query_args view_mode_post_types wp_calculate_image_sizes wp_calculate_image_srcset wp_dropdown_users_args wp_http_ixr_client_headers wp_post_revision_title_expanded wp_prepare_revision_for_js wp_theme_editor_filetypes xmlrpc_chunk_parsing_size
2015-12-27Update to 43.0.2ryoon2-359/+359
* Sync with firefox-43.0.2
2015-12-27Update to 43.0.2ryoon3-10/+17
* Add OSS support, disabled by default Changelog: 43.0.2: Stability fixes. 43.0.1: Not for non-Microsoft Windows platforms.
2015-12-27Changes with Apache 2.4.18adam2-7/+7
*) mod_ssl: for all ssl_engine_vars.c lookups, fall back to master connection if conn_rec itself holds no valid SSLConnRec*. Fixes 58666. *) mod_http2: connection level window for flow control is set to protocol maximum of 2GB-1, preventing window exhaustion when sending data on many streams with higher cumulative window size. Reducing write frequency unless push promises need to be flushed. *) mod_http2: required minimum version of libnghttp2 is 1.2.1 *) mod_proxy_fdpass: Fix AH01153 error when using the default configuration. In earlier version of httpd, you can explicitelly set the 'flusher' parameter to 'flush' as a workaround. (i.e. flusher=flush) Add documentation for the 'flusher' parameter when defining a proxy worker. *) mod_ssl: For the "SSLStaplingReturnResponderErrors off" case, make sure to only staple responses with certificate status "good". *) mod_http2: new directive 'H2PushPriority' to allow priority specifications on server pushed streams according to their content-type. *) mod_http2: fixes crash on connection abort for a busy connection. fixes crash on a request that did not produce any response. *) mod_http2: trailers are sent after reponse body if set in request_rec trailers_out before the end-of-request bucket is sent through the output filters. *) mod_http2: incoming trailers (headers after request body) are properly forwarded to the processing engine. *) mod_http2: new directive 'H2Push' to en-/disable HTTP/2 server pushes a server/virtual host. Pushes are initiated by the presence of 'Link:' headers with relation 'preload' on a response. *) mod_http2: write performance of http2 improved for larger resources, especially static files. *) core: if the first HTTP/1.1 request on a connection goes to a server that prefers different protocols, these protocols are announced in a Upgrade: header on the response, mentioning the preferred protocols. *) mod_http2: new directives 'H2TLSWarmUpSize' and 'H2TLSCoolDownSecs' to control TLS record sizes during connection lifetime. *) mod_http2: new directive 'H2ModernTLSOnly' to enforce security requirements of RFC 7540 on TLS connections. *) core: add ap_get_protocol_upgrades() to retrieve the list of protocols that a client could possibly upgrade to. Use in first request on a connection to announce protocol choices. *) mod_http2: reworked deallocation on connection shutdown and worker abort. Separate parent pool for all workers. worker threads are joined on planned worker shutdown. *) mod_ssl: when receiving requests for other virtual hosts than the handshake server, the SSL parameters are checked for equality. With equal configuration, requests are passed for processing. Any change will trigger the old behaviour of "421 Misdirected Request". SSL now remembers the cipher suite that was used for the last handshake. This is compared against for any vhost/directory cipher specification. Detailed examination of renegotiation is only done when these do not match. Renegotiation is 403ed when a master connection is present. Exact reason is given additionally in a request note. *) core: Fix scoreboard crash (SIGBUS) on hardware requiring strict 64bit alignment (SPARC64, PPC64). *) mod_cache: Accept HT (Horizontal Tab) when parsing cache related header fields as described in RFC7230. *) core/util_script: making REDIRECT_URL a full URL is now opt-in via new 'QualifyRedirectURL' directive. *) core: Limit to ten the number of tolerated empty lines between request, and consume them before the pipelining check to avoid possible response delay when reading the next request without flushing. *) mod_ssl: Extend expression parser registration to support ssl variables in any expression using mod_rewrite syntax "%{SSL:VARNAME}" or function syntax "ssl(VARNAME)".
2015-12-27Changes 1.6.0:adam2-7/+7
This release fixes heap-use-after-free bug in idle stream handling code. We strongly recommend to upgrade the older installation to this latest version as soon as possible. Other than that we have minor polish up in libnghttp2 code base, and some new features to asio library, and h2load.
2015-12-26Repeat after me: I will double check the PLIST for bad substitutionsjoerg1-3/+3
before committing it.
2015-12-26Update typo3_62 to 6.2.17, a leaf package.taca3-15/+15
2015-12-21 b1ca8df [RELEASE] Release of TYPO3 6.2.17 (TYPO3 Release Team) 2015-12-18 2c7781e #72322 [BUGFIX] Prevent Javascript error for Flexform sections (Oliver Hader) 2015-12-17 b2b531c #72273 [!!!][BUGFIX] Severe data-loss on workspaces publishing action (Oliver Hader) 2015-12-17 f1c4c17 #72285 [BUGFIX] DBAL: use correct default value for native connection (Melanie Kalka) 2015-12-17 dc0134b #72291 [TASK] Extend workspace functional tests on placeholder deletion (Oliver Hader) 2015-12-17 bfa250a #72252 [BUGFIX] substituteMarkerArrayCached() must accept special chars (Markus Klein) 2015-12-17 5c14b25 #72289 [BUGFIX] Missing check before foreach loop (Oliver Hader) 2015-12-17 e6bee88 #72265 [BUGFIX] Disclose exceptions on CLI in production context (Helmut Hummel) 2015-12-16 cc59676 #72256 [TASK] Provide labels for all log types (Anja Leichsenring) 2015-12-16 2b1e896 #72263 [BUGFIX] Empty row in table content element shows &nbsp; (Wouter Wolters)
2015-12-26Update to 1.26.2wen2-8/+8
Upstream changes: MediaWiki 1.26.2 This is a maintenance release of the MediaWiki 1.26 branch. Changes since 1.26.1 (bug T121892) Various special pages resulted in fatal errors.
2015-12-25Update to 8.2.2ryoon4-48/+56
* Remove databases/php-mysql dependency, it is not used Changelog: Version 8.2.2 December 22 2015 Sharing improvements Passing an empty base in this diagnosis call will not result in LDAP errors Send sharing link to more than one recipient Cannot share at all when share with link is disabled globally Delete share hotspot not wide enough Can't access a shared folder on external storage Fix S2S error handling, making WebDAV work and get rid of undeletable files Files/folders created while the users group was included in 'Exclude groups from sharing' cannot be shared even if the group is removed from the excluded groups. "unshare" action should be called "unshare" in the action menu and not "delete" Fix shared files of deleted users, detect DN change when checking for existence on LDAP Etag isn't propagated to the root of the share owner if the file is uploaded to a group reshare Empty etag after moving shared file into a commonly received share The ajax code path unshares a link share when updating the password Other fixes MySQL file socket not working during initial setup Multiple PUT requests to new DAV backend results in locked file Dont output paths in scan.php Activity oracle sql error for favorites Check the expiration date for null Stray locks not being cleaned: server replied: Locked Login attributes tab. Other attributes combobox does not keep the selection if the users click away Fix trashbin wrapper when no user is logged in Handle non existing files in version previews Properly preserve home folder naming enforcement setting User details not saved unless click Enter User management: Password change error display behavior Add listener for URL change and then close the PDF viewer - files_pdfviewer Remove white area below pdf viewer on public page - files_pdfviewer Unable to move /srv/http/owncloud/_oc-upgrade/8.2.1.4/core/resources to /srv/http/owncloud/resources - updater Fix minification quirks - updater Accessibility Bug for 8.2 UI Several UI improvements Security improvements Many small improvements Version 8.2.1 November 18 2015 Sharing improvements: Show path to file in error message about sharing with owner Replaced error numbers with details in the sharing error message Fix pagination on public link share page Deal with NoUserException in sharing code Fix cannot change share info after switching sections Fix changing expiration date of shared link breaks password Various other fixes Performance improvements: Optimize multiple shared locks for a single process Don't lock if we're only reading cache metadata Escape like parameter in cache operations Storage improvements: Improve dealing with Dropbox and Google Drive Moving files makes them disappear (SWIFT object store) Transactional file locking database backend warning is only shown when there is another warning. Don't lock /$user/files Include the final update in the transaction when moving a folder in the cache WebDAV MOVE on a non existing file results in Internal Server Error #20069 Catch all exception if table doesn't exist #19884 #19893 Various other objectstore fixes Usability and UI: Made error message about file not found more specific in federated sharing Improved CSS, fonts, text color on various buttons, login screen, menu and settings Hide strength indication after password change and hide notifications after time-out or on delete Fixes to inconsistent language and translation support, show language code for unknown languages Fix icons for share/public folders, fix spinner positions in share tab Close user menu when clicking on other menus Sidebar fixes and hiding sidebar for trashbin view Move alt text for favorite action to image Sidebar should not open, when renaming a file on mobile Do not register sidebar panels when no sidebar Update process: state which step we are going to start and warn if it might be slow User Management and LDAP fixes: LDAP fixes for quota, user mapper, initial user creation and connectivity Fix group admin settings, group assignment when group name is a number Enable proper CardDAV cookie authentication Documentation, reliability and stability fixes: Expose syslog tag in the configuration Update list of deprecated methods (documentation) Fixes to text editor Fixes to activity app Create several repair steps in update process to clean up shares Update certificate bundle Fix multiple issues for IE 8 and 9 Memcache warning with memcached Fix File versioning with encryption Update the unencrypted size for versions Fix mtime PROPPATCH to be "lastmodified" instead of "getlastmodified" Make sure that remote shares use the correct uid casing Variables don't have a class, so we can't use toString() on it Use IRequest's `getScriptName` functionality instead of $_SERVER Don't trigger the scroll event of every single item we filter in the file list
2015-12-25More packages currently incompatible with php70.taca1-1/+3
2015-12-23Handle build with Python 3.5.joerg2-3/+6