summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2017-07-07BUILD_DEPENDS -> DEPENDSadam1-6/+6
2017-07-07Sanic is a Flask-like Python 3.5+ web server that's written to go fast. It'sadam5-1/+105
based on the work done by the amazing folks at magicstack. On top of being Flask-like, Sanic supports async request handlers. This means you can use the new shiny async/await syntax from Python 3.5, making your code non-blocking and speedy.
2017-07-07A collection of framework independent HTTP protocol utils.adam4-0/+39
2017-07-07Version 1.9.6adam1-2/+1
User-visible changes: - Client-side bugfixes: * cp/mv: improve error message when target is an unversioned dir * merge: reduce memory usage with large amounts of mergeinfo - Server-side bugfixes: * 'svnadmin freeze': document the purpose more clearly * dump: fix segfault when a revision has no revprops * fsfs: improve error message upon failure to open rep-cache * fsfs: never attempt to share directory representations * fsfs: make consistency independent of hash algorithms This change makes Subversion resilient to collision attacks, including SHA-1 collision attacks such as <http://shattered.io/>. See also our documentation at <https://subversion.apache.org/faq#shattered-sha1> and <https://subversion.apache.org/docs/release-notes/1.9#shattered-sha1>. - Client-side and server-side bugfixes: * work around an APR bug related to file truncation - Bindings bugfixes: * javahl: follow redirects when opening a connection Developer-visible changes: - General: * win_tests.py: make the --bin option work, rather than abort (regression introduced in 1.9.2) * windows: support building with 'zlibstat.lib' in install-layout - API changes: (none)
2017-07-05On Darwin, do not add special compiler flags; fixes building on High Sierraadam2-8/+19
2017-07-04Updated p5-WWW-Mechanize to 1.85.wiz2-9/+13
1.85 2017-06-28 22:06:00Z ======================================== [FIXED] - use 127.0.0.1 instead of 'localhost' in a test to avoid the test hanging due to ipv6 issues (GH#31) - Remove private logic for taint checking (Dave Doyle) - Fix Pod (simbabque) - Bump Test::More prereq to get working subtest support (Karen Etheridge) - Fix intermittent failures of taint.t (GH#108) (Kivanc Yazan) - Fix kwalitee issues (GH#107) (Kivanc Yazan) [ENHANCEMENTS] - Print section titles if mech-dump --all is invoked (GH#81) (Сергей Романов) - Add cookbook docs on dumping a req without sending it (#115) (Grigor Karavardanyan) - Document that submit only submits current form (GH#114) (nawglan) - Add Travis testing on Perl 5.26 (Karen Etheridge) - Remove obsolete and unincremented $VERSIONs in test modules (Karen Etheridge)
2017-07-03Changes 1.1.6:adam2-7/+7
The runserver server_cls override no longer fails with more modern Django versions that pass an ipv6 parameter.
2017-07-03Update to 52.2.1ryoon2-363/+363
* Sync with www/firefox52-52.2.1
2017-07-03Update to 52.2.1ryoon3-20/+7
Changelog: 52.2.1 Printing text does not work on Windows when Direct2D is disabled (Bug 1318845) 52.2.0 #CVE-2017-5472: Use-after-free using destroyed node when regenerating trees #CVE-2017-7749: Use-after-free during docshell reloading #CVE-2017-7750: Use-after-free with track elements #CVE-2017-7751: Use-after-free with content viewer listeners #CVE-2017-7752: Use-after-free with IME input #CVE-2017-7754: Out-of-bounds read in WebGL with ImageInfo object #CVE-2017-7755: Privilege escalation through Firefox Installer with same directory DLL files #CVE-2017-7756: Use-after-free and use-after-scope logging XHR header errors #CVE-2017-7757: Use-after-free in IndexedDB #CVE-2017-7778: Vulnerabilities in the Graphite 2 library #CVE-2017-7758: Out-of-bounds read in Opus encoder #CVE-2017-7760: File manipulation and privilege escalation via callback parameter in Mozilla Windows Updater and Maintenance Service #CVE-2017-7761: File deletion and privilege escalation through Mozilla Maintenance Service helper.exe application #CVE-2017-7763: Mac fonts render some unicode characters as spaces #CVE-2017-7764: Domain spoofing with combination of Canadian Syllabics and other unicode blocks #CVE-2017-7765: Mark of the Web bypass when saving executable files #CVE-2017-7766: File execution and privilege escalation through updater.ini, Mozilla Windows Updater, and Mozilla Maintenance Service #CVE-2017-7767: Privilege escalation and arbitrary file overwrites through Mozilla Windows Updater and Mozilla Maintenance Service #CVE-2017-7768: 32 byte arbitrary file read through Mozilla Maintenance Service #CVE-2017-5470: Memory safety bugs fixed in Firefox 54 and Firefox ESR 52.252.2.0 52.1.2 FIx hangs when using a proxy with NTLM authentication (bug 1360574)
2017-07-03Added lang/py-six to DEPENDSadam1-3/+4
2017-07-03Update to 54.0.1ryoon2-367/+367
* Sync with www/firefox-54.0.1
2017-07-03Update to 54.0.1ryoon3-9/+13
Changelog: Fixed Fix a display issue of tab title (bug 1357656) Fix a display issue of opening new tab (bug 1371995) Fix a display issue when opening multiple tabs (bug 1371962) Fix a tab display issue when downloading files (bug 1373109) Fix a PDF printing issue (bug 1366744) Fix a Netflix issue on Linux (bug 1375708)
2017-07-03nghttp2 v1.24.0:adam2-7/+7
Documentation We have received several patches to fix grammer and typos. The broken out-of-tree build has been also fixed. nghttp We fixed the bug that HTTP Upgrade fails if HTTP response does not have reason-phrase. nghttpx The default minimum TLS version is now TLSv1.2. This is because the default cipher list only contains cipher suites which are compatible with it.
2017-07-03Changes 1.11.3:adam2-7/+7
Bugfixes Removed an incorrect deprecation warning about a missing renderer argument if a Widget.render() method accepts **kwargs. Fixed a regression causing Model.__init__() to crash if a field has an instance only descriptor. Fixed an incorrect DisallowedModelAdminLookup exception when using a nested reverse relation in list_filter. Fixed admin’s FieldListFilter.get_queryset() crash on invalid input. Fixed invalid HTML for a required AdminFileWidget. Fixed model initialization to set the name of class-based model indexes for models that only inherit models.Model. Fixed crash in admin’s inlines when a model has an inherited non-editable primary key. Fixed QuerySet.union(), intersection(), and difference() when combining with an EmptyQuerySet. Prevented Paginator’s unordered object list warning from evaluating a QuerySet. Fixed the value of redirect_field_name in LoginView’s template context. It’s now an empty string (as it is for the original function-based login() view) if the corresponding parameter isn’t sent in a request (in particular, when the login page is accessed directly). Prevented attribute values in the django/forms/widgets/attrs.html template from being localized so that numeric attributes (e.g. max and min) of NumberInput work correctly. Removed casting of the option value to a string in the template context of the CheckboxSelectMultiple, NullBooleanSelect, RadioSelect, SelectMultiple, and Select widgets. In Django 1.11.1, casting was added in Python to avoid localization of numeric values in Django templates, but this made some use cases more difficult. Casting is now done in the template using the |stringformat:'s' filter. Prevented a primary key alteration from adding a foreign key constraint if db_constraint=False. Fixed UnboundLocalError crash in RenameField with nonexistent field. Fixed a regression preventing a model field’s limit_choices_to from being evaluated when a ModelForm is instantiated.
2017-07-01Expect crypt(3) to be provided by unistd.h, not the ancient crypt.h.joerg2-1/+24
Fix standard visibility macro use.
2017-07-01Deal with PLIST differences for Python 3.4.joerg2-11/+18
2017-06-30Fix build with alsa option on NetBSD. PR/52310tsutsui2-37/+42
2017-06-30Fix build on NetBSD 7.1. PR/52309tsutsui2-1/+17
2017-06-29Install processed rather than template nginx man page. PKGREVISION++fhajny3-5/+6
Fixes joyent/pkgsrc/issues/515
2017-06-29Requires PERL_USE_UNSAFE_INC hack.jperkin1-1/+3
2017-06-29Requires PERL_USE_UNSAFE_INC hack.jperkin1-1/+3
2017-06-29Add patch from PR 51966.martin4-2/+217
2017-06-28These packages all require the PERL_USE_UNSAFE_INC hack.jperkin5-5/+15
2017-06-28These packages all require the PERL_USE_UNSAFE_INC hack.jperkin26-26/+78
2017-06-28Requires PERL_USE_UNSAFE_INC hack.jperkin1-1/+3
2017-06-27Requires PERL_USE_UNSAFE_INC hack.jperkin1-1/+3
2017-06-26Requires PERL_USE_UNSAFE_INC hack.jperkin1-1/+3
2017-06-2517.6.2:adam2-7/+7
new: force register option when joining realms fix: TLS options in components API
2017-06-25Update "used by" line.taca1-2/+2
2017-06-24Update to 3.20170622. From the changelog:schmonz2-7/+7
* t/git-cgi.t: Wait 1 second before doing a revert that should work. This hopefully fixes a race condition in which the test failed around 6% of the time. (Closes: 862494) * Guard against set-but-empty REMOTE_USER CGI variable on misconfigured nginx servers, and in general treat sessions with a set-but-empty name as if they were not signed in. * When the CGI fails, print the error to stderr, not "Died" * mdwn: Don't mangle <style> into <elyts> under some circumstances * mdwn: Enable footnotes by default when using the default Discount implementation. A new mdwn_footnotes option can be used to disable footnotes in MultiMarkdown and Discount. * mdwn: Don't enable alphabetically labelled ordered lists by default when using the default Discount implementation. A new mdwn_alpha_list option can be used to restore the old interpretation. * osm: Convert savestate hook into a changes hook. savestate is not the right place to write wiki content, and in particular this breaks websetup if osm's dependencies are not installed, even if the osm plugin is not actually enabled. (Closes: #719913) * toc: if the heading is of the form <h1 id="...">, use that for the link in the table of contents (but continue to generate <a name="index42"></a> in case someone was relying on it) * color: Do not leak markup into contexts that take only the plain text, such as toc * meta: Document [[!meta name="foo" content="bar"]]
2017-06-24websockets is a library for developing WebSocket servers and clients inadam6-1/+118
Python. It implements RFC 6455 with a focus on correctness and simplicity. It passes the Autobahn Testsuite. Built on top of Python's asynchronous I/O support introduced in PEP 3156, it provides an API based on coroutines, making it easy to write highly concurrent applications.
2017-06-23Avoid sys/user.h on NetBSD.joerg2-5/+8
2017-06-23Release 4.1.2:adam2-8/+8
* Fixed MANIFEST.in for Debian packaging.
2017-06-22Update drupal7 to 7.56.taca2-7/+7
Drupal 7.56, 2017-06-21 ----------------------- - Fixed security issues (access bypass). See SA-CORE-2017-003.
2017-06-22Needs pkg-config, at least for some build options.schmonz1-1/+2
2017-06-22Remove lua buildlink, mistakenly included in previous.schmonz1-2/+1
2017-06-21Add "webdav" option for fuller-featured WebDAV server support.schmonz2-4/+15
2017-06-21Added py-asgiref, py-daphne, py-channelsadam1-1/+4
2017-06-21Channels loads into Django as a pluggable app to bring WebSocket, long-polladam4-0/+170
HTTP, task offloading and other asynchrony support to your code, using familiar Django design patterns and a flexible underlying framework that lets you not only customize behaviours but also write support for your own protocols and needs.
2017-06-21Daphne is a HTTP, HTTP2 and WebSocket protocol server for ASGI, and developedadam4-0/+98
to power Django Channels. It supports automatic negotiation of protocols; there's no need for URL prefixing to determine WebSocket endpoints versus HTTP endpoints.
2017-06-21Contains various reference ASGI implementations, including:adam4-0/+50
* A base channel layer, asgiref.base_layer * An in-memory channel layer, asgiref.inmemory * WSGI-to-ASGI and ASGI-to-WSGI adapters, in asgiref.wsgi
2017-06-2117.6.1adam2-10/+10
new: allow components to pass WebSocket/RawSocket options fix: register/subscribe decorators support different URI syntax from what session.register and session.subscribe support new: allow for standard Crossbar a.c..d style pattern URIs to be used with Pattern new: dynamic authorizer example new: configurable log level in ApplicationRunner.run for asyncio fix: forward reason of hard dropping WebSocket connection in wasNotCleanReason
2017-06-21The humble, but powerful, URL runs everything around us. Chances are you'veadam5-1/+47
used several just to read this text. Hyperlink is a featureful, pure-Python implementation of the URL, with an emphasis on correctness.
2017-06-21Bump revision due to change of PKGPATH of depending rails components' packages.taca4-5/+8
2017-06-21Apply content of squidGuard-1.4-patch-20150201 via patches.taca4-3/+99
Bump PKGREVISION.
2017-06-21Update thin to 1.7.1.taca2-8/+8
== 1.7.1 Muffin Mode * Ruby 2.4 support (Fixnum deprecation) [nimish-mehta] * Allow ERB templates in config files [markets]
2017-06-21Update ruby-capybara to 2.14.3.taca2-7/+7
# Version 2.14.3 Release date: 2017-06-15 ### Fixed * Minitest assertions now raise the correct error type - Issue #1879 [Thomas Walpole] * Improve flexibility of detecting Chrome headless mode [Thomas Walpole]
2017-06-21Update ruby-jekyll package to 3.5.0.taca3-15/+16
Changes are too many to write here, please refer <https://github.com/jekyll/jekyll/releases> in detail. * Upgrade to Liquid v4. * Add support for TSV (Tab-Separated Values data) files. * Add a template for custom 404 page. * Documentation improvements.
2017-06-21Update ruby-liquid to 4.0.0 required by puppet 4.10.4.taca3-12/+16
## 4.0.0 ### Changed * Render an opaque internal error by default for non-Liquid::Error (#835) [Dylan Thacker-Smith] * Ruby 2.0 support dropped (#832) [Dylan Thacker-Smith] * Add to_number Drop method to allow custom drops to work with number filters (#731) * Add strict_variables and strict_filters options to detect undefined references (#691) * Improve loop performance (#681) [Florian Weingarten] * Rename Drop method `before_method` to `liquid_method_missing` (#661) [Thierry Joyal] * Add url_decode filter to invert url_encode (#645) [Larry Archer] * Add global_filter to apply a filter to all output (#610) [Loren Hale] * Add compact filter (#600) [Carson Reinke] * Rename deprecated "has_key?" and "has_interrupt?" methods (#593) [Florian Weingarten] * Include template name with line numbers in render errors (574) [Dylan Thacker-Smith] * Add sort_natural filter (#554) [Martin Hanzel] * Add forloop.parentloop as a reference to the parent loop (#520) [Justin Li] * Block parsing moved to BlockBody class (#458) [Dylan Thacker-Smith] * Add concat filter to concatenate arrays (#429) [Diogo Beato] * Ruby 1.9 support dropped (#491) [Justin Li] * Liquid::Template.file_system's read_template_file method is no longer passed the context. (#441) [James Reid-Smith] * Remove support for `liquid_methods` * Liquid::Template.register_filter raises when the module overrides registered public methods as private or protected (#705) [Gaurav Chande] ### Fixed * Fix map filter when value is a Proc (#672) [Guillaume Malette] * Fix truncate filter when value is not a string (#672) [Guillaume Malette] * Fix behaviour of escape filter when input is nil (#665) [Tanel Jakobsoo] * Fix sort filter behaviour with empty array input (#652) [Marcel Cary] * Fix test failure under certain timezones (#631) [Dylan Thacker-Smith] * Fix bug in uniq filter (#595) [Florian Weingarten] * Fix bug when "blank" and "empty" are used as variable names (#592) [Florian Weingarten] * Fix condition parse order in strict mode (#569) [Justin Li] * Fix naming of the "context variable" when dynamically including a template (#559) [Justin Li] * Gracefully accept empty strings in the date filter (#555) [Loren Hale] * Fix capturing into variables with a hyphen in the name (#505) [Florian Weingarten] * Fix case sensitivity regression in date standard filter (#499) [Kelley Reynolds] * Disallow filters with no variable in strict mode (#475) [Justin Li] * Disallow variable names in the strict parser that are not valid in the lax parser (#463) [Justin Li] * Fix BlockBody#warnings taking exponential time to compute (#486) [Justin Li]
2017-06-21Switch most of Ruby on Rails related packages to updated frame work.taca7-16/+22