Commit graph

13261 commits

Author SHA1 Message Date
wiz
18a46154bf Do not set FETCH_USING, should not be set in a package Makefile. 2014-01-27 18:41:11 +00:00
schmonz
7cb6a9fc91 Update to 3.20140125. From the changelog:
* inline: Allow overriding the title of the feed. Closes: #735123
  Thanks, Christophe Rhodes
* osm: Escape name parameter. Closes: #731797
2014-01-26 05:17:08 +00:00
wiz
a1f0ff3f67 No need to have two variables for the same logic.
Replace PYTHON_PATCH_SCRIPTS with REPLACE_PYTHON.
2014-01-25 10:45:15 +00:00
wiz
aa67e11089 Mark packages as not ready for python-3.x where applicable;
either because they themselves are not ready or because a
dependency isn't. This is annotated by
PYTHON_VERSIONS_INCOMPATIBLE=  33 # not yet ported as of x.y.z
or
PYTHON_VERSIONS_INCOMPATIBLE=  33 # py-foo, py-bar
respectively, please use the same style for other packages,
and check during updates.

Use versioned_dependencies.mk where applicable.
Use REPLACE_PYTHON instead of handcoded alternatives, where applicable.
Reorder Makefile sections into standard order, where applicable.

Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default
with the next commit.

Whitespace cleanups and other nits corrected, where necessary.
2014-01-25 10:29:56 +00:00
wiz
fe132229e3 Mark this is as major version 3 of the module
(compare py-beautifulsoup4)
2014-01-25 09:25:32 +00:00
kleink
8dce368cb0 Add patch-flask_security_script.py to fix the py33 build;
also submitted upstream as #214.
2014-01-24 09:49:34 +00:00
jnemeth
45b891014d add and enable py-flup3 2014-01-23 20:08:40 +00:00
morr
ca39182fd8 Update to version 3.8.
Changes:

Introduces a new, modern admin design
* A fresh, uncluttered design
* Clean typography with Open Sans
* Superior contrast and large, comfortable type
* Responsive interfaces throughout
* Refined, theme management
* Smoother, click-to-add widget management

New Default Theme - Twenty Fourteen
* Easily create a responsive magazine website with a sleek, modern design.
* Feature your favorite homepage content in either a grid or a slider.
* Use the three widget areas to customize your website, and change your
  content's layout with a full-width page template and a contributor page to show
  off your authors.

For Developers
* External Libraries have been updated.
* Better RTL support

More info on http://codex.wordpress.org/Version_3.8
2014-01-23 16:27:49 +00:00
wiz
afd77c5885 Update to 2.0 (python-3.x compatible) based on the wip package by othyro.
Changes:
uWSGI 2.0

Changelog [20131230] Important changes

Dynamic options have been definitely removed as well as the
broken_plugins directory Bugfixes and improvements

    improved log rotation do not rely on unix signals to print
    request status during harakiri added magic vars for uid and
    gid various Lua fixes a tons of coverity-governed bugfixes made
    by Riccardo Magliocchetti

New features --attach-daemon2

this is a keyval based option for configuring external daemons.

Updated docs are: :doc:`AttachingDaemons` Linux setns() support

One of the biggest improvements in uWSGI 1.9-2.0 has been the total
support for Linux namespaces.

This last patch adds support for the setns() syscall.

This syscall allows a process to "attach" to a running namespace.

uWSGI instances can exposes their namespaces file descriptors
(basically they are the files in /proc/self/ns) via a unix socket.

External instances connects to that unix socket and automatically
enters the mapped namespace.

to spawn an instance in "namespace server mode", you use the
--setns-socket <addr> option

uwsgi --setns-socket /var/run/ns.socket --unshare net,ipc,uts ...

to attach you simply use --setns <addr>

uwsgi --setns /var/run/ns.socket ...

Updated docs: :doc:`Namespaces` "private" hooks

When uWSGI runs your hooks, it verbosely print the whole hook action
line. This could be a security problem in some scenario (for example
when you run initial phases as root user but allows unprivileged
access to logs).

Prefixing your action with a '!' will suppress full logging:

[uwsgi] hook-asap = !exec:my_secret_command

Support for yajl library (JSON parser)

Til now uWSGI only supported jansson as the json parser required
for managing .js config files.

You can now use the yajl library (available in centos) as alternative
JSON parser (will be automatically detected) Perl spooler support

The perl/PSGI plugin can now be used as a spooler server:

uwsgi::spooler(sub {
     my $args = shift; print Dumper($args); return -2; });

The client part is still missing as we need to fix some internal
api problem.

Expect it in 2.0.1 ;) Gateways can drop privileges

Gateways (like http router, sslrouter, rawrouter, forkptyrouter
...) can now drop privileges independently by the master.

Currently only the http/https/spdy router exposes the new option
(--http-uid/--http-gid) Subscriptions-governed SNI contexts

The subscription subsystem now supports 3 additional keys (you can
set them with the --subscribe2 option):

sni_key

sni_cert

sni_ca

all of the takes a path to the relevant ssl files.
2014-01-23 14:47:05 +00:00
joerg
3339da24e5 Drop maintainership, haven't used it in ages. 2014-01-23 13:21:04 +00:00
adam
de23db7832 Changes 1.4.34:
* [mod_auth] explicitly link ssl for SHA1 (fixes 2517)
* [mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes 2515, thx mm)
* [ssl] fix SNI handling; only use key+cert from SNI specific config (fixes 2525, CVE-2013-4508)
* [doc] update ssl.cipher-list recommendation
* [stat-cache] FAM: fix use after free (CVE-2013-4560)
* [stat-cache] fix FAM cleanup/fdevent handling
* [core] check success of setuid,setgid,setgroups (CVE-2013-4559)
* [ssl] fix regression from CVE-2013-4508 (client-cert sessions were broken)
* maintain physical.basedir (the "acting" doc-root as prefix of physical.path) in more places
* [core] decode URL before rewrite, enabling it to work in $HTTP["url"] conditionals (fixes 2526)
* [auto* build] remove -no-undefined from linker flags, as we actually link modules with undefined symbols (fixes 2533)
* [mod_mysql_vhost] fix memory leak on config init (2530)
* [mod_webdav] fix fd leak found with parfait (fixes 2530, thx kukackajiri)
2014-01-23 13:20:12 +00:00
jperkin
dfdb052b25 Use --disable-fast-malloc on SunOS x86_64, it doesn't work right now. 2014-01-22 15:21:23 +00:00
tron
4d03f3517e Enable "ecc" option (support for ECC cipher suites) by default. It is
the fastest and most widely support way to get Perfect Forward Secrecy
with modern web browsers if your server uses an RSA key.

Bump package revision because of this change.
2014-01-21 23:28:46 +00:00
gdt
b848030e3d Update to 1.0.1
Sort PLIST.  Add new files.

Trac 1.0.1 (February 1, 2013)
http://svn.edgewall.org/repos/trac/tags/trac-1.0.1

 - Fix zip source download for large directories in Subversion repositories
 - Performance improvement for the Roadmap, by caching milestone properties
 - Added a ''select all'' checkbox to table of components for each plugin on
   the Plugins admin panel
 - Restore the ''Modify'' link at the top of the ticket page, as it was in
   Trac 0.12
 - `ListOption` keeps values other than empty string and None in raw list
   as default
 - Prevent possibility of multiple identical info or warning messages being
   presented to the user
 - The BatchModify select-all checkboxes are toggled with tri-state behavior
   when the ticket checkboxes are toggled
 - Update the ticket changetime to the current time when deleting a ticket
   comment
 - ... and quite more! In particular, see also the changes for 0.12.5
   which are also integrated and new since 1.0

Trac 0.12.5 (January 15, 2013)
http://svn.edgewall.org/repos/trac/tags/trac-0.12.5

Trac 0.12.5 is a maintenance release and contains
a few interesting fixes:
 - upload of .mht files (MHTML web page archive files) now works
   (#9880)
 - more robust parsing of attachment URLs (#10280) and uploaded
   file names (#10850)
 - lots of improvement to the date formatting code, which is now
   much more robust when timezone and daylight saving time
   computations are involved (#10768, #10863, #10864, #10912, #10920)
 - no longer generate invalid JSON encoded data with Python 2.4 and
   2.5 (#10877)
 - ... and a few more!
2014-01-21 22:29:33 +00:00
taca
cea5010b4d Update contao32 to 3.2.4.
Version 3.2.4 (2014-01-20)
--------------------------

### Fixed
Updated the Russian translation of the TinyMCE "typolinks" plugins (see #6224).

### Fixed
Do not create multiple stylect layers upon Ajax changes.

### Fixed
Some DCAs were missing the "rem" unit (see #6634).

### Fixed
Correctly trim the SQL statements in the `Database` class (see #6623).

### Fixed
Fix some broken back end icons (see #6214).

### Fixed
Show a hint in the news archive menu if there are no items (see #5888).

### Fixed
Prevent the back end tool tips from exceeding the screen width (see #6639).

### Fixed
Support the Google+ vanity name in addition to the numeric ID (see #6454).

### Fixed
Correctly detect Android tablets in the `Environment` class (see #5869).

### Fixed
Correctly resolve the module dependencies (see #6606).

### Fixed
Correctly unset the PHP session cookie depending on its parameters.

### Fixed
Fixed the XHTML variant of the comments form (see #5675).

### Fixed
Correctly assign articles to columns (see #6595).

### Fixed
Correctly merge the CSS classes in the `Hybrid` class (see #6601).
2014-01-21 16:20:09 +00:00
wen
5037f20b39 Update to 1.21.4
Upsteam changes:
Changes since 1.21.3[edit | edit source]
(bug 57550) SECURITY: Disallow stylesheets in SVG Uploads
(bug 58088) SECURITY: Don't normalize U+FF3C to \ in CSS Checks
(bug 58472) SECURITY: Disallow -o-link in styles
(bug 58553) SECURITY: Return error on invalid XML for SVG Uploads
(bug 58699) SECURITY: Fix RevDel log entry information leaks
2014-01-21 15:15:53 +00:00
wiz
790a0d6941 Update to 1.9.7:
Version 1.9.7:
  SECURITY HINT: make sure you have allow_xslt = False (or just do not use
  allow_xslt at all in your wiki configs, False is the internal default).
  Allowing XSLT/4suite is very dangerous, see HelpOnConfiguration wiki page.

  HINT: Python >= 2.5 is maybe required! See docs/REQUIREMENTS for details.

  New features:
  * passlib support - enhanced password hash security. Special thanks go to
    the Python Software Foundation (PSF) for sponsoring development of this!

    Docs for passlib: http://packages.python.org/passlib/

    If cfg.passlib_support is True (default), we try to import passlib and set
    it up using the configuration given in cfg.passlib_crypt_context (default
    is to use sha512_crypt with default configuration from passlib).

    The passlib docs recommend 3 hashing schemes that have good security, but
    some of them have additional requirements:
    sha512_crypt needs passlib >= 1.3.0, no other requirements.
    pbkdf2_sha512 needs passlib >= 1.4.0, no other requirements.
    bcrypt has additional binary/compiled package requirements, please refer to
    the passlib docs.

    cfg.password_scheme should be '{PASSLIB}' (default) to tell that passlib is
    wanted for new password hash creation and also for upgrading existing
    password hashes.

    For the moin code as distributed in our download release archive, passlib
    support should just work, as we have passlib 1.6.1 bundled with MoinMoin
    as MoinMoin/support/passlib. If you use some other moin package, please
    first check if you have moin AND passlib installed (and also find out the
    passlib version you have installed).

    If you do NOT want to (not recommended!) or can't use (still using python
    2.4?) passlib, you can disable it your wiki config:

        passlib_support = False  # do not import passlib
        password_scheme = '{SSHA}'  # use best builtin hash (like moin < 1.9.7)

    Please note that after you have used moin with passlib support and have user
    profiles with passlib hashes, you can't just switch off passlib support,
    because if you did, moin would not be able to log in users with passlib
    password hashes. Password recovery would still work, though.

    password_scheme always gives the password scheme that is wanted for new or
    recomputed password hashes. The code is able to upgrade and downgrade hashes
    at login time and also when setting / resetting passwords for one or all
    users (via the wiki web interface or via moin account resetpw script
    command).

    So, if you want that everybody uses strong, passlib-created hashes,
    resetting the passwords for all users is strongly recommended:
    First have passlib support switched on (it is on by default), use
    password_scheme = '{PASSLIB}' (also default), then reset all passwords.

    Same procedure can be used to go back to weaker builtin hashes (not
    recommended): First switch off passlib support, use password_scheme =
    '{SSHA}', then reset all passwords.

    Wiki farm admins sharing the same user_dir between multiple wikis must use
    consistent password hashing / passlib configuration settings for all wikis
    sharing the same user_dir. Using the builtin defaults or doing the
    configuration in farmconfig.py is recommended.

    Admins are advised to read the passlib docs (especially when experiencing
    too slow logins or when running old passlib versions which may not have
    appropriate defaults for nowadays):
    http://packages.python.org/passlib/new_app_quickstart.html#choosing-a-hash
    http://packages.python.org/passlib/password_hash_api.html#choosing-the-right-rounds-value

  * Password mass reset/invalidation support, see docs/resetpw/.
    This is useful to make sure everybody sets a new password and moin computes
    the password hash using the current configuration.

  * Customizable default password checker:
    Moin's default password checker used and still uses min_length=6 (minimum pw
    length) and min_different=4 (minimum count of different chars in the password).
    If you feel that you need to require better passwords from your users, you
    can customize it now like that in your wiki config:

    password_checker = lambda cfg, request, name, pw: multiconfig._default_password_checker(cfg, request, name, pw, min_length=10, min_different=7)

  * Removing/disabling inactive users (moin ... account inactive)
    Many wikis have a lot of inactive users, that never ever made a single edit.
    See help of the command for more details, be careful.
  * SystemAdmin user browser: show disabled user accounts at the bottom of
    the list
  * At startup, announce moin version and code path in log output (makes
    support and debugging easier).
  * AttachList: introduced search_term parameter (optional) for listing
    attachments filtered by a regular expression on their name.
  * sign release archive using GnuPG with the key of tw@waldmann-edv.de
    ID 31A6CB60 (main key ID FAF7B393)

  Fixes:
  * logging: if the logging config file can't be read, give a helpful error msg
  * logging: use info loglevel (not warning) for telling about using the builtin
    default logging config
  * moin script commands: warn if someone gave ... to the moin script, avoids a
    strange and unhelpful 'empty module name' error message
  * reorder html input fields in recoverpass form, to help browsers remember
    the user name and password (not erroneously the recovery token and password)
  * don't try to send password recovery email to user if email address in
    user profile is empty
  * cache action: fix 304 http status
  * rst parser: fix safe_import for level param in __import__ call of docutils 0.10
  * moin maint cleancache: also kill the i18n cache 'meta' pickle file
  * sendmail: catch unicode errors when E-Mail addr has non-ascii chars
  * redirect last visited: if last visited page is on same wiki, use a local
    redirect, do not compute via interwiki map (fixes https: usage)
2014-01-20 20:17:05 +00:00
khorben
034fde43eb Imported commit d96951a93dfb3a082280bad561516ed90a1478bf upstream:
Added missing include for download(1) with WebKit (as by default).

    Reported by Joerg Sonnenberger of NetBSD, thanks!

Fixes building the package, no version bump required AFAICS.
2014-01-20 18:21:29 +00:00
wiz
cdf3399a5c Convert to distutils.mk. Mark as not for python-3.x.
Bump PKGREVISION.
2014-01-20 16:29:30 +00:00
wiz
e212905202 Remove unnecessary dependency. Mark as not for python-3.x
Bump PKGREVISION.
2014-01-20 16:26:30 +00:00
wiz
5dd395ba3b Remove unnecessary dependency. Mark as not for python-3.x. Bump
PKGREVISION.
2014-01-20 16:25:17 +00:00
wiz
9cbbfa3f7a Use distutils.mk. Mark as not for python-3.x. Bump PKGREVISION. 2014-01-20 15:45:14 +00:00
wiz
9bbf7a3a32 Fix PLIST for python-3.x. 2014-01-20 11:19:09 +00:00
wiz
80d65bfa9a Mark python-3.x as allowed. 2014-01-20 11:10:04 +00:00
kleink
9cc55ab9ed Temporarily invent a DIST_SUBDIR so the distfiles cache on ftp.netbsd.org
picks up the upstream-replaced 1.0.7 tarball from nb2.  Suggested by wiz.

Bump PKGREVISION.
2014-01-19 20:42:28 +00:00
kleink
1339de7a56 Upstream uploaded a new, pristine tarball (same name) to PyPI that
doesn't include testing bytecode residue.

Bump PKGREVISION.
2014-01-19 19:57:39 +00:00
wiz
985bcd1cb6 Update to 4.3.2:
= 4.3.2 (20131002) =

* Fixed a bug in which short Unicode input was improperly encoded to
  ASCII when checking whether or not it was the name of a file on
  disk. [bug=1227016]

* Fixed a crash when a short input contains data not valid in
  filenames. [bug=1232604]

* Fixed a bug that caused Unicode data put into UnicodeDammit to
  return None instead of the original data. [bug=1214983]

* Combined two tests to stop a spurious test failure when tests are
  run by nosetests. [bug=1212445]

= 4.3.1 (20130815) =

* Fixed yet another problem with the html5lib tree builder, caused by
  html5lib's tendency to rearrange the tree during
  parsing. [bug=1189267]

* Fixed a bug that caused the optimized version of find_all() to
  return nothing. [bug=1212655]

= 4.3.0 (20130812) =

* Instead of converting incoming data to Unicode and feeding it to the
  lxml tree builder in chunks, Beautiful Soup now makes successive
  guesses at the encoding of the incoming data, and tells lxml to
  parse the data as that encoding. Giving lxml more control over the
  parsing process improves performance and avoids a number of bugs and
  issues with the lxml parser which had previously required elaborate
  workarounds:

  - An issue in which lxml refuses to parse Unicode strings on some
    systems. [bug=1180527]

  - A returning bug that truncated documents longer than a (very
    small) size. [bug=963880]

  - A returning bug in which extra spaces were added to a document if
    the document defined a charset other than UTF-8. [bug=972466]

  This required a major overhaul of the tree builder architecture. If
  you wrote your own tree builder and didn't tell me, you'll need to
  modify your prepare_markup() method.

* The UnicodeDammit code that makes guesses at encodings has been
  split into its own class, EncodingDetector. A lot of apparently
  redundant code has been removed from Unicode, Dammit, and some
  undocumented features have also been removed.

* Beautiful Soup will issue a warning if instead of markup you pass it
  a URL or the name of a file on disk (a common beginner's mistake).

* A number of optimizations improve the performance of the lxml tree
  builder by about 33%, the html.parser tree builder by about 20%, and
  the html5lib tree builder by about 15%.

* All find_all calls should now return a ResultSet object. Patch by
  Aaron DeVore. [bug=1194034]

= 4.2.1 (20130531) =

* The default XML formatter will now replace ampersands even if they
  appear to be part of entities. That is, "&lt;" will become
  "&amp;lt;". The old code was left over from Beautiful Soup 3, which
  didn't always turn entities into Unicode characters.

  If you really want the old behavior (maybe because you add new
  strings to the tree, those strings include entities, and you want
  the formatter to leave them alone on output), it can be found in
  EntitySubstitution.substitute_xml_containing_entities(). [bug=1182183]

* Gave new_string() the ability to create subclasses of
  NavigableString. [bug=1181986]

* Fixed another bug by which the html5lib tree builder could create a
  disconnected tree. [bug=1182089]

* The .previous_element of a BeautifulSoup object is now always None,
  not the last element to be parsed. [bug=1182089]

* Fixed test failures when lxml is not installed. [bug=1181589]

* html5lib now supports Python 3. Fixed some Python 2-specific
  code in the html5lib test suite. [bug=1181624]

* The html.parser treebuilder can now handle numeric attributes in
  text when the hexidecimal name of the attribute starts with a
  capital X. Patch by Tim Shirley. [bug=1186242]

= 4.2.0 (20130514) =

* The Tag.select() method now supports a much wider variety of CSS
  selectors.

 - Added support for the adjacent sibling combinator (+) and the
   general sibling combinator (~). Tests by "liquider". [bug=1082144]

 - The combinators (>, +, and ~) can now combine with any supported
   selector, not just one that selects based on tag name.

 - Added limited support for the "nth-of-type" pseudo-class. Code
   by Sven Slootweg. [bug=1109952]

* The BeautifulSoup class is now aliased to "_s" and "_soup", making
  it quicker to type the import statement in an interactive session:

  from bs4 import _s
   or
  from bs4 import _soup

  The alias may change in the future, so don't use this in code you're
  going to run more than once.

* Added the 'diagnose' submodule, which includes several useful
  functions for reporting problems and doing tech support.

  - diagnose(data) tries the given markup on every installed parser,
    reporting exceptions and displaying successes. If a parser is not
    installed, diagnose() mentions this fact.

  - lxml_trace(data, html=True) runs the given markup through lxml's
    XML parser or HTML parser, and prints out the parser events as
    they happen. This helps you quickly determine whether a given
    problem occurs in lxml code or Beautiful Soup code.

  - htmlparser_trace(data) is the same thing, but for Python's
    built-in HTMLParser class.

* In an HTML document, the contents of a <script> or <style> tag will
  no longer undergo entity substitution by default. XML documents work
  the same way they did before. [bug=1085953]

* Methods like get_text() and properties like .strings now only give
  you strings that are visible in the document--no comments or
  processing commands. [bug=1050164]

* The prettify() method now leaves the contents of <pre> tags
  alone. [bug=1095654]

* Fix a bug in the html5lib treebuilder which sometimes created
  disconnected trees. [bug=1039527]

* Fix a bug in the lxml treebuilder which crashed when a tag included
  an attribute from the predefined "xml:" namespace. [bug=1065617]

* Fix a bug by which keyword arguments to find_parent() were not
  being passed on. [bug=1126734]

* Stop a crash when unwisely messing with a tag that's been
  decomposed. [bug=1097699]

* Now that lxml's segfault on invalid doctype has been fixed, fixed a
  corresponding problem on the Beautiful Soup end that was previously
  invisible. [bug=984936]

* Fixed an exception when an overspecified CSS selector didn't match
  anything. Code by Stefaan Lippens. [bug=1168167]

= 4.1.3 (20120820) =

* Skipped a test under Python 2.6 and Python 3.1 to avoid a spurious
  test failure caused by the lousy HTMLParser in those
  versions. [bug=1038503]

* Raise a more specific error (FeatureNotFound) when a requested
  parser or parser feature is not installed. Raise NotImplementedError
  instead of ValueError when the user calls insert_before() or
  insert_after() on the BeautifulSoup object itself. Patch by Aaron
  Devore. [bug=1038301]

= 4.1.2 (20120817) =

* As per PEP-8, allow searching by CSS class using the 'class_'
  keyword argument. [bug=1037624]

* Display namespace prefixes for namespaced attribute names, instead of
  the fully-qualified names given by the lxml parser. [bug=1037597]

* Fixed a crash on encoding when an attribute name contained
  non-ASCII characters.

* When sniffing encodings, if the cchardet library is installed,
  Beautiful Soup uses it instead of chardet. cchardet is much
  faster. [bug=1020748]

* Use logging.warning() instead of warning.warn() to notify the user
  that characters were replaced with REPLACEMENT
  CHARACTER. [bug=1013862]

= 4.1.1 (20120703) =

* Fixed an html5lib tree builder crash which happened when html5lib
  moved a tag with a multivalued attribute from one part of the tree
  to another. [bug=1019603]

* Correctly display closing tags with an XML namespace declared. Patch
  by Andreas Kostyrka. [bug=1019635]

* Fixed a typo that made parsing significantly slower than it should
  have been, and also waited too long to close tags with XML
  namespaces. [bug=1020268]

* get_text() now returns an empty Unicode string if there is no text,
  rather than an empty bytestring. [bug=1020387]

= 4.1.0 (20120529) =

* Added experimental support for fixing Windows-1252 characters
  embedded in UTF-8 documents. (UnicodeDammit.detwingle())

* Fixed the handling of &quot; with the built-in parser. [bug=993871]

* Comments, processing instructions, document type declarations, and
  markup declarations are now treated as preformatted strings, the way
  CData blocks are. [bug=1001025]

* Fixed a bug with the lxml treebuilder that prevented the user from
  adding attributes to a tag that didn't originally have
  attributes. [bug=1002378] Thanks to Oliver Beattie for the patch.

* Fixed some edge-case bugs having to do with inserting an element
  into a tag it's already inside, and replacing one of a tag's
  children with another. [bug=997529]

* Added the ability to search for attribute values specified in UTF-8. [bug=1003974]

  This caused a major refactoring of the search code. All the tests
  pass, but it's possible that some searches will behave differently.
2014-01-19 19:56:32 +00:00
wiz
9271a651ed Update to 1.4:
Version 1.4
-----------

- Update linkify to use etree type Treeewalker instead of simpletree.
- Updated html5lib to version >= 0.999.
- Update all code to be compatible with Python 3 and 2 using six.
- Switch to Apache License.


Version 1.3
-----------

- Used by Python 3-only fork.


Version 1.2.2
-------------

- Pin html5lib to version 0.95 for now due to major API break.

Version 1.2.1
-------------

- clean() no longer considers "feed:" an acceptable protocol due to
  inconsistencies in browser behavior.


Version 1.2
-----------

- linkify() has changed considerably. Many keyword arguments have been
  replaced with a single callbacks list. Please see the documentation
  for more information.
- Bleach will no longer consider unacceptable protocols when linkifying.
- linkify() now takes a tokenizer argument that allows it to skip
  sanitization.
- delinkify() is gone.
- Removed exception handling from _render. clean() and linkify() may now
  throw.
- linkify() correctly ignores case for protocols and domain names.
- linkify() correctly handles markup within an <a> tag.
2014-01-19 18:51:18 +00:00
wiz
0f72205f69 Fix build with python-3.3. 2014-01-19 17:42:04 +00:00
wiz
7c4e5e4912 Remove pre-compiled binaries and adapt PLIST.
Bump PKGREVISION.
2014-01-19 17:38:12 +00:00
wiz
148d33132f Fix PLIST. 2014-01-19 13:12:30 +00:00
wiz
182c4e7051 Update to 7.19.3:
Version 7.19.3 [requires libcurl-7.19.0 or better] - 2014-01-09
---------------------------------------------------------------

        * Added CURLOPT_NOPROXY.

        * Added CURLINFO_LOCAL_PORT, CURLINFO_PRIMARY_PORT and
          CURLINFO_LOCAL_IP (patch by Adam Jacob Muller).

        * When running on Python 2.x, for compatibility with Python 3.x,
          Unicode strings containing ASCII code points only are now accepted
          in setopt() calls.

        * PycURL now requires that compile time SSL backend used by libcurl
          is the same as the one used at runtime. setup.py supports
          --with-ssl, --with-gnutls and --with-nss options like libcurl does,
          to specify which backend libcurl uses. On some systems PycURL can
          automatically figure out libcurl's backend.
          If the backend is not one for which PycURL provides crypto locks
          (i.e., any of the other backends supported by libcurl),
          no runtime SSL backend check is performed.

        * Default PycURL user agent string is now built at runtime, and will
          include the user agent string of libcurl loaded at runtime rather
          than the one present at compile time.

        * PycURL will now use WSAduplicateSocket rather than dup on Windows
          to duplicate sockets obtained from OPENSOCKETFUNCTION.
          Using dup may have caused crashes, OPENSOCKETFUNCTION should
          now be usable on Windows.

        * A new script, winbuild.py, was added to build PycURL on Windows
          against Python 2.6, 2.7, 3.2 and 3.3.

        * Added CURL_LOCK_DATA_SSL_SESSION (patch by Tom Pierce).

        * Added E_OPERATION_TIMEDOUT (patch by Romuald Brunet).

        * setup.py now handles --help argument and will print PycURL-specific
          configuration options in addition to distutils help.

        * Windows build configuration has been redone:
          PYCURL_USE_LIBCURL_DLL #define is gone, use --use-libcurl-dll
          argument to setup.py to build against a libcurl DLL.
          CURL_STATICLIB is now #defined only when --use-libcurl-dll is not
          given to setup.py, and PycURL is built against libcurl statically.
          --libcurl-lib-name option can be used to override libcurl import
          library name.

        * Added CURLAUTH_DIGEST_IE as pycurl.HTTPAUTH_DIGEST_IE.

        * Added CURLOPT_POSTREDIR option and CURL_REDIR_POST_301,
          CURL_REDIR_POST_302, CURL_REDIR_POST_303 and CURL_REDIR_POST_ALL
          constants. CURL_REDIR_POST_303 requires libcurl 7.26.0 or higher,
          all others require libcurl 7.19.1 or higher.

        * PycURL now supports Python 3.1 through 3.3. Python 3.0 might
          work but it appears to ship with broken distutils, making virtualenv
          not function on it.

        * PycURL multi objects now have the multi constants defined on them.
          Previously the constants were only available on pycurl module.
          The new behavior matches that of curl and share objects.

        * PycURL share objects can now be closed via the close() method.

        * PycURL will no longer call `curl-config --static-libs` if
          `curl-config --libs` succeeds and returns output.
          Systems on which neither `curl-config --libs` nor
          `curl-config --static-libs` do the right thing should provide
          a `curl-config` wrapper that is sane.

        * Added CURLFORM_BUFFER and CURLFORM_BUFFERPTR.

        * pycurl.version and user agent string now include both
          PycURL version and libcurl version as separate items.

        * Added CURLOPT_DNS_SERVERS.

        * PycURL can now be dynamically linked against libcurl on Windows
          if PYCURL_USE_LIBCURL_DLL is #defined during compilation.

        * Breaking change: opensocket callback now takes an additional
          (address, port) tuple argument. Existing callbacks will need to
          be modified to accept this new argument.
          https://github.com/pycurl/pycurl/pull/18

Version 7.19.0.3 [requires libcurl-7.19.0 or better] - 2013-12-24
-----------------------------------------------------------------

	* Re-release of 7.19.0.2 with minor changes to build Windows packages
	  due to botched 7.19.0.2 files on PyPi.
	  http://curl.haxx.se/mail/curlpython-2013-12/0021.html

Version 7.19.0.2 [requires libcurl-7.19.0 or better] - 2013-10-08
-----------------------------------------------------------------

        * Fixed a bug in a commit made in 2008 but not released until 7.19.0.1
          which caused CURLOPT_POSTFIELDS to not correctly increment reference
          count of the object being given as its argument, despite libcurl not
          copying the data provided by said object.

        * Added support for libcurl pause/unpause functionality,
          via curl_easy_pause call and returning READFUNC_PAUSE from
          read callback function.

Version 7.19.0.1 [requires libcurl-7.19.0 or better] - 2013-09-23
-----------------------------------------------------------------

        * Test matrix tool added to test against all supported Python and
          libcurl versions.

        * Python 2.4 is now the minimum required version.

        * Source code, bugs and patches are now kept on GitHub.

        * Added CURLINFO_CERTINFO and CURLOPT_CERTINFO.

        * Added CURLOPT_RESOLVE.

        * PycURL can now be used with Python binaries without thread
          support.

        * gcrypt is no longer initialized when a newer version of gnutls
          is used.

        * Marked NSS as supported.

        * Fixed relative URL request logic.

        * Fixed a memory leak in util_curl_init.

        * Added CURLOPT_USERNAME and CURLOPT_PASSWORD.

        * Fixed handling of big timeout values.

        * Added GLOBAL_ACK_EINTR.

        * setopt(..., None) can be used as unsetopt().

        * CURLOPT_RANGE can now be unset.

        * Write callback can return -1 to signal user abort.

        * Reorganized tests into an automated test suite.

        * Added CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA.

        * Cleaned up website.

        * Fix pycurl.reset() (patch by <johansen at sun.com>).

        * Fix install routine in setup.py where
          certain platforms (Solaris, Mac OSX, etc)
          would search for a static copy of libcurl (dbp).

        * Fixed build on OpenSolaris 0906 and other platforms on which
          curl-config does not have a --static-libs option.

        * No longer keep string options copies in the
          Curl Python objects, since string options are
          now managed by libcurl.
2014-01-19 09:31:33 +00:00
wiz
cdcbec46ce Fix PKGNAME to include PKGVERSION. 2014-01-19 08:45:16 +00:00
wiz
16297b6893 Use versioned_dependencies.mk for flup. 2014-01-18 19:07:57 +00:00
wiz
5dd23c4af9 Mark as python-2.x version. 2014-01-18 19:05:38 +00:00
wiz
5130a3c30f Import py33-flup-1.0.3pre1 as www/py-flup3.
flup is a collection of modules for the Python Web Server Gateway
Interface, including support for AJP 1.3, FastCGI and SCGI. It also
offers a basic middleware.

This package contains the 3.x version of the module.
2014-01-18 19:05:13 +00:00
wiz
9dcc90af1c Handle python-specific PLIST in the standard way. 2014-01-18 17:53:18 +00:00
obache
012a1105cf treat python version depended PLIST handling with standard way. 2014-01-18 08:08:59 +00:00
wiz
6a5f484a1a Update to 0.8, and fix PLIST for python-3.x.
0.8
  More fixes for the App Engine support.

  Added a new feature that allows you to supply your own provider for the
  CA_CERTS file. Just create a module named ca_certs_locater that has a method
  get() that returns the file location of the CA_CERTS file.

  Lots of clean up of the code formatting to make it more consistent.
2014-01-18 07:43:44 +00:00
wiz
1a3ce01748 Add separate PLISTs for python-2.x and python-3.x, to fix build with
python-3.x.
2014-01-18 07:40:24 +00:00
obache
9bf2a0bf25 + ruby-http 2014-01-17 13:24:06 +00:00
obache
a90b5faf86 Import ruby-http-0.5.0 as www/ruby-http.
part of PR pkg/48447

The HTTP Gem is an easy-to-use client library for making requests from Ruby.
It uses a simple method chaining system for building requests, similar to
libraries like JQuery or Python's Requests.
2014-01-17 13:22:51 +00:00
obache
0d95f54cfa Update ruby-http_parser.rb to 0.6.0.
jruby related improvements and bug fixes
2014-01-17 13:19:18 +00:00
obache
ebfed7363f Update Faraday to 0.9.0.
## v0.9.0

* Add HTTPClient adapter (@hakanensari)
* Improve Retry handler (@mislav)
* Remove autoloading by default (@technoweenie)
* Improve internal docs (@technoweenie, @mislav)
* Respect user/password in http proxy string (@mislav)
* Adapter options are structs.  Reinforces consistent options across adapters
  (@technoweenie)
* Stop stripping trailing / off base URLs in a Faraday::Connection. (@technoweenie)
* Add a configurable URI parser. (@technoweenie)
* Remove need to manually autoload when using the authorization header helpers on `Faraday::Connection`. (@technoweenie)
* `Faraday::Adapter::Test` respects the `Faraday::RequestOptions#params_encoder` option. (@technoweenie)
2014-01-17 08:36:59 +00:00
obache
d33d8ca3fd Update ruby-multipart-post to 2.0.0.
=== 2.0.0 / 2013-12-21

- Drop Ruby 1.8 compatibility
- GH #21: Fix FilePart length calculation for Ruby 1.9 when filename contains
  multibyte characters (hexfet)
- GH #20: Ensure upload responds to both #content_type and #original_filename
  (Steven Davidovitz)
- GH #31: Support setting headers on any part of the request (Socrates Vicente)
- GH #30: Support array values for params (Gustav Ernberg)
- GH #32: Fix respond_to? signature (Leo Cassarani)
- GH #33: Update README to markdown (Jagtesh Chadha)
- GH #35: Improved handling of array-type parameters (Steffen Grunwald)
2014-01-17 08:32:07 +00:00
taca
6b28cfe183 Update drupal7 to 7.26.
Drupal 7.26, 2014-01-15
----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.

Drupal 7.25, 2014-01-02
-----------------------
- Fixed a bug in node_save() which prevented the saved node from being updated
  in hook_node_insert() and other similar hooks.
- Added a meta tag to install.php to prevent it from being indexed by search
  engines even when Drupal is installed in a subfolder (minor markup change).
- Fixed a bug in the database API that caused frequent deadlock errors when
  running merge queries on some servers.
- Performance improvement: Prevented block rehashing from writing blocks to the
  database on every cache clear and cron run when the blocks have not changed.
  This fix results in an extra 'saved' key which is added and set to TRUE for
  each block returned by _block_rehash() that actually is saved to the database
  (data structure change).
- Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  queues to avoid being automatically processed on cron runs (API addition).
- Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  invoked if the block delta had a hyphen in it. To implement the hook when the
  block delta has a hyphen, modules should now replace hyphens with underscores
  when constructing the function name for the hook implementation.
- Fixed a bug which caused cached pages to sometimes be sent to the browser
  with incorrect compression. The fix adds a new 'page_compressed' key to the
  $cache->data array returned by drupal_page_get_cache() (minor data structure
  change).
- Fixed broken tests on PHP 5.5.
- Made the File and Image modules more robust when saving entities that have
  deleted files attached. The code in file_field_presave() will now remove the
  record of the deleted file from the entity before saving (minor data
  structure change).
- Standardized menu callback functions throughout Drupal core to return
  MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  not found" or "access denied" pages (minor API change in the return value of
  these functions under some circumstances).
- Fixed a bug in which caches were not properly cleared when a node was deleted
  via the administrative interface.
- Changed the Bartik theme to render content contained in <pre>, <code> and
  similar tags in a larger font size, so it is easier to read.
- Fixed a bug in the Search module that caused exceptions to be thrown during
  searches if the server was not configured to represent decimal points as a
  period.
- Fixed a regression in the Image module that made image_style_url() not work
  when a relative path (rather than a complete file URI) was passed to it.
- Added an optional feature to the Statistics module to allow node views to be
  tracked by Ajax requests rather than during the server-side generation of the
  page. This allows the node counter to work on sites that use external page
  caches (string change and new administrative option:
  https://drupal.org/node/2164069).
- Added a link to the drupal.org documentation page for cron to the Cron
  settings page (string change).
- Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  object returned by drupal_anonymous_user() to be overridden with a classed
  object (API addition).
- Changed the database API to allow inserts based on a SELECT * query to work
  correctly.
- Changed the database schema of the {file_managed} table to allow Drupal to
  manage files larger than 4 GB.
- Changed the File module's hook_field_load() implementation to prevent file
  entity properties which have the same name as file or image field properties
  from overwriting the field properties (minor API change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.
2014-01-16 15:55:14 +00:00
taca
0b8d808968 Update drupal6 to 6.30.
Drupal 6.30, 2014-01-15
----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2014-001.
2014-01-16 15:54:32 +00:00
morr
ae8eaec4b8 Unbreak build of perl module 2014-01-15 15:12:56 +00:00
kleink
298dedeb7c Update py-flask-security to 1.7.1.
Version 1.7.1
-------------

Released January 14th 2014

- Fixed a bug where passwords would fail to verify when specifying a password hash algorithm


Version 1.7.0
-------------

Released January 10th 2014

- Python 3.3 support!
- Dependency updates
- Fixed a bug when `SECURITY_LOGIN_WITHOUT_CONFIRMATION = True` did not allow users to log in
- Added `SECURITY_SEND_PASSWORD_RESET_NOTICE_EMAIL` configuraiton option to optionally send password reset notice emails
- Add documentation for `@security.send_mail_task`
- Move to `request.get_json` as `request.json` is now deprecated in Flask
- Fixed a bug when using AJAX to change a user's password
- Added documentation for select functions in the `flask_security.utils` module
- Fixed a bug in `flask_security.forms.NextFormMixin`
- Added `CHANGE_PASSWORD_TEMPLATE` configuration option to optionally specify a different change password template
- Added the ability to specify addtional fields on the user model to be used for identifying the user via the `USER_IDENTITY_ATTRIBUTES` configuration option
- An error is now shown if a user tries to change their password and the password is the same as before. The message can be customed with the `SECURITY_MSG_PASSWORD_IS_SAME` configuration option
- Fixed a bug in `MongoEngineUserDatastore` where user model would not be updated when using the `add_role_to_user` method
- Added `SECURITY_SEND_PASSWORD_CHANGE_EMAIL` configuration option to optionally disable password change email from being sent
- Fixed a bug in the `find_or_create_role` method of the PeeWee datastore
- Removed pypy tests
- Fixed some tests
- Include CHANGES and LICENSE in MANIFEST.in
- A bit of documentation cleanup
- A bit of code cleanup including removal of unnecessary utcnow call and simplification of get_max_age method
2014-01-15 09:20:15 +00:00
wiz
e15843bad1 Upstream fixed the .so lines in their manpages, remove workaround.
From Hakan Engvall in PR 48519.

Bump PKGREVISION.
2014-01-14 19:35:48 +00:00
obache
5e1a06b341 Update faraday gem to 0.8.9.
compatibility fixes for Ruby 2.1.0 and 1.8.7.
2014-01-14 08:41:44 +00:00
spz
82b8b892c0 update to version 5.0.3:
This release fixes a security vulnerability in Roller, listed below:
CVE-2014-0030 Apache Roller XML-RPC susceptible to XML Entended Entity attacks
2014-01-12 22:22:25 +00:00
wiz
a0176db1ee Remove FETCH_USING, not a package-setable variable. 2014-01-12 10:46:15 +00:00
wiz
276a0199f5 PYTHON_VERSIONS_INCOMPATIBLE cleanup. 2014-01-12 09:45:24 +00:00
taca
c8427fb05c Update drupal7 to 7.25.
Drupal 7.25, 2014-01-02
-----------------------
- Fixed a bug in node_save() which prevented the saved node from being updated
  in hook_node_insert() and other similar hooks.
- Added a meta tag to install.php to prevent it from being indexed by search
  engines even when Drupal is installed in a subfolder (minor markup change).
- Fixed a bug in the database API that caused frequent deadlock errors when
  running merge queries on some servers.
- Performance improvement: Prevented block rehashing from writing blocks to the
  database on every cache clear and cron run when the blocks have not changed.
  This fix results in an extra 'saved' key which is added and set to TRUE for
  each block returned by _block_rehash() that actually is saved to the database
  (data structure change).
- Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  queues to avoid being automatically processed on cron runs (API addition).
- Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  invoked if the block delta had a hyphen in it. To implement the hook when the
  block delta has a hyphen, modules should now replace hyphens with underscores
  when constructing the function name for the hook implementation.
- Fixed a bug which caused cached pages to sometimes be sent to the browser
  with incorrect compression. The fix adds a new 'page_compressed' key to the
  $cache->data array returned by drupal_page_get_cache() (minor data structure
  change).
- Fixed broken tests on PHP 5.5.
- Made the File and Image modules more robust when saving entities that have
  deleted files attached. The code in file_field_presave() will now remove the
  record of the deleted file from the entity before saving (minor data
  structure change).
- Standardized menu callback functions throughout Drupal core to return
  MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  not found" or "access denied" pages (minor API change in the return value of
  these functions under some circumstances).
- Fixed a bug in which caches were not properly cleared when a node was deleted
  via the administrative interface.
- Changed the Bartik theme to render content contained in <pre>, <code> and
  similar tags in a larger font size, so it is easier to read.
- Fixed a bug in the Search module that caused exceptions to be thrown during
  searches if the server was not configured to represent decimal points as a
  period.
- Fixed a regression in the Image module that made image_style_url() not work
  when a relative path (rather than a complete file URI) was passed to it.
- Added an optional feature to the Statistics module to allow node views to be
  tracked by Ajax requests rather than during the server-side generation of the
  page. This allows the node counter to work on sites that use external page
  caches (string change and new administrative option:
  https://drupal.org/node/2164069).
- Added a link to the drupal.org documentation page for cron to the Cron
  settings page (string change).
- Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  object returned by drupal_anonymous_user() to be overridden with a classed
  object (API addition).
- Changed the database API to allow inserts based on a SELECT * query to work
  correctly.
- Changed the database schema of the {file_managed} table to allow Drupal to
  manage files larger than 4 GB.
- Changed the File module's hook_field_load() implementation to prevent file
  entity properties which have the same name as file or image field properties
  from overwriting the field properties (minor API change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.
2014-01-11 17:06:37 +00:00
adam
41e677f366 Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
joerg
94ceaaf8d0 Needs bash. 2014-01-10 20:08:16 +00:00
rodent
64d54b6a46 Set py-wtforms acceptable dependency versions based on documentation. Added
options framework to allow user to run the unit tests during the build.
Requires py-nose and py-flask-babel, but is disabled by default.
2014-01-10 02:21:53 +00:00
rodent
8b3a46a399 Sync COMMENT with upstream. Also, differentiate it from www/py-flask-babel. 2014-01-10 01:51:54 +00:00
rodent
6243692c2f +py-flask-babel 2014-01-10 01:50:04 +00:00
rodent
cc0bcb9054 Import py27-flask-babel-0.9 as www/py-flask-babel.
Flask-Babel is an extension to Flask that adds i18n and l10n support to any
Flask application with the help of babel, pytz and speaklater. It has builtin
support for date formatting with timezone support as well as a very simple and
friendly interface to gettext translations.
2014-01-10 01:48:58 +00:00
wiz
dae2b9457f Remove obsolete patch 2014-01-09 22:37:39 +00:00
jperkin
475f796ae1 Needs zlib. 2014-01-09 14:27:05 +00:00
jperkin
dbae531453 Needs pkg-config. 2014-01-08 10:13:44 +00:00
jperkin
18d8258bd2 Needs zlib. 2014-01-08 09:57:30 +00:00
wen
2828a30075 Update to 4.66
Upstream changes:
4.66  2014-01-04
  - Added success attribute to Test::Mojo.
  - Improved Mojo::DOM::CSS and Mojo::DOM::HTML performance.
  - Fixed XML detection bug in Mojo::DOM.
  - Fixed escaping bugs in Mojo::DOM::CSS.

4.65  2014-01-02
  - Deprecated use of hash references for optgroup generation with
    select_field helper in favor of Mojo::Collection objects.
  - Added b and c helpers to Mojolicious::Plugin::DefaultHelpers.
  - Fixed reference handling bug in Mojo::Collection.

4.64  2014-01-01
  - Fixed helper export bug in Mojolicious::Plugin::EPRenderer.

4.63  2013-12-19
  - Deprecated Mojolicious::secret in favor of Mojolicious::secrets.
  - Added support for rotating secrets.
  - Added secrets method to Mojolicious.

4.62  2013-12-17
  - Deprecated Mojo::URL::to_rel.

4.61  2013-12-16
  - Added select_one method to Mojo::DOM::CSS.
  - Improved performance of Mojo::DOM::at significantly.

4.60  2013-12-11
  - Improved Mojolicious::Validator::Validation to allow custom validation
    errors.

4.59  2013-12-04
  - Added CSRF protection support.
  - Added support for permessage-deflate WebSocket compression.
  - Added csrf_protect method to Mojolicious::Validator::Validation.
  - Added build_message method to Mojo::Transaction::WebSocket.
  - Added csrf_token attribute to Mojolicious::Validator::Validation.
  - Added compressed and context_takeover attributes to
    Mojo::Transaction::WebSocket.
  - Added csrf_token helper to Mojolicious::Plugin::DefaultHelpers.
  - Added csrf_field helper to Mojolicious::Plugin::TagHelpers.
  - Removed deprecated mode specific methods in application class.
  - Relicensed all artwork to CC-SA version 4.0.
2014-01-08 06:21:34 +00:00
jperkin
e0265b3fd1 Fix build on SunOS, no <paths.h> and needs socket libraries. 2014-01-07 19:35:28 +00:00
rodent
9f0941b69e Curses! This package needs py-curses. (Thought i'd added it when it was in
-wip...) Thanks to kleink for the notice.
2014-01-06 15:25:21 +00:00
rodent
850af9494a +py-uwsgitop 2014-01-05 17:48:12 +00:00
rodent
d0b504d04c Import py27-uwsgitop-0.6.2 as www/py-uwsgitop.
uwsgitop is a top-like command that uses the stats server. Run your uWSGI server
with the stats server enabled. Ex.:

uwsgi --module myapp --socket :3030 --stats /tmp/stats.socket

Then, connect uwsgitop to the stats socket:

uwsgitop /tmp/stats.socket
2014-01-05 15:09:52 +00:00
wen
ba46b7b9bc Add py-uliweb 2014-01-05 12:48:38 +00:00
wen
c3e6563a8a Import uliweb-0.2.3 as www/py-uliweb.
Uliweb is a full-stacked Python based web framework. It has three
main design goals, they are: reusability, configurability, and
replaceability. All the functionalities revolve around these goals.
2014-01-05 12:47:31 +00:00
rodent
4d331a9aae Fix patch header. 2014-01-05 03:46:11 +00:00
rodent
cdcf0e07f5 Update to 1.4.10, the oldest version supported by upstream. See py-uwsgi in
-wip for the newest supported version. Partial ChangeLog:

 * 1.4.1

- fixed typos in corerouter plugins
- fixed offloading when the number of threads is higher than 1
- fixed static_maps for non-existent paths
- fixed uwsgi_connect() on modern Linux systems to reset the socket to blocking mode

 * 1.4

- gevent improvements
- improved http/https router and fastrouter
- Go official support
- a new set of infos are exported to the stats system
- improved systemd support
- log filtering and routing
- improved tracebacker
- offload transfer for static files, and network transfers
- matheval support
- plugins can be written in Obj-C
- smart attach daemon
- added support for PEP 405 virtualenvs
- rawrouter with xclient support
- internal routing plugin for cache

 * 1.3

- python tracebacker
- user-governed harakiri
- simplified external plugin development
- Linux namespace mountpoint improvements
- secured subscription system
- merged routers codebase (fastrouter, http, rawrouter)
- https support in the http router
- config report at the end of uWSGI build process
- improved subscription system (multicast and unix socket)
- custom options
- graceful reloads on shared sockets
- configurable log-master buffer size
- extreme-optimizations for the stats subsystem
- redislog and mongodblog plugins
- added python logger
- mongodb and postgres imperial monitors
- implemented psgix.logger and psgix.cleanup
- full rack spec compliance
- preliminary ipv6 support
- gevent graceful reloads
- support for multiple loggers and logformat
- lazy-apps to load apps after fork() but without changing reloading subsystem
- emperor heartbeat subsystem
- cheaper busyness plugin
- pluggable clock sources
- added router_rewrite and router_http plugins
- external spoolers
- support for section:// and fd:// loaders
- alarm subsystem (with curl and xmpp plugins)
2014-01-04 13:56:01 +00:00
wen
a3a028661c Update to 0.11
Update DEPENDS

Upstream changes:
0.11      2013-12-15 14:19:22 Europe/Amsterdam

    [ ENHANCEMENTS ]
    * GH#481: Don't pollute @INC automatically when Dancer2 is imported, each
      runner is now responsible of including the local ./lib dir if needed.
    * GH#469, 418: Dancer2::Plugin provides a ':no_dsl' flag for modern Plugins
      (Pedro Melo)
    * GH#485: Keywords 'redirect' and 'forward' exit immediatly when executed in
      a route/hook. New dependency on Return::MultiLevel (Russell Jenkins).
    * GH#495: Use accessor and predicates instead of direct access.
      Addresses GH#493 too. (Russell Jenkins)
    * GH#502,GH#472: Rework halt to use with_return from Return::MultiLevel.
      (Russell Jenkins)
    * GH#479,GH#480,GH#508: Pass parameters to params() in the DSL.
      (Slava Goltser, unickuity, Russell Jenkins)
    * GH#505: Fix empty HTTP_REFERER in Dancer::Core::Request (Menno Blom).
    * GH#503: Multiple reverse proxy support (Menno Blom).
    * GH#371,GH#506: CLI tool rewrite (using App::Cmd, supports plugins, etc.).
      (Ivan Kruglov, Samit Badle, Sawyer X)
    * GH#498: Add some missing items in MANIFEST.SKIP (Gabor Szabo, Sawyer X).

    [ DOCUMENTATION ]
    * GH#489: Remove link to Dancer2::Deployment pod which does not exist
      (Sweet-kid)
    * GH#511: s/Deflator/Deflater/; (Cesare Gargano)
    * GH#491: Updated config paths for template_toolkit in cookbook.
      (Mark A. Stratman)
    * GH#494: Update session config details (Dancer2::Config),
      namespace fixup in Dancer2::Core::cookie.
      (Russell Jenkins)
    * GH#470: Fix Plack::Builder mount usage (Pedro Melo).
    * GH#507: Fix plenty of typos (David Steinbrunner).
    * GH#477: Document problem with Plack Shotgun on Windows (Ahmad M. Zawawi).
    * GH#504: Add link to Dancer2::Plugin::Sixpack (Menno Blom).
    * GH#490: Document Dancer2 should be FatPackable (Sawyer X).
    * GH#452: Make a complete authors section, clean it up (Pau Amma).
    * More fixes to main documentation (Pau Amma).
2014-01-04 12:02:05 +00:00
richard
b76d69d9c9 distfiles update for fixed dtrace patch in patch-as 2014-01-03 17:35:34 +00:00
richard
dc3bf6fa83 fix dtrace patch in patch-as 2014-01-03 17:15:23 +00:00
wen
5ed5403d52 Update to 1.3120
Upstream changes:
1.3120 24.12.2013

    [ ENHANCEMENTS ]
    * GH #974: Make plugins play nicely with mro 'c3'. (Fabrice Gabolde)

    [ DOCUMENTATION ]
    * GH #972: Correction of a truckload of typos. (David Steinbrunner)
    * GH #971: Stress that the request's 'env()' method is prefered over
        accessing '%ENV' directly. (isync)
    * GH #968: Fix 'ScriptAlias' example in Deployment docs. (reported
        by tednolan)
    * GH #976: Document and trap limitation in Dancer::Test. (Tom Hukins)
    * GH #976: Improve references to related modules. (Tom Hukins)
2014-01-03 16:02:55 +00:00
martin
a8bfbf11ea Fix build (on systems that do not accidently bring in a memcpy prototype
via other includes). No change of the binary pkg if it did build before.
2014-01-03 14:30:28 +00:00
obache
252bdb65db Fixes PHP version check condition:
* move phpversion.mk to above of checking php version
* use PKG_PHP_VERSION for PHP version check, PHP_PKG_PREFIX is not a integer.
2014-01-03 08:47:51 +00:00
rodent
6b39044dd4 +py-flask-bootstrap 2014-01-03 03:35:24 +00:00
rodent
ceee53ac94 Import py27-flask-bootstrap-3.0.3.1 as www/py-flask-bootstrap.
Flask-Bootstrap packages Twitter's Bootstrap into an extension that mostly
consists of a blueprint named 'bootstrap'. It can also create links to serve
Bootstrap from a CDN and works with no boilerplate code in your application.
2014-01-03 03:34:00 +00:00
schmonz
dc6689878e Update to 3.20140102. From the changelog:
* aggregate: Improve display of post author.
* poll: Fix behavior of poll buttons when inlined.
* Fixed unncessary tight loop hash copy in saveindex where a pointer
  can be used instead. Can speed up refreshes by nearly 50% in some
  circumstances.
* Optimized loadindex by caching the page name in the index.
* Added only_committed_changes config setting, which speeds up wiki
  refresh by querying git to find the files that were changed, rather
  than looking at the work tree. Not enabled by default as it can
  break some setups where not all files get committed to git.
* comments: Write pending moderation comments to the transient underlay
  to avoid conflict with only_committed_changes.
* search: Added google_search option, which makes it search google
  rather than using the internal xapain database.
  (googlesearch plugin is too hard to turn on when xapain databases
  corrupt themselves, which happens all too frequently).
* osm: Remove invalid use of charset on embedded javascript tags.
  Closes: #731197
* style.css: Add compatibility definitions for more block-level
  html5 elements. Closes: #731199
* aggregrate: Fix several bugs in handling of empty and colliding
  titles when generating filenames.
2014-01-03 02:28:11 +00:00
wiz
750599674c Update to 1.3.3:
Serf 1.3.3 [2013-12-09, from /tags/1.3.3, r????]
  Fix issue 129: Try more addresses of multihomed servers
  Handle X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE correctly (r2225)
  Return APR_TIMEUP from poll() to enable detecting connection timeouts (r2183)
2014-01-02 18:36:40 +00:00
jperkin
4bf712c351 php-apc isn't available for PHP 5.5+, use php-opcache then instead. 2014-01-02 15:44:10 +00:00
mrg
346d3eaf38 update to bozohttpd 20140102. changes include:
o  update a few content types
        o  add support for directly calling lua scripts to handle
           processes, from mbalmer@netbsd.org
        o  properly escape generated HTML
        o  add authentication for redirections, from martin@netbsd.org
        o  handle chained ssl certifications, from elric@netbsd.org
        o  add basic support for gzipped files, from elric@netbsd.org
        o  properly escape generated URIs

XXX: could integrate this with lua, but left undone for now.
2014-01-02 09:02:22 +00:00
kleink
8f027d6255 Update py-flask-login to 0.2.9.
Version 0.2.9-dev
-----------------

Released on December 28th, 2013

- Fixes anonymous user assignment.
- Fixes localization in Python 3.


Version 0.2.8
-------------

Released on December 21st 2013

- Support login via authorization header. This allows login via Basic Auth, for
  example. Useful in an API presentation context.
- Ability to override user ID method name. This is useful if the ID getter is
  named differently than the default.
- Session data is now only read when the user is requested. This can be
  beneficial for cookie and caching control when differenting between
  requests that use user information for rendering and ones where all users
  (including anonymous) get the same result (e.g. static pages)
- BREAKING: User *must* always be accessed through the ``current_user``
  local. This breaks any previous direct access to ``_request_ctx.top.user``.
  This is because user is not loaded until current_user is accessed.
- Fixes unnecessary access to the session when the user is anonymous
  and session protection is active.
  see https://github.com/maxcountryman/flask-login/issues/120
- Fixes issue where order dependency of applying the login manager
  before dependent applications was required.
  see https://github.com/mattupstate/flask-principal/issues/22
- Fixes Python 3 ``UserMixin`` hashing.
- Fixes incorrect documentation.
2014-01-01 17:56:43 +00:00
kleink
aa52d00f3f Update py-flask-wtf to 0.9.4.
Version 0.9.4
-------------

Released 2013/12/20

- Bugfix for csrf module when form has a prefix
- Compatible support for wtforms2
- Remove file API for FileField
2014-01-01 17:51:49 +00:00
wiz
e03c03b6dc Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump. 2014-01-01 11:52:02 +00:00
adam
69f533e673 Changes 1.8.5.2:
* "git diff -- ':(icase)makefile'" was unnecessarily rejected at the
  command line parser.
* "git cat-file --batch-check=ok" did not check the existence of
  the named object.
* "git am --abort" sometimes complained about not being able to write
  a tree with an 0{40} object in it.
* Two processes creating loose objects at the same time could have
  failed unnecessarily when the name of their new objects started
  with the same byte value, due to a race condition.
Also contains typofixes, documentation updates and trivial code clean-ups
2014-01-01 11:14:38 +00:00
rodent
b2bf3cbc5b +py-http-parser 2013-12-31 19:33:29 +00:00
rodent
6ae601bafe Import py27-http-parser-0.8.3 as www/py-http-parser.
HTTP request/response parser for Python compatible with Python 2.x (>=2.6),
Python 3 and Pypy. If possible a C parser based on http-parser from Ryan Dahl
will be used.
2013-12-31 19:32:32 +00:00
wiz
df7bdf2a4b Update to 2.2.9:
Tue Dec 10 15:49:46 GMT 2013  - surfraw 2.2.9

        * New elvi:
          + S - search using w3_custom_search (see below)
          + cisco - search Cisco documentation
          + debcodesearch - search Debian codebase
          + github - search github
          + gmane - search mailing lists
          + jquery - search jQuery documentation
          + mdn - search Mozilla Developer Network
          + mysqldoc - search MySQL documentation
          + oraclesearch - search Oracle documentation
          + pgdoc - search PostgreSQL documentation
          + phpdoc - search PHP documentation
          + pin - search pinboard.in
          + wolfram - search Wolfram Alpha
          + yacy - search YaCy P2P search engines, including ScienceNet
        * Changed elvi:
          + aur - uses HTTPS by default, use -no-https to disable
          + deblists
            * Removed options -author, -lists, -lang
            * added options -ml (message links) and -mv (list view)
          + duckduckgo:
            * removed -p (clashes with global print option), use -safe instead
            * stopped -l[ucky] from clobbering -lh
          + google: changed -g option to -G to avoid clash with -g for graphical view
        * Fixed elvi: ask, ctan, deli, genportage, jamendo, javasun, openbsd
          musicbrainz, rae, slashdot, slinuxdoc
        * Removed elvi for dead sites: happypenguin, scroogle, sunonesearch (replaced by oraclesearch)
        * w3_custom_search
          + elvi that use a search engine as a backend with site: and inurl:
            can now choose which search engine to use.
            So far, google and duckduckgo are supported, with duckduckgo the default.
          + Affected elvi: mdn, mysqldoc, netbsd, openbsd, pgdoc, slinuxdoc
          + To select on the commandline use -custom-search=google or -custom-search=duckduckgo
          + Or configure SURFRAW_customsearch_provider
        * New variable: SURFRAW_bookmark_search_elvis
	  When using searchable bookmarks, if all else fails run this elvis.
          Defaults to google
        * New example elinks integration script in examples/hooks.lua.
        * Debian packaging now included in release, in debian/ dir.
        * Known problems at time of release
          + deblogs - down (hopefully) temporarily
          + yacy - demo portal down, ScienceNet still up
          + scicom - down, status unknown
2013-12-31 17:39:48 +00:00
abs
d81292a5da Update to later snapshot - many many changes - key item is:
- Made it work with OpenJDK build 25
Otherwise 1600 lines of changelog without any clear way to filter
Bump PKGREVISION
2013-12-31 17:09:02 +00:00
wiz
d559a05b08 + php-tt-rss-fever-plugin 2013-12-31 16:52:09 +00:00
wiz
1842144f64 Import php-tt-rss-fever-plugin-1.2 as www/php-tt-rss-fever-plugin.
This enable Fever emulation in Tiny Tiny RSS, to make Tiny Tiny
RSS accessible for more different news readers which support Fever.
2013-12-31 16:51:46 +00:00
adam
938546ad2f Changes 1.6.1:
Bug fixes
Fixed BCryptSHA256PasswordHasher with py-bcrypt and Python 3.
Fixed a regression that prevented a ForeignKey with a hidden reverse manager (related_name ending with ‘+’) from being used as a lookup for prefetch_related.
Fixed Queryset.datetimes raising AttributeError in some situations.
Fixed ModelBackend raising UnboundLocalError if get_user_model() raised an error.
Fixed a regression that prevented editable GenericRelation subclasses from working in ModelForms.
Added missing to_python method for ModelMultipleChoiceField which is required in Django 1.6 to properly detect changes from initial values.
Fixed django.contrib.humanize translations where the unicode sequence for the non-breaking space was returned verbatim.
Fixed loaddata error when fixture file name contained any dots not related to file extensions or when fixture path was relative but located in a subdirectory.
Fixed display of inline instances in formsets when parent has 0 for primary key.
Fixed a regression where custom querysets for foreign keys were overwritten if ModelAdmin had ordering set.
Removed mention of a feature in the --locale/-l option of the makemessages and compilemessages commands that never worked as promised: Support of multiple locale names separated by commas. It’s still possible to specify multiple locales in one run by using the option multiple times.
Fixed a regression that unnecessarily triggered settings configuration when importing get_wsgi_application.
Fixed test client logout() method when using the cookie-based session backend.
Fixed a crash when a GeometryField uses a non-geometric widget.
Fixed password hash upgrade when changing the iteration count.
Fixed a bug in the debug view when the URLconf only contains one element.
Re-added missing search result count and reset link in changelist admin view.
The current language is no longer saved to the session by LocaleMiddleware on every response, but rather only after a logout.
Fixed a crash when executing runserver on non-English systems and when the formatted date in its output contained non-ASCII characters.
Fixed a crash in the debug view after an exception occurred on Python ≥ 3.3.
Fixed a crash in ImageField on some platforms (Homebrew and RHEL6 reported).
Fixed a regression when using generic relations in ModelAdmin.list_filter.
2013-12-31 12:02:53 +00:00
adam
ef3005f3dc Changes 3.4.2:
* Added missing header in client_side_reply.cc for clang
* Bug 3498: FTP PUT assertion Server.cc:246: 'r->body_pipe != NULL'
* Bug 3985: 60s limit introduced by balance_on_multiple_ip breaks bad IP recovery
* Fix \-unescaping in quoted strings from helpers
* WCCPv2: fix assertion 'Cannot convert non-IPv4 to IPv4' on FreeBSD
* Fix missing cast in rev.13162
* Bug 3980: FATAL ERROR due to max_user_ip -s option
* Fix linker errors "relocation R_X86_64_32 against .rodata"
* Regression in URL helper API
* Bug 3806: Caching responses with Vary header
* Set sslcrtvalidator_children concurrency option default value to 1
* Release notes: update HTML version
2013-12-31 11:54:32 +00:00
adam
1b2c1b0a02 Changes 7.34.0:
SSL: protocol version can be specified more precisely
imap/pop3/smtp: Added graceful cancellation of SASL authentication
Add "Happy Eyeballs" for IPv4/IPv6 dual connect attempts
base64: Added validation of base64 input strings when decoding
curl_easy_setopt: Added the ability to set the login options separately
smtp: Added support for additional SMTP commands
curl_easy_getinfo: Added CURLINFO_TLS_SESSION for accessing TLS internals
nss: allow to use TLS > 1.0 if built against recent NSS
SECURITY: added this document to describe our security processes
parseconfig: warn if unquoted white spaces are detected

Bugfixes:
SECURITY VULNERABILITY: libcurl cert name check ignore with GnuTLS
darwinssl: un-break iOS build after PKCS/12 feature added
tool: use XFERFUNCTION to save some casts
usercertinmem: fix memory leaks
ssh: Handle successful SSH_USERAUTH_NONE
NSS: acknowledge the --no-sessionid/CURLOPT_SSL_SESSIONID_CACHE option
test906: Fixed failing test on some platforms
sasl: initialize NSS before using NTLM crypto
sasl: Fixed memory leak in OAUTH2 message creation
imap/pop3/smtp: Fixed QUIT / LOGOUT being sent when SSL connect fails
cmake: unbreak for non-Windows platforms
ssh: initialize per-handle data in ssh_connect()
glob: fix broken URLs
configure: check for long long when building with cyassl
CURLOPT_RESOLVE: mention they don't time-out
docs/examples/httpput.c: fix build for MSVC
FTP: make the data connection work when going through proxy
NSS: support for CERTINFO feature
curl_multi_wait: accept 0 from multi_timeout() as valid timeout
glob_range: pass the closing bracket for a-z ranges
tool_help: Updated --list-only description to include POP3
Curl_ssl_push_certinfo_len: don't %.*s non-zero-terminated string
cmake: fix Windows build with IPv6 support
ares: Fixed compilation under Visual Studio 2012
curl_easy_setopt.3: clarify CURLOPT_SSL_VERIFYHOST documentation
curl.1: mention that -O does no URL decoding
darwinssl: PKCS/12 import feature now requires Lion or later
darwinssl: check for SSLSetSessionOption() presence when toggling BEAST
configure: Fix test with -Werror=implicit-function-declaration
sigpipe: factor out sigpipe_reset from easy.c
curl_multi_cleanup: ignore SIGPIPE
globbing: curl glob counter mismatch with {} list use
parseconfig: dash options can't specified with colon or equals
digest: fix CURLAUTH_DIGEST_IE
curl.h: for OpenBSD
darwinssl: Fix #if 10.6.0 for SecKeychainSearch
TFTP: fix return codes for connect timeout
login options: remove the ;[options] support from CURLOPT_USERPWD
imap: Fixed incorrect fallback to clear text authentication
parsedate: avoid integer overflow
curl.1: document -J doesn't %-decode
multi: add timer inaccuracy margin to timeout/connecttimeout
2013-12-31 11:48:03 +00:00
ryoon
5a738ae828 Update to 2.5.3 from 2.4.6
Changelog:
2.5.3:
Bugs Fixed

    0002967: [display] Album list management display enhancement, faster load
    0002964: [configuration] zero should be allowed for the recent period
    0002980: [other] Fatal error when renaming a group
    0002977: [albums] move a public album into a private album may create inconsistent permissions
    0002975: [template] Internet Explorer 7, album creation form is broken
    0002974: [configuration] avoid deprecated errors
    0002973: [metadata] missing characters from IPTC when using encoding windows-1252
    0002970: [other] Division by zero on batch manager
    0002934: [authentication] [Smartpocket ] Can't register

2.5.2:
Bugs Fixed

    0002921: [tags] Can't create tags with special chars like ( + [
    0002915: [synchronization] synchronization not really disabled
    0002894: [albums] set as album thumbnail on picture.php does not apply to all users
    0002895: [display] dark administration theme, plugins menu flashes
    0002907: [albums] wrong number of sub-albums
    0002917: [web API] [pwg.images.delete] if the photo is album thumbnail, blocking error on gallery
    0002909: [users & groups] give permission on an empty list of albums produces SQL error
    0002901: [photos] [Batch Manager] french, set author action, default value should disappear
    0002899: [metadata] ability to allow HTML in EXIF/IPTC
    0002896: [technical] Apply trigger render_element_description for thumbnail title (for picture description)

Technical changes

    0002922: [technical] Add caseSensitive option to TokenInput (web form for tag creation)
    0002929: [photos] [multiple size] strip metadata on configurable threshold
    0002925: [template] new function theme_delete

2.5.1:
Bugs Fixed

    0002892: [web API] [pwg.images.setInfo] empty tag_ids input parameter produces errors
    0002865: [database] [mysqli] support for mysql sockets and port number
    0002891: [navigation] unexpected flat parameter in home link on picture page breadcrumb
    0002864: [authentication] open_basedir restriction and new password generator
    0002887: [user comments] Comments accessible anonymously if comments author is known
    0002861: [installation & upgrade] invalid password on manual upgrade
    0002867: [template] [LocalFiles Editor] can't create new template-extension
    0002881: [web API] [pwg.images.addSimple] undefined constant tags-assumed "tags"

2.5.0
Many changes include
User features

    User comments: Email and Website added
    Tag duplication
    Pagination on albums
    Batch manager: filter on dimensions
    Group manager

    Better looking icons
    Connect with Facebook, Google, OpenID...
    Temporary image while loading
    51 languages
    Physical vs virtual albums

    Protection of original photos
    Tag exclusion in quick search
    IP address and sessions

Tecnical features

    New web API explorer
    increased security on passwords
    mysqli library for MySQL
    JSmin replaced by JavaScriptPacker

    Sprite for flags
    Sessions can store infos, errors and warnings
    Add triggers on all main pages
    Add template method to sort action buttons

    jquery 1.8.3, jquery.ui 1.10.1
    Earlier detection of mobile device
    Triggers for login system

2.4.7:
Bugs Fixed

    0002819: [template] Link problem in menu with smartpocket
    0002843: [security] [install.php on Windows] improved security on temporary config file download (reported by htbridge and fixed in collaboration with Gjoko Krstic)
    0002844: [security] increase security on LocalFiles Editor (reported by htbridge)
    0002793: [technical] Fatal error: Cannot redeclare PclZipUtilPathReduction
    0002797: [template] local css for "clear" impacts admin theme "clear"
2013-12-31 05:51:31 +00:00
ryoon
0b351e4ed2 Fix pasto, and change default mysql version. 2013-12-31 05:44:29 +00:00
dholland
7999b17fb9 Update the COMMENTs for the firefox packages to include the upstream
version number, as suggested in PR 47418 a year ago. Also make sure
the localization packages claim they belong to the right corresponding
firefox packages, as a number of them were wrong.
2013-12-30 00:24:07 +00:00
taca
84170447ef Explicitly disable CPU optimized instruction. (--enable-arch-native is
default.)  Enabling CPU optimized instruction gains some performance, but
it lost portability of the binary package.

Bump PKGREVISION.
2013-12-29 12:10:45 +00:00
hauke
ed838e4bd9 For PKG_OPTIONS.squid = -ssl, do not PLIST files that will not be
installed.
2013-12-28 19:50:34 +00:00
ryoon
d73851f1d4 Update to 3.8
Changelog:
For WordPress 3.8 ja
* Update WP Multibyte Patch to 1.9

For WordPress 3.8
Highlights

    Introduces a new, modern admin design
        A fresh, uncluttered design
        Clean typography with Open Sans
        Superior contrast and large, comfortable type
        Responsive interfaces throughout
        Refined, theme management
        Smoother, click-to-add widget management

    New Default Theme - Twenty Fourteen
        Easily create a responsive magazine website with a sleek, modern design.
        Feature your favorite homepage content in either a grid or a slider.
        Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors.

    For Developers
        External Libraries have been updated.
        Better RTL support

What's New
General

    Replace PNG-based plugins ratings stars with Dashicons for performance gains
    Improved help tab text in various screens
    Clicking "Check Again" on the Updates screen now provides more immediate feedback

Dashboard

    Consolidate several Dashboard widgets to improve readability
    Replace the 'Right Now' widget with the new and improved 'At a Glance' widget

Appearance

    Introduce 8 new admin color schemes
    Improved readability throughout using Open Sans typeface (where supported)
    Responsive Toolbar for smaller-screen devices
    Leverage Dashicons instead of icon sprites for crisper experience on all resolutions
    Big RTL improvements throughout
    Make the dashboard more usable on any size device with responsive all the things
    Improve the login screen experience for Internet Explorer 8 users
    Improve Quick Edit experience for non-English users
    Improve the Menus experience for mobile users

Themes

    New Default Theme -- Twenty Fourteen
    Make it possible to check for any post format assigned to a post with has_post_format()
    Better custom background theme support defaults, can now specify 'default-repeat', 'default-position-x', and 'default-attachment' arguments for background images.
    Tags for width changed to layout: responsive-layout, fluid-layout, and fixed-layout
    New tag: accessibility-ready to denote a theme is aware of accessibility best practices such as color contrast, keyboard navigation, and form/link focus. See WP theme accessibility guidelines.
    Theme screenshots' size have increased from 600x450 to 880x    660.

Widgets

    New click-to-add interface for adding widgets to sidebars
    Improved interface for devices of all resolutions
    Better drag-and-drop experience

Accessibility

    Make list table row actions keyboard accessible
    Improve color contrast throughout the admin

Multisite

    Improved performance when deleting users in Multisite

Under The Hood
General

    Heartbeat performance and API improvements
    A $taxonomy argument was added to each of the adjacent post functions.
    Define $is_nginx in vars.php
    Apply capital_P_dangit() to the wp_title filter
    Make sure ajaxurl is defined in the Customizer
    validate_active_plugins() now checks the manage_network_plugins capability instead of is_super_admin()
    Allow passing false for the meta_box_cb argument in register_taxonomy() to turn off the meta box display entirely
    Make it easier to target video shortcodes by adding a wp-video class to the parent container
    Add CSSMin, SASS, CSSJanus, and jsHint to build tools for core development

Bug Fixes

    Fix bug where top-level categories were only redirecting if they had no children
    Fix bug in wp_get_object_terms() where returned were strings not integers
    Fix a bug where passing a null value to meta_query resulted in wonkiness with the comparison operator
    Fix "'wp_signups' already exists for query" error after updating a Multisite network
    Fix bug in get_bookmarks() caused by missing parentheses
    Fix comment_notification_recipients filter behavior so that it is still respected even on comments left by the post author
    Fix a date comparison error in dashboard_relative_date()
    Fix keyboard accessibility for row actions in list tables.
    Fix no-js and accessibility modes in in the Widgets screen
    Fix a bug where menus could still be assigned to a non-existent theme location
    Silence jQuery Migrate errors in the General settings page

Multisite
Classes

    Introduce WP_Screen::remove_option()
    Introduce WP_Screen::remove_options()
    Introduce WP_Screen::get_options()

Functions

    Introduce wp_dashboard_quick_press()
    Introduce wp_dashboard_site_activity()
    Introduce wp_dashboard_recent_posts()
    Introduce wp_dashboard_recent_comments()
    Introduce wp_dashboard_primary_output()
    Introduce wp_heartbeat_set_suspension()
    Introduce wp_star_rating()
    Introduce get_theme_update_available()
    Introduce wp_prepare_themes_for_js()


Actions & Filters
Actions

    Introduce automatic_updates_complete

Filters

    Introduce automatic_updates_debug_email
    Introduce wp_prepare_themes_for_js

External Libraries

    Add a copyright notice to zxcvbn (password strength meter) script

Deprecated

    screen_icon()
    get_screen_icon()
    wp_dashboard_incoming_links_output()
    wp_dashboard_secondary_output()
    wp_dashboard_incoming_links()
    wp_dashboard_incoming_links_control()
    wp_dashboard_plugins()
    wp_dashboard_primary_control()
    wp_dashboard_recent_comments_control()
    wp_dashboard_secondary()
    wp_dashboard_secondary_control()
    no_update_actions()

Miscellaneous

    Many unused images were removed from core. See the full list
2013-12-27 22:55:20 +00:00
ryoon
3d3f6e118c Fix typo 2013-12-27 16:46:12 +00:00
ryoon
c27e527930 Update to 6.0.0a
* Switch to 6 branch
* Replace interpreters with REPLACE_*

Changelog:
Version 6.0.0a Dec 14th 2013

    Remove wrong warnings from logfile
    Fix LDAP authentication
    Fix LDAP configuration
    Fix Share dialog
    Fix migration under certain conditions
    Fix database encoding for old PHP versions
    Fix select all checkbox
    Fix migration with lucene search enabled
    Fix migration for postgresql


Version 6.0.0 Dec 11th 2013

    User Avatars
    Previews in files app and other places
    Updated design, less clutter and more whitespace
    Public gallery sharing
    Activities
    Better file conflict handling dialog
    Improved public App API
    Sharing API
    Example Files
    Share Email Notifications
    New Doctrine based database layer
    Plural translations
    Refactored OC.dialogs (both code and design wise)
    Priorize often used languages in personal-settings language selection
    Update jquery to 1.10.0 and add jquery-migrate 1.2.1
    Show a summary as the last filelist entry
    Improve app-management (more verbose error-messages)
    Show ‘More apps’ link to app administration directly in app navigation
    Templates for newly created files
    Add MB indicator to size column
    Google Drive external storage uses a new library
    New icons for shared and external folders
    File uploads conflicts dialog
    Possibility to prepopulate a new users home with a skeleton
    Public upload with encryption enabled
    Users now can decrypt the files again if their encryption app was enabled
    Many quota related fixes
    Total used space (with quota) now only counts user’s own files
    Many external storage fixes, improved performance
    Improved file navigation performance by using Ajax calls (no full page reload for each folder)
    The file owner can now also restore deleted shared files
    New version drop-down with previews and the ability to downloading versions directly
2013-12-27 15:56:38 +00:00
ryoon
2ec4f4f75f Remove two patches to avoid conflict with files/.
These patches are stored in files/.
2013-12-27 06:39:25 +00:00
ryoon
81d440946f Update to 2.23
* Sync with seamonkey-2.23
2013-12-26 13:21:31 +00:00
ryoon
485ba68a7b Update to 2.23
Changelog:
SeaMonkey-specific changes

    Download progress is now shown in the Mac OS X app dock icon.
    EXIF orientation is now being used when displaying attached images in MailNews.
    "This folder is being processed... to get messages." alerts on active MailNews folders now identify the account or folder.
    MailNews notifications have a new look.
    See the changes page for a more complete overview.

Mozilla platform changes

    All plugins, with the exception of recent Flash plugins, now default to click-to-play.
    The password manager now supports script-generated password fields.
    Support for H.264 on Linux is now available if the appropriate GStreamer plugins are installed.
    Support for MP3 decoding on Windows XP has been added, completing MP3 support across Windows OS versions.
    The CSP implementation now supports multiple policies, including the case of both an enforced and Report-Only policy, per the spec.
    There is no longer a prompt when websites use appcache.
    Support for the CSS image orientation property has been added.
    IndexedDB can now be used as an "optimistic" storage area so it does not require any prompts and data is stored in a pool with LRU eviction policy, in short temporary storage.
    When displaying a standalone images, the EXIF orientation information contained within the JPEG image is now matched (bug 298619).
    Page load times have been improved due to no longer decoding images that are not visible (bug 847223).
    Support for the AudioToolbox MP3 backend has been added on Mac OS X (bug 914479).
    Fixed several stability issues.

Fixed in SeaMonkey 2.23
MFSA 2013-117 Mis-issued ANSSI/DCSSI certificate
MFSA 2013-116 JPEG information leak
MFSA 2013-115 GetElementIC typed array stubs can be generated outside observed typesets
MFSA 2013-114 Use-after-free in synthetic mouse movement
MFSA 2013-113 Trust settings for built-in roots ignored during EV certificate validation
MFSA 2013-112 Linux clipboard information disclosure though selection paste
MFSA 2013-111 Segmentation violation when replacing ordered list elements
MFSA 2013-110 Potential overflow in JavaScript binary search algorithms
MFSA 2013-109 Use-after-free during Table Editing
MFSA 2013-108 Use-after-free in event listeners
MFSA 2013-107 Sandbox restrictions not applied to nested object elements
MFSA 2013-106 Character encoding cross-origin XSS attack
MFSA 2013-104 Miscellaneous memory safety hazards (rv:26.0 / rv:24.2)
2013-12-26 13:17:37 +00:00
ryoon
6ca7b52b92 Use absolute path for seamonkey and firefox. 2013-12-26 13:12:05 +00:00
wiz
d33dfdeb7c Reset maintainer for resigned developers. 2013-12-23 11:57:02 +00:00
wiz
46a4626b8a Depend on php-iconv: updater for 1.9 complains:
"PHP support for iconv is required to handle multiple charsets."
Bump PKGREVISION.
2013-12-21 19:46:24 +00:00
taca
75b62f73f5 Update contao32 (and contao32-example) to 3.2.3 during the freeze to
fix a few trivial (but nasty) problems of this almost leaf package:
approved by gdt@.


Version 3.2.3 (2013-12-20)
--------------------------

### Fixed
Correctly resize the mediaboxAdvanced in IE11 (see #6504).

### Fixed
Set the correct status header for cached files (see #6585).

### Fixed
Correctly set the empty value depending on the DB field (fixes #6550, #6544).

### Fixed
Prevent saving of detached models (see #6506).

### Fixed
Correctly determine the ACE editor's height (see #6578).

### Fixed
Always fall back to English if a language does not exist (see #6581).

### Fixed
Correctly display repeated events in the event list (see #6555).

### Fixed
Correctly show the available layout columns in the article module (see #6548).

### Fixed
Correctly show the "read more" link in the news list modules (see #6439).

### Updated
Updated html5shiv to version 3.7.0 (see #6543).

### Fixed
Support browsers with both mouse and touch support in the back end (see #6520).

### Fixed
Correctly handle multiple `RadioTable` widgets on the same page (see #6389).

### Fixed
Fixed two issues with the SQL cache (see #6507).

### Fixed
Do not require a redirect page for newsletter channels (see #6521).

### Fixed
Use the related field instead of `id` in the model query builder (see #6540).
2013-12-21 02:46:25 +00:00
taca
2d32d8fb4f Update fengoffice to 2.4.0.6. (This is a leaf package and this update
contains security fix.)

Since 2.4.0.5
- bugfix: Don't send notification when add mail.

Since 2.4.0.4
- bugfix: Deprecated functions usage.
- bugfix: Emtpy trash can was using a deprecated function with performance issues.
- bugfix: Missing parameters in function invocation.

Since 2.4.0.3
- bugfix: can't delete template task, permission denied.

Since 2.4.0.2
- bugfix: langs customer_folder and project_folder.
- bugfix: can't add contacts from mail.
- bugfix: on activity widget move action don't display.
- bugfix: when create user, notifications break mysql transaction.

Since 2.4.0.1
- bugfix: cron process to emtpy trash can does not delete members asociated to contacts.

Since 2.4.0
- bugfix: tab order fix in quick add task;
- bugfix: issue when create a subtask from task view;

Since 2.4-rc
- fetaure: error message improved when upload limit is reached.
- bugfix: on gantt, names of the tasks were not displayed completely.
- bugfix: on gantt, the time estimation for tasks was not displayed correctly.
- bugfix: date custom properties default value does not use user's timezone.
- bugfix: on people widget add user combo is not ordered by name.
- bugfix: on activity widget dates have gmt errors.
- bugfix: general search allways search for empty string.
- bugfix: url files are not saved correctly when url is not absolute.
- bugfix: imap fetch fixed when last email does not exists in server.
- bugfix: only invite automatically the "filtered user" when adding a new event, not when editing an existing one.
- bugfix: variable member_deleted uninitialized in a cycle, maintains the value of previous iterations and fills the log warnings.
- bugfix: don't display group-mailer button if user doesn't have an email account.
- bugfix: allow mail rules for all incoming messages, useful for autoreplies.
- bugfix: the invitations of the events created on google calendar will have the same special ID of the event.

Since 2.4-beta
- feature: alert users if they have mails in the outbox
- feature: contact custom reports - added columns for address, phones, webpages and im.
- feature: display time estimation in time reports when grouping by tasks
- feature: config option to add default permissions to users when creating a member.
- system: upgrade Swift Mailer from version 4.0.6 to 5.0.1, this improves and solves some issues when sending emails with exchange servers
- bugfix: on user login when save timezone don't change the update_on value
- bugfix: solved an issue when editing a repetitive task and changing its previous repetition value
- bugfix: solved when editing a template task can't remove a dimension member
- bugfix: solved using repeating tasks when applying a template
- bugfix: on tasks and timeslots reports, if grouped by task it diplay milestones
- bugfix: allow the creation of templates in the root (View all)
- bugfix: Users are now shown by default in the People tab.
- bugfix: when printing the task list view, tasks now display their progress and estimation
- bugfix: on general search prevent multiple form submit.

Since 2.3.2.1
- feature: templates have been greatly improved: they have changed completely for good!
- feature: remember selection on total task execution time report
- feature: when sending an email, if a word containing attach is found and no attachment if found, it triggers an alert.
- feature: new user config option to set how many members are shown in breadcrumbs
- feature: update plugins after running upgrade from console.
- feature: add root permission when creating executive or superior users.
- feature: contact edit form has been improved

- bugfix: when uploading avatars, if it is .png and its size is smaller than 128x128 the image is not resized
- bugfix: when sending an mail, the sender is now subscribed to it
- bugfix: when adding a file from an email attachment, its now set to be created by the account owner
- bugfix: reporting pagination fixed
- bugfix: custom reports, csv and pdf export only exports the active page..now it exports everything!
- bugfix: don't collapse task group after performing an action to the task when group is expanded.
- bugfix: email parsing removes enters and some emails were not shown correctly
- bugfix: people widget in french used to cause a syntax error
- bugfix: don't classify email in account's member if conversation is already classified.
- bugfix: task filtering by user has been improved: it loads faster and more accurate
- bugfix: the users selectbox for assignees has been improved: it loads faster and more accurate
- bugfix: check for "can manage contacts" in system permissions if column exists
- bugfix: email parsing does not fetch addresses when they are separated by semicolon
- bugfix: tasks assigned to filter doesn't filter correctly when logged user is an internal collaborator and users can add objects without classifying them.
- bugfix: search result pagination issue
- bugfix: search results ordered by date again
- bugfix: add to searchable objects failed for some emails
- bugfix: custom properties migration fix
- bugfix: feng 1 to feng 2 upgrade improved
- bugfix: style fixes in administration tabs
- bugfix: checkbox in contact tab now is working properly. initially it does not show the users
- bugfix: google calendar sync issue for events with over 100 chars has been solved
- bugfix: contact csv export fixed: when no contact is selected => export all contact csv export fixed
- bugfix: some undefined variables have been defined
- bugfix: some translations that were missing were added
- security: remove xss from request parameters
- performance: search engine has been greatly improved
- other: the search button is disabled until returns the search result
- other: when upgrading to 2.4 the completed tasks from feng 1 will change to 100% in completed percentage
2013-12-20 15:49:33 +00:00
taca
662b9aff83 Simplyfy using REPLACE_BASH instead of REPLACE_INTERPRETER and its
friends.

No functional change.
2013-12-20 15:35:50 +00:00
ryoon
2260ae1bb9 Update to 24.2.0
* Sync with firefox24-24.2.0
2013-12-17 13:25:22 +00:00
ryoon
d9c6473fd6 Update to 26.0
* Sync with firefox-26.0.
2013-12-17 13:23:18 +00:00
asau
e4aa5f886a One more file installed on FreeBSD. 2013-12-17 07:07:22 +00:00
taca
25c00963aa Remove "used by" lines for contao31/contao31-example. 2013-12-16 01:49:06 +00:00
taca
7297d5b36a Remove contao31 and contao31-example. 2013-12-16 01:47:57 +00:00
taca
4de480fc69 Remove contao31 since it is EOL. 2013-12-16 01:47:29 +00:00
taca
85ba59984e Remove contao31-example since contao31 is EOL for now. 2013-12-16 01:47:10 +00:00
ryoon
e3de458762 Bump PKGREVISION
* Convert to use xulrunner24
2013-12-15 14:13:37 +00:00
ryoon
a743206fab Update to 24.2.0
* Fix PR pkg/48420: fix build on NetBSD with drace support
  Patches from richard@

Changelog:
Fixed in Firefox ESR 24.2
MFSA 2013-117 Mis-issued ANSSI/DCSSI certificate
MFSA 2013-116 JPEG information leak
MFSA 2013-115 GetElementIC typed array stubs can be generated outside observed typesets
MFSA 2013-114 Use-after-free in synthetic mouse movement
MFSA 2013-113 Trust settings for built-in roots ignored during EV certificate validation
MFSA 2013-111 Segmentation violation when replacing ordered list elements
MFSA 2013-109 Use-after-free during Table Editing
MFSA 2013-108 Use-after-free in event listeners
MFSA 2013-104 Miscellaneous memory safety hazards (rv:26.0 / rv:24.2)
2013-12-15 14:02:25 +00:00
ryoon
6ad2a921c8 Update to 26.0
* Build outside WRKSRC, fix build

Changelog:
NEW
All Java plug-ins are defaulted to 'click to play'
NEW
Password manager now supports script-generated password fields
NEW
Updates can now be performed by Windows users without write permissions to Firefox install directory (requires Mozilla Maintenance Service)
NEW
Support for H.264 on Linux if the appropriate gstreamer plug-ins are installed
CHANGED
Support for MP3 decoding on Windows XP, completing MP3 support across Windows OS versions
CHANGED
CSP implementation now supports multiple policies, including the case of both an enforced and Report-Only policy, per the spec
DEVELOPER
Social API now supports Social Bookmarking for multiple providers through its SocialMarks functionality (see MDN docs)
DEVELOPER
Math.ToFloat32 takes a JS value and converts it to a Float32, whenever possible
DEVELOPER
There is no longer a prompt when websites use appcache
DEVELOPER
Support for the CSS image orientation property
DEVELOPER
New App Manager allows you to deploy and debug HTML5 webapps on Firefox OS phones and the Firefox OS Simulator
DEVELOPER
IndexedDB can now be used as a "optimistic" storage area so it doesn't require any prompts and data is stored in a pool with LRU eviction policy, in short temporary storage
FIXED
When displaying a standalone image, Firefox matches the EXIF orientation information contained within the JPEG image (298619)
FIXED
Text Rendering Issues on Windows 7 with Platform Update KB2670838 (MSIE 10 Prerequisite) or on Windows 8.1 (812695)
FIXED
Improved page load times due to no longer decoding images that aren't visible (847223)
FIXED
AudioToolbox MP3 backend for OSX (914479)
FIXED
Various security fixes

Fixed in Firefox 26
MFSA 2013-117 Mis-issued ANSSI/DCSSI certificate
MFSA 2013-116 JPEG information leak
MFSA 2013-115 GetElementIC typed array stubs can be generated outside observed typesets
MFSA 2013-114 Use-after-free in synthetic mouse movement
MFSA 2013-113 Trust settings for built-in roots ignored during EV certificate validation
MFSA 2013-112 Linux clipboard information disclosure though selection paste
MFSA 2013-111 Segmentation violation when replacing ordered list elements
MFSA 2013-110 Potential overflow in JavaScript binary search algorithms
MFSA 2013-109 Use-after-free during Table Editing
MFSA 2013-108 Use-after-free in event listeners
MFSA 2013-107 Sandbox restrictions not applied to nested object elements
MFSA 2013-106 Character encoding cross-origin XSS attack
MFSA 2013-105 Application Installation doorhanger persists on navigation
MFSA 2013-104 Miscellaneous memory safety hazards (rv:26.0 / rv:24.2)
2013-12-15 13:54:37 +00:00
wen
e34634cada Update to 0.6
Upstream changes:
0.06
    - Now just a simple consumer of POEx::Role::PSGIServer (thanks nperez!)
2013-12-15 13:32:33 +00:00
kleink
229b4c8727 Update py-flask-script to 0.6.6.
Version 0.6.6
-----------------

Released on December 6, 2013

- Fix global being passed after command by not expliciting checking
  for the 'parents' argument.
2013-12-12 19:36:55 +00:00
jperkin
69da652b46 When recursively chowning, ensure the -P flag is specified. This is default
on BSD but not on strict POSIX implementations, leading to failures when
building as an unprivileged user in the presence of symlinks.

Fixes recent breakage on SunOS when the '-h' flag was removed for MirBSD.
2013-12-12 12:24:47 +00:00
fhajny
716ba38ec4 Update varnish to 3.0.5.
Changes since 3.0.4:
- A bad interaction between -b, -c and -m in the varnishlog tool
  has been fixed.
- A malformed request could in some configurations lead to Varnish
  crashing has been corrected. This is CVE-2013-4484.
- Duplicate Content-Length headers were in some cases sent to clients
  when streaming is enabled, this has been fixed
- ESI parse errors are no longer printed to standard output.
- Stop segfaulting if the first part of a synthetic page is NULL.
2013-12-11 16:13:22 +00:00
tron
0c4b1f624b Fix path to Perl interpreter in "libexec/cert_valid.pl".
Bump package revision because the binary got changed.
2013-12-11 14:55:02 +00:00
jperkin
f61adefbfd SunOS needs -D__EXTENSIONS__. Patch from Sebastian Wiedenroth. 2013-12-11 11:56:42 +00:00
wiz
bb361a8b1c Remove zlib workaround now that zlib package generates pc file for builtin. 2013-12-11 07:56:26 +00:00
taca
f0a7e45cc7 Update typo3_61 package to 6.1.7 (TYPO3 6.1.7).
- Fix multiple vulnerabilities in TYPO3 CMS:
	http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/

2013-12-10  afbadea                  [RELEASE] Release of TYPO3 6.1.7 (TYPO3 Release Team)
2013-12-10  7481971  #31206          [SECURITY] XSS in header link of all content elements (Anja Leichsenring)
2013-12-10  cb8db28  #42772          [SECURITY] XSS in colorpicker wizard (Marcus Krause)
2013-12-10  2d29894  #45043          [SECURITY] Prevent editor controlled hmac content (Franz G. Jahn)
2013-12-10  dca9c88  #48691          [SECURITY] XSS in backend user adminstration (Marc Bastian Heinrichs)
2013-12-10  450e5d3  #41714          [SECURITY] Information Disclosure in Wizards (Helmut Hummel)
2013-12-10  7e7f9e3  #54099          [SECURITY] Fix open redirection in openid extension (Helmut Hummel)
2013-12-10  ad11945  #36768          [SECURITY] XSS in be_layout wizard (Anja Leichsenring)
2013-12-10  18e0491  #47086          [SECURITY] XSS in beuser VH (Anja Leichsenring)
2013-12-10  cbbeefd  #54074          [SECURITY] Remove possible XSS from ActionController Error output (Anja Leichsenring)
2013-12-10  163947a  #54073          [SECURITY] Unsafe unserialize of GET parameter in Add-Wizard (Steffen Ritter)
2013-12-02  d21a628  #54124          [BUGFIX] ClientUtility does not detect Internet Explorer 11 (Stefan Neufeind)
2013-12-02  e538020  #54117          [BUGFIX] Add missing namespacing for calling GeneralUtility (Stefan Neufeind)
2013-11-29  3a66a0e  #42651          [BUGFIX] ext:adodb Restrict connection wizard to admins (Christian Kuhn)
2013-12-10 15:22:20 +00:00
taca
5487ee56d3 Update typo3_60 package to 6.0.12 (TYPO3 6.0.12).
- Fix multiple vulnerabilities in TYPO3 CMS:
	http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/

2013-12-10  55ea17b                  [RELEASE] Release of TYPO3 6.0.12 (TYPO3 Release Team)
2013-12-10  c703d1d  #31206          [SECURITY] XSS in header link of all content elements (Anja Leichsenring)
2013-12-10  0f1e28b  #42772          [SECURITY] XSS in colorpicker wizard (Marcus Krause)
2013-12-10  1cbe889  #45043          [SECURITY] Prevent editor controlled hmac content (Franz G. Jahn)
2013-12-10  79f6850  #48691          [SECURITY] XSS in backend user adminstration (Marc Bastian Heinrichs)
2013-12-10  b22cbce  #41714          [SECURITY] Information Disclosure in Wizards (Helmut Hummel)
2013-12-10  e4134ae  #54099          [SECURITY] Fix open redirection in openid extension (Helmut Hummel)
2013-12-10  2fb0277  #48187          [SECURITY] feuser_adminLib.inc allows to set arbitrary fields (Anja Leichsenring)
2013-12-10  bd6095f  #36768          [SECURITY] XSS in be_layout wizard (Anja Leichsenring)
2013-12-10  872cf3d  #47086          [SECURITY] XSS in beuser VH (Anja Leichsenring)
2013-12-10  cb55c53  #54074          [SECURITY] Remove possible XSS from ActionController Error output (Anja Leichsenring)
2013-12-10  578cc80  #54073          [SECURITY] Unsafe unserialize of GET parameter in Add-Wizard (Steffen Ritter)
2013-12-02  9757d0c  #54124          [BUGFIX] ClientUtility does not detect Internet Explorer 11 (Stefan Neufeind)
2013-12-02  5bf7430  #54117          [BUGFIX] Add missing namespacing for calling GeneralUtility (Stefan Neufeind)
2013-11-29  30e1f41  #42651          [BUGFIX] ext:adodb Restrict connection wizard to admins (Christian Kuhn)
2013-12-10 15:21:30 +00:00
taca
27a7457f74 Update typo3_47 package to 4.7.17 (TYPO3 4.7.17).
- Fix multiple vulnerabilities in TYPO3 CMS:
	http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/
- Enable PHP_VERSIONS_ACCEPTED which was accidently commented out by previous
  commit.

2013-12-10  9e378dd                  [RELEASE] Release of TYPO3 4.7.17 (TYPO3 Release Team)
2013-12-10  efa9e0b  #45043          [SECURITY] Prevent editor controlled hmac content (Franz G. Jahn)
2013-12-10  d207548  #42772          [SECURITY] XSS in colorpicker wizard (Anja Leichsenring)
2013-12-10  92712d6  #31206          [SECURITY] XSS in header link of all content elements (Anja Leichsenring)
2013-12-10  573f720  #20811          [SECURITY] XSS vulnerability in extension manager (Marcus Krause)
2013-12-10  b7eac59  #41714          [SECURITY] Information Disclosure in Wizards (Anja Leichsenring)
2013-12-10  319a06c  #54099          [SECURITY] Fix open redirection in openid extension (Anja Leichsenring)
2013-12-10  834afa5  #48187          [SECURITY] feuser_adminLib.inc allows to set arbitrary fields (Steffen Ritter)
2013-12-10  aa08f14  #36768          [SECURITY] XSS in be_layout wizard (Anja Leichsenring)
2013-12-10  f3b5a6a  #54074          [SECURITY] Remove possible XSS from ActionController Error output (Anja Leichsenring)
2013-12-10  0bc4fc4  #54073          [SECURITY] Unsafe unserialize of GET parameter in Add-Wizard (Marcus Krause)
2013-12-02  c400e94  #54124          [BUGFIX] ClientUtility does not detect Internet Explorer 11 (Stefan Neufeind)
2013-12-02  124a913  #54120          Revert "[BUGFIX] Object passed to date()" (Markus Klein)
2013-12-01  3f2e971                  Revert "[BUGFIX] Distinguish unassigend columns and colPos 0" (Steffen Ritter)
2013-11-29  a7dbbbf  #42651          [BUGFIX] ext:adodb Restrict connection wizard to admins (Christian Kuhn)
2013-11-26  542bd7d  #25157,#45550   [BUGFIX] Distinguish unassigend columns and colPos 0 (Philipp Gampe)
2013-12-10 15:20:03 +00:00
taca
984df6f313 Update typo3_45 package to 4.5.32 (TYPO3 4.5.32).
- Fix multiple vulnerabilities in TYPO3 CMS:
	http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2013-004/
- Enable PHP_VERSIONS_ACCEPTED which was accidently commented out by previous
  commit.

2013-12-10  1956962                  [RELEASE] Release of TYPO3 4.5.32 (TYPO3 Release Team)
2013-12-10  60576d1  #31206          [SECURITY] XSS in header link of all content elements (Anja Leichsenring)
2013-12-10  77dc1c4  #42772          [SECURITY] XSS in colorpicker wizard (Anja Leichsenring)
2013-12-10  52d3bff  #45043          [SECURITY] Prevent editor controlled hmac content (Franz G. Jahn)
2013-12-10  cae8739  #20811          [SECURITY] XSS vulnerability in extension manager (Marcus Krause)
2013-12-10  ba92f0a  #41714          [SECURITY] Information Disclosure in Wizards (Anja Leichsenring)
2013-12-10  63ff910  #54099          [SECURITY] Fix open redirection in openid extension (Anja Leichsenring)
2013-12-10  c4d1336  #48187          [SECURITY] feuser_adminLib.inc allows to set arbitrary fields (Steffen Ritter)
2013-12-10  5342284  #36768          [SECURITY] XSS in be_layout wizard (Anja Leichsenring)
2013-12-10  b360a1a  #54074          [SECURITY] Remove possible XSS from ActionController Error output (Anja Leichsenring)
2013-12-10  78ee538  #54073          [SECURITY] Unsafe unserialize of GET parameter in Add-Wizard (Marcus Krause)
2013-12-08  5aa4ab2  #54282          [BUGFIX] Fix failing test (Anja Leichsenring)
2013-12-08  6add221  #54280          [BUGFIX] Fix failing test (Anja Leichsenring)
2013-12-02  0c3fa95  #54124          [BUGFIX] ClientUtility does not detect Internet Explorer 11 (Stefan Neufeind)
2013-12-02  d353ab0  #54120          Revert "[BUGFIX] Object passed to date()" (Markus Klein)
2013-11-29  309e93a  #42651          [BUGFIX] ext:adodb Restrict connection wizard to admins (Christian Kuhn)
2013-11-26  1d95cad  #25157,#45550   [BUGFIX] Distinguish unassigend columns and colPos 0 (Philipp Gampe)
2013-12-10 15:18:33 +00:00
adam
57efa22f6d www/squid incorporated into www/squid3 2013-12-10 14:53:11 +00:00
adam
0e80976396 www/squid incorporated into www/squid3 2013-12-10 14:51:20 +00:00
adam
495582f7c0 Changes 3.4.1:
* Bug 3589: intercepted and ICAP modified request using a cache_peer
* OpenBSD portability fix in DiskThreads
* Bug 3935: Invalid pointer dereference when peeking at origin server certificate
* Destroy ACLs in the reverse order of creation to avoid destruction segfaults
* Portability: sleep() is sometimes a macro
* Windows: fix compile errors in WinSvc.cc
* Portability: std::string:npos is not always appropriate for String::npos
* Portability: refresh_pattern requires regex
* librfcnb: portability fixes
2013-12-10 14:48:26 +00:00
jperkin
74b19bddc9 Fix build on SunOS. Patches from Sebastian Wiedenroth. 2013-12-10 12:35:41 +00:00
jperkin
ab1a3386bd Add socket libraries on SunOS. Patch from Sebastian Wiedenroth. 2013-12-10 12:24:24 +00:00
taca
51faf0d872 Update contao32 (and contao32-example) to 3.2.2.
Version 3.2.2 (2013-12-09)
--------------------------

### Fixed
Correctly support insert tags nested in shortened "iflng" tags (see #6509).

### Fixed
Do not require a foreign key to define a relation in the DCA (see #6524).

### Fixed
Use UUIDs as parent IDs in `Dbafs::addResource()` (see #6532).

### Fixed
Correctly set the default language (see #6533).

### Fixed
Correctly update the order fields in the database updater (see #6534).

### Fixed
Do not override the "href" property in `addImageToTemplate()` (see #6468).

### Fixed
Correctly handle URLs if page aliases are disabled (see #6502).

### Fixed
Handle UUIDs in `Model::getRelated()` (see #6525).

### Fixed
Hide records with only one version from the "changed elements" overview.

### Fixed
Use an auto-resizing textarea to store CSS selectors.

### Updated
Updated the ACE editor to version 1.1.2.

### Fixed
Prevent the ACE editor from overlapping the modal window (see #6497).

### Fixed
Use the default back end theme when running in safe mode (see #6505).
2013-12-09 16:25:27 +00:00
obache
9b57b4605a Fix/Update DEPENDS paterns for perl CORE modules, with some trivial fixes.
Bump PKGREVISION for runtime dependency pattern changed packages.
2013-12-09 14:17:41 +00:00
wiz
f246af6486 + squidview 2013-12-09 11:41:47 +00:00
sborrill
ac35380969 Note that also used by squidview package 2013-12-09 10:32:38 +00:00
sborrill
eb18a4897f Import squidview 0.80:
Squidview is an interactive console program which monitors and displays
squid logs in a nice fashion, and may then go deeper with searching and
reporting functions.
2013-12-09 10:32:18 +00:00
obache
1a53edaf3b CHECK_SHLIBS_SUPPORTED=no.
Linux/Windows binaries are in distribution.
2013-12-08 06:49:43 +00:00
gls
c78e55145b Update www/libmicrohttpd to 0.9.32
This includes security fixes.

Upstream changes:
-----------------

Tue Dec  3 21:25:56 CET 2013
        Security fix: do not read past 0-terminator when unescaping
        strings (thanks to Florian Weimer for reporting).
        Releasing 0.9.32. -CG

Tue Dec  3 21:05:38 CET 2013
        Signaling n times for shutdown works, but for resume we need to
        wake up the correct daemon. Even if we signal n times in that
        case also, there's no guarantee that some daemon can't run
        through its select loop more than once before the daemon we want
        to wake up gets a chance to read.  Thus we need a signal pipe
        per thread in the thread pool IF MHD_suspend_connection is used.
        This introduces a new flag MHD_USE_SUSPEND_RESUME to add those
        additional pipes and only allow MHD_suspend_connection to be
        used in conjunction with this flag.

        Also, as MHD_resume_connection() will be called on a non-daemon
        thread, but none of the queue insert/delete calls are thread safe,
        we need to be concerned about (a) corrupting the queue, and (b)
        having to add mutex protection around every access to the queues,
        including loops through timer queues, etc. This wasn't a problem
        before adding resume; even suspend should be safe since it happens
        in a callback from the daemon.

        I think it's easier to (a) have MHD_suspend_connection() move the
        connection to a suspended queue, (b) have MHD_resume_connection()
        mark the connection as resuming, and then (c) do all the actual
        queue manipulations in MHD_select (poll, epoll, etc.) to move the
        resumed connections back to their normal queues, in response to
        the wake up. The changes are simpler & cleaner. There is a cost to
        the basic select loop that is avoided by making suspend/resume a
        startup option. The per-worker pipes can then also be enabled only
        with that option set. -MH

Fri Nov 29 20:17:03 CET 2013
        Eliminating theoretical stack overflow by limiting length
        of URIs in authentication headers to 32k (only applicable
        if the application explicitly raised the memroy limits,
        and only applies to MHD_digest_auth_check). Issue was
        reported by Florian Weimer. -CG

Tue Nov 26 01:26:15 CET 2013
        Fix race on shutdown signal with thread pool on non-Linux
        systems by signalling n times for n threads. -CG

Sun Nov 24 13:41:15 CET 2013
        Introduce state to mark connections in suspended state (with
        epoll); add missing locking operations in MHD_suspend_connection.
        Fix definition of MHD_TLS_CONNECTION_INIT.  -MH/JC

Wed Oct 30 09:34:20 CET 2013
        Fixing issue in PostProcessor when getting partial boundary
        at the beginning, expanding test suite. -CG

Sun Oct 27 15:19:44 CET 2013
"work/libmicrohttpd-0.9.32/ChangeLog" 1318L, 46479C
        Also, as MHD_resume_connection() will be called on a non-daemon
        thread, but none of the queue insert/delete calls are thread safe,
        we need to be concerned about (a) corrupting the queue, and (b)
        having to add mutex protection around every access to the queues,
        including loops through timer queues, etc. This wasn't a problem
        before adding resume; even suspend should be safe since it happens
        in a callback from the daemon.

        I think it's easier to (a) have MHD_suspend_connection() move the
        connection to a suspended queue, (b) have MHD_resume_connection()
        mark the connection as resuming, and then (c) do all the actual
        queue manipulations in MHD_select (poll, epoll, etc.) to move the
        resumed connections back to their normal queues, in response to
        the wake up. The changes are simpler & cleaner. There is a cost to
        the basic select loop that is avoided by making suspend/resume a
        startup option. The per-worker pipes can then also be enabled only
        with that option set. -MH

Fri Nov 29 20:17:03 CET 2013
        Eliminating theoretical stack overflow by limiting length
        of URIs in authentication headers to 32k (only applicable
        if the application explicitly raised the memroy limits,
        and only applies to MHD_digest_auth_check). Issue was
        reported by Florian Weimer. -CG

Tue Nov 26 01:26:15 CET 2013
        Fix race on shutdown signal with thread pool on non-Linux
        systems by signalling n times for n threads. -CG

Sun Nov 24 13:41:15 CET 2013
        Introduce state to mark connections in suspended state (with
        epoll); add missing locking operations in MHD_suspend_connection.
        Fix definition of MHD_TLS_CONNECTION_INIT.  -MH/JC

Wed Oct 30 09:34:20 CET 2013
        Fixing issue in PostProcessor when getting partial boundary
        at the beginning, expanding test suite. -CG

Sun Oct 27 15:19:44 CET 2013
        Implementing faster processing of upload data in multipart
        encoding (thanks to performance analysis by Adam Homolya). -CG

Thu Oct 24 10:40:03 CEST 2013
        Adding support for connection flow control via
        MHD_suspend_connection and MHD_resume_connection. -CG
2013-12-07 13:34:47 +00:00
obache
397c358391 Removed www/ruby-httpclient.
No packages depend on this one anymore and no advantage to maintain pure ruby
gem with pkgsrc.
2013-12-07 09:09:30 +00:00
obache
13873af63e Drop maintainership, not using anymore. 2013-12-07 08:43:34 +00:00
kleink
f0d4e657a7 Update py-flask-script to 0.6.5.
Version 0.6.5
-----------------

Released on December 5, 2013

- Change warning from UserWarning to DeprecationWarning so it is
  ignored by default

Version 0.6.4
-----------------

Released on December 5, 2013

- Only pass `parents` argument if a command's `create_parser`
  accepts it.  Workaround for #71
2013-12-06 16:26:54 +00:00
richard
233f7d4fa3 revert previous commit awaiting new fix for --disable-dtrace anomaly 2013-12-05 16:49:32 +00:00
taca
f89b09ef13 Update typo3_61 to 6.1.6 (TYPO3 6.1.6).
2013-11-26  3f69433                  [RELEASE] Release of TYPO3 6.1.6 (TYPO3 Release Team)
2013-11-26  3eda399  #53918          [BUGFIX] t3skin calls addIconSprite for each lang (Michiel Roos)
2013-11-24  93ed8d2  #51650          [BUGFIX] TS: Allow "0" as strPad.padWith (Lars Peipmann)
2013-11-24  aed6051  #15958          [BUGFIX] Reload list module on clickmenu action (Bernhard Kraft)
2013-11-21  7042298  #53802          [BUGFIX] Fix moving/copying files and folders between storages (Frans Saris)
2013-11-21  b78c694  #53844          [BUGFIX] Fix regression in ResourceCompressor (Markus Klein)
2013-11-20  3d3de05  #53243          [BUGFIX] Filemtime / Filesize trigger warning (Tomita Militaru)
2013-11-20  6c5d53d  #53458          [BUGFIX] Fluid paginate widget wrong number of links (Klaas Johan Kooistra)
2013-11-20  52b751e                  Revert "[BUGFIX] Page module: Allow to paste in empty columns" (Markus Klein)
2013-11-20  dbcaf93  #44002,#35980,  [BUGFIX] Page module: Allow to paste in empty columns (Bernhard Kraft)
2013-11-19  023014c  #38766          [BUGFIX] l10n_mode for "pages" table and group fields. (Johannes Feustel)
2013-11-19  9d97a70  #53773          [BUGFIX] Fix JS error in lang module (Markus Klein)
2013-11-19  170f084  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-19  abcd5e9  #34544          [BUGFIX] fix javascript error "TBE_EDITOR not defined" in sys_action (Ralf Hettinger)
2013-11-19  ba82fac  #51998          [BUGFIX] ExtDirect StateProvider should store all settings (Johannes Feustel)
2013-11-19  571c8c9  #53746          [TASK] Optimization in AbstractViewHelper (Wouter Wolters)
2013-11-18  33b0d1b  #53707          [BUGFIX] Rename hook in VariableFrontend.php (Nicole Cordes)
2013-11-18  fbd9379  #53711          [BUGFIX] additionalAttributes for be.buttons.icon-VH misses hsc (Markus Klein)
2013-11-18  fa87ad9  #53014          [BUGFIX] Check for query failures in admin methods (Thomas Maroschik)
2013-11-15  7223b78                  Revert "[BUGFIX] EM: Fetch list as html, not as json" (Helmut Hummel)
2013-11-14  62f7e87  #45724          [BUGFIX] FILES.folder does not work (Stefan Froemken)
2013-11-14  c65640d  #51234          [BUGFIX] Move beuser property mappings to global scope (Philipp Gampe)
2013-11-14  35a95b0  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-13  fd66dfc  #25157,#45550   [BUGFIX] Distinguish unassigend columns and colPos 0 (Georg Ringer)
2013-11-13  0641f4f  #51918          [BUGFIX] Native date and datetime values do not consider timezone (Oliver Hader)
2013-11-12  9aa1fa2  #52926          [BUGFIX] Compressor resolves dots in filenames correctly (Christian Kuhn)
2013-11-12  fa77640  #53115          [BUGFIX] T3editor: Make errors/exceptions show correctly (Stefan Neufeind)
2013-11-12  259c64d  #22136          [BUGFIX] Fix menu popup for all IE versions (Alexander Opitz)
2013-11-12  ffd8480  #52934          [BUGFIX] dataTables: Avoid sending cookie-data too often (Stefan Neufeind)
2013-11-12  c3b0ebc  #53399          [BUGFIX] Wrong usage-text for cli_dispatch (Tomita Militaru)
2013-11-12  dcdb7bb  #52904          [BUGFIX] Evaluator in JS fails with namespaces (Stefan Aebischer)
2013-11-12  cf50919  #53538          [BUGFIX] Make be.buttons.icon-ViewHelper extensible (Stefan Neufeind)
2013-11-11  fbb19b4  #52727          [TASK] Hard-coded labels in file collections (Tomita Militaru)
2013-11-11  3dd29c3  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  a3153a3  #52488          [BUGFIX] Call to FlashMessageQueue::addMessage() method in extbase (Markus Klein)
2013-11-11  b61f34f  #53423          [BUGFIX] EM: Fetch list as html, not as json (Stefan Neufeind)
2013-11-10  093d7ac  #52173          [BUGFIX] Correct storage selection (follow-up) (Ernesto Baschny)
2013-11-09  7015242  #53477          [TASK] Fix superfluous strlen() on constant strings (Steffen Ritter)
2013-11-09  827bf21  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Froemken)
2013-11-09  0b03e72  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-08  6f1625f  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Tomita Militaru)
2013-10-23  d34bde3  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-18  840a3a6  #35073          [BUGFIX] Enable BE search for multiple mountpoints (Georg Ringer)
2013-10-17  775a077  #52931          [TASK] Exclude central Modernizr from concatenation (Stefan Neufeind)
2013-10-17  0382419  #52570          [TASK] Tests for Persistence\Generic\Backend::getIdentifierByObject (Stefan Neufeind)
2013-10-17  b78dc4e  #50548          [BUGFIX] Getting the identifier for a lazy object fails (Marc Bastian Heinrichs)
2013-10-16  2f1fb3f  #52529          [BUGFIX] Suppress empty tag names in output of array2xml (Markus Hoelzle)
2013-10-16  b218036  #52823          [BUGFIX] Preserve vendor name in refering request (Thomas Maroschik)
2013-10-16  88cc508                  [BUGFIX] Follow-Up: Fatal error due to missing use statement (Sascha Egerer)
2013-10-15  1761850  #52845          [BUGFIX] Moving folders fails (Oliver Hader)
2013-10-15  be9b7c7  #50802          [BUGFIX] Only load folder contents if folder is initialised (Frans Saris)
2013-10-15  ce693d8  #52824          [BUGFIX] Superfluous usage of ObjectManagerException (Oliver Hader)
2013-10-15  8be996a  #51707          [FEATURE] Add getValidators to AbstractCompositeValidator (Stefan Froemken)
2013-10-15  992e4ef  #52771          [BUGFIX] Use callback in preg_replace in RemoveXSS (Jigal van Hemert)
2013-10-14  50942c2  #52773          [BUGFIX] Detect unix-styled absolute paths on Windows systems (Nicole Cordes)
2013-10-13  2889f13  #52759          [BUGFIX] Object passed to date() (Xavier Perseguers)
2013-10-12  f4f2756  #52731          [TASK] Use 6.1 branch in travis-integration for travis (Christian Kuhn)
2013-10-12  d68c114  #52728          [BUGFIX] Use BackendUtility use statement (Anja Leichsenring)
2013-10-12  33d4415  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  e3d02ef  #52715          [BUGFIX] Prevent empty newline below scheduler-task-name (Stefan Neufeind)
2013-10-11  a3f8dfe  #52708          [BUGFIX] DataMapFactory::resolveTableName must remove leading backslashes (Alexander Schnitzler)
2013-10-11  9b4462b  #50912          [BUGFIX] BackendUtility::viewOnClick() called with non-integer (Oliver Hader)
2013-10-11  d910b2b  #51051          [BUGFIX] Clear_cache() must not consider page ids lower than 0 (Oliver Hader)
2013-10-11  1483967  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  f4e1b0e  #52636          [BUGFIX] Copy records to target page before origin page is deleted (Timo Webler)
2013-10-11  ed4e368  #17551          [BUGFIX] Create workspace placeholder with processed field content (Sascha Egerer)
2013-10-11  6f47aa5  #36573          [BUGFIX] Add workspace overlay for fetched records. (Timo Webler)
2013-10-11  d6b57e8  #37209          [BUGFIX] WS preview shows pages changes from all WS (Thorsten Kahler)
2013-10-11  fcad15e  #52530          [BUGFIX] Delete modified record in WS just deletes WS version (Sascha Egerer)
2013-10-11  3ac3429  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-10  394d12e  #52178          [BUGFIX] Cannot upload an extension as zip (Xavier Perseguers)
2013-10-07  8f1afaf  #49538          [BUGFIX] Fields of type file_reference are not properly indexed (Martin Borer)
2013-10-07  98625ae  #52546          [BUGFIX] Missing closing tag in ElementBrowser (Philipp Gampe)
2013-10-05  dc5b2f1  #52469          [TASK] Use instanceof comparison instead of string comparison (Benjamin Serfhos)
2013-09-30  6b2512a  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Dmitry Dulepov)
2013-09-28  3a3edf1  #48809,#51730,  [BUGFIX] Fix wrong handling of php and TYPO3 dependencies (Susanne Moog)
2013-09-28  9535891  #51329          [BUGFIX] Initialize extension name in command requests (Alexander Stehlik)
2013-09-27  06723a0  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  219c381  #51588          [BUGFIX] Clear cached menu by tag (Zbigniew Jacko)
2013-09-27  b41847a  #50437          [BUGFIX] Fix jumpToUrl()-Usage in Element Browser (Benjamin Pick)
2013-09-26  6bdc8ad  #52091,#51684   [BUGFIX] Check for string before using strlen (Kilian Hann)
2013-09-26  9be6739  #52266          [BUGFIX] groupFor-VH does not work with @lazy (Stefan Froemken)
2013-09-26  d3bf620  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  993dd5d  #52316          [BUGFIX] Fatal in DefaultConfiguration (Christian Kuhn)
2013-09-26  bb94fe0  #52305          [BUGFIX] Configure main extbase caches for unlimited entry lifetime (Christian Kuhn)
2013-09-26  52ff400  #52295          [TASK] Use SimpleFileBackend for t3lib_l10n cache (Christian Kuhn)
2013-09-25  f0fe1c4  #52226          [BUGFIX] EM does not link to docs.typo3.org (Xavier Perseguers)
2013-09-25  db5fb24  #51116          [BUGFIX] Increase performance of exports for caches (Markus Klein)
2013-09-25  28ee210  #52243          [BUGFIX] Remove duplicate exception code (Fabien Udriot)
2013-09-24  3f53e6b  #52173          [BUGFIX] Correct storage selection (common prefixes) (Ernesto Baschny)
2013-09-24  1d17a21  #52201          [BUGFIX] Fix broken Unit-test for #44825 (Wouter Wolters)
2013-09-23  ae9b606  #44825          [BUGFIX] Fix page.headerData + USER_INT (Helmut Hummel)
2013-09-20  7d08d29  #48912          [BUGFIX] Increase length of identifier field in sys_file (Nicole Cordes)
2013-09-20  e0600ed  #52056          [BUGFIX] Wrong exception on renaming folder (Francois Suter)
2013-09-19  9423c2c  #49328          [BUGFIX] Fix PHP warning when writing to Backend user log (Alexander Stehlik)
2013-09-17  fd534b6  #45859          [BUGFIX] Faulty expand/collapse behavior in Element Browser (Oliver Hader)
2013-09-17  ce68bcd  #19045          [BUGFIX] Fix cropping of transparent gifs with im6. (Stefan Neufeind)
2013-09-17  fb5bbbf  #50907          [BUGFIX] Form Wizard: Adds mouse pointer to docheader icons (Ernesto Baschny)
2013-09-13  0fe373b  #51981          [BUGFIX] Also consider JPEG files for IM/GM (Markus Klein)
2013-09-12  b0c54dc  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)
2013-09-12  7169032  #47744          [BUGFIX] Replace SHOW DATABASE by query to schema (Alexander Opitz)
2013-09-12  ddf74b0  #51891          [BUGFIX] Call to undefined method setTemplateFile (Wouter Wolters)
2013-12-05 16:45:04 +00:00
taca
13c2693664 Update typo60 to 6.0.11 (TYPO3 6.0.11). Also add MESSAGE file.
2013-11-26  5e5f1d2                  [RELEASE] Release of TYPO3 6.0.11 (TYPO3 Release Team)
2013-11-26  762cb0a  #53918          [BUGFIX] t3skin calls addIconSprite for each lang (Michiel Roos)
2013-11-24  96944c0  #15958          [BUGFIX] Reload list module on clickmenu action (Bernhard Kraft)
2013-11-21  9e2a0a1  #53802          [BUGFIX] Fix moving/copying files and folders between storages (Frans Saris)
2013-11-21  487903a  #53844          [BUGFIX] Fix regression in ResourceCompressor (Markus Klein)
2013-11-20  aed68c8  #53243          [BUGFIX] Filemtime / Filesize trigger warning (Tomita Militaru)
2013-11-20  2857828  #53458          [BUGFIX] Fluid paginate widget wrong number of links (Klaas Johan Kooistra)
2013-11-19  3d6f5be  #53773          [BUGFIX] Fix JS error in lang module (Markus Klein)
2013-11-19  ea58bd5  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-19  055e6a5  #34544          [BUGFIX] fix javascript error "TBE_EDITOR not defined" in sys_action (Ralf Hettinger)
2013-11-19  6c6582a  #51998          [BUGFIX] ExtDirect StateProvider should store all settings (Johannes Feustel)
2013-11-19  9a5858d  #53746          [TASK] Optimization in AbstractViewHelper (Wouter Wolters)
2013-11-18  464a804  #53707          [BUGFIX] Rename hook in VariableFrontend.php (Nicole Cordes)
2013-11-18  ad98c0a  #53711          [BUGFIX] additionalAttributes for be.buttons.icon-VH misses hsc (Markus Klein)
2013-11-15  d33b4eb                  Revert "[BUGFIX] EM: Fetch list as html, not as json" (Helmut Hummel)
2013-11-14  ecd873f  #45724          [BUGFIX] FILES.folder does not work (Stefan Froemken)
2013-11-14  2fef8ad  #51234          [BUGFIX] Move beuser property mappings to global scope (Philipp Gampe)
2013-11-14  c9c7551  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-13  c372d65  #25157,#45550   [BUGFIX] Distinguish unassigend columns and colPos 0 (Georg Ringer)
2013-11-13  e6b77d8  #51918          [BUGFIX] Native date and datetime values do not consider timezone (Oliver Hader)
2013-11-12  0e4f15a  #52926          [BUGFIX] Compressor resolves dots in filenames correctly (Christian Kuhn)
2013-11-12  6163c42  #53115          [BUGFIX] T3editor: Make errors/exceptions show correctly (Stefan Neufeind)
2013-11-12  4435311  #22136          [BUGFIX] Fix menu popup for all IE versions (Alexander Opitz)
2013-11-12  53a5a1a  #52934          [BUGFIX] dataTables: Avoid sending cookie-data too often (Stefan Neufeind)
2013-11-12  94c4d70  #53399          [BUGFIX] Wrong usage-text for cli_dispatch (Tomita Militaru)
2013-11-12  f113773  #52904          [BUGFIX] Evaluator in JS fails with namespaces (Stefan Aebischer)
2013-11-12  9678fc6  #53538          [BUGFIX] Make be.buttons.icon-ViewHelper extensible (Stefan Neufeind)
2013-11-11  e9bc5e1  #52727          [TASK] Hard-coded labels in file collections (Tomita Militaru)
2013-11-11  bc9a847  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  a8f0d86  #53423          [BUGFIX] EM: Fetch list as html, not as json (Stefan Neufeind)
2013-11-11  6f4ae27  #48809,#51730,  [BUGFIX] Fix wrong handling of php and TYPO3 dependencies (Susanne Moog)
2013-11-10  907d5b1  #52173          [BUGFIX] Correct storage selection (follow-up) (Ernesto Baschny)
2013-11-09  b7a6f48  #53477          [TASK] Fix superfluous strlen() on constant strings (Steffen Ritter)
2013-11-09  58f1fa5  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Froemken)
2013-11-09  cb14179  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-08  c3773a4  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Tomita Militaru)
2013-10-23  648018e  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-18  8c21be4  #35073          [BUGFIX] Enable BE search for multiple mountpoints (Georg Ringer)
2013-10-17  fe876a8  #52931          [TASK] Exclude central Modernizr from concatenation (Stefan Neufeind)
2013-10-16  04e4a4b  #52529          [BUGFIX] Suppress empty tag names in output of array2xml (Markus Hoelzle)
2013-10-16  ac2b59e  #52823          [BUGFIX] Preserve vendor name in refering request (Thomas Maroschik)
2013-10-15  693b575  #52845          [BUGFIX] Moving folders fails (Oliver Hader)
2013-10-15  85d0653  #50802          [BUGFIX] Only load folder contents if folder is initialised (Frans Saris)
2013-10-15  38958f0  #52824          [BUGFIX] Superfluous usage of ObjectManagerException (Oliver Hader)
2013-10-15  4ba140a  #51707          [FEATURE] Add getValidators to AbstractCompositeValidator (Stefan Froemken)
2013-10-15  1156074  #52771          [BUGFIX] Use callback in preg_replace in RemoveXSS (Jigal van Hemert)
2013-10-14  c577f9e  #52773          [BUGFIX] Detect unix-styled absolute paths on Windows systems (Nicole Cordes)
2013-10-13  6cc1f7a  #52759          [BUGFIX] Object passed to date() (Xavier Perseguers)
2013-10-12  f272d54  #52731          [TASK] Use 6.1 branch in travis-integration for travis (Christian Kuhn)
2013-10-12  6cbf164  #52728          [BUGFIX] Use BackendUtility use statement (Anja Leichsenring)
2013-10-12  13c6602  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  23b8d11  #52715          [BUGFIX] Prevent empty newline below scheduler-task-name (Stefan Neufeind)
2013-10-11  a909546  #52708          [BUGFIX] DataMapFactory::resolveTableName must remove leading backslashes (Alexander Schnitzler)
2013-10-11  5faa4da  #50912          [BUGFIX] BackendUtility::viewOnClick() called with non-integer (Oliver Hader)
2013-10-11  13c5bf9  #51051          [BUGFIX] Clear_cache() must not consider page ids lower than 0 (Oliver Hader)
2013-10-11  17fe304  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  e30b70b  #52636          [BUGFIX] Copy records to target page before origin page is deleted (Timo Webler)
2013-10-11  db7d3e5  #17551          [BUGFIX] Create workspace placeholder with processed field content (Sascha Egerer)
2013-10-11  660e030  #36573          [BUGFIX] Add workspace overlay for fetched records. (Timo Webler)
2013-10-11  7c837df  #37209          [BUGFIX] WS preview shows pages changes from all WS (Thorsten Kahler)
2013-10-11  5aeddac  #52530          [BUGFIX] Delete modified record in WS just deletes WS version (Sascha Egerer)
2013-10-11  f561b99  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-10  b4b0b0e  #52178          [BUGFIX] Cannot upload an extension as zip (Xavier Perseguers)
2013-10-07  31e44bd  #46845          [BUGFIX] Fix namespace in FileMountRepositoryTest (Marc Bastian Heinrichs)
2013-10-07  a7da230  #49538          [BUGFIX] Fields of type file_reference are not properly indexed (Martin Borer)
2013-10-07  388c02d  #52546          [BUGFIX] Missing closing tag in ElementBrowser (Philipp Gampe)
2013-10-06  30d93b4  #50756          [FEATURE] Backport ClassNamingUtility (Stefan Neufeind)
2013-10-05  d6a8e68  #52469          [TASK] Use instanceof comparison instead of string comparison (Benjamin Serfhos)
2013-09-30  8e1ea88  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Dmitry Dulepov)
2013-09-28  a2532bb  #51329          [BUGFIX] Initialize extension name in command requests (Alexander Stehlik)
2013-09-28  7144eb5  #52346          [BUGFIX] Incomplete backup in AbstractUserAuthenticationTest (Christian Kuhn)
2013-09-27  9c200ea  #52091,#51684   [BUGFIX] Check for string before using strlen (Kilian Hann)
2013-09-27  128d147  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  9fa9f15  #51588          [BUGFIX] Clear cached menu by tag (Zbigniew Jacko)
2013-09-27  30af6a5  #50437          [BUGFIX] Fix jumpToUrl()-Usage in Element Browser (Benjamin Pick)
2013-09-26  77c69e7  #52266          [BUGFIX] groupFor-VH does not work with @lazy (Stefan Froemken)
2013-09-26  3f0cc99  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  919541b  #52316          [BUGFIX] Fatal in DefaultConfiguration (Christian Kuhn)
2013-09-26  0deefa0  #52305          [BUGFIX] Configure main extbase caches for unlimited entry lifetime (Christian Kuhn)
2013-09-26  d00db27  #52295          [TASK] Use SimpleFileBackend for t3lib_l10n cache (Christian Kuhn)
2013-09-25  d01851c  #52226          [BUGFIX] EM does not link to docs.typo3.org (Xavier Perseguers)
2013-09-25  68bb292  #51116          [BUGFIX] Increase performance of exports for caches (Markus Klein)
2013-09-25  3f8cd14  #52243          [BUGFIX] Remove duplicate exception code (Fabien Udriot)
2013-09-24  7151ce0  #52173          [BUGFIX] Correct storage selection (common prefixes) (Ernesto Baschny)
2013-09-24  0a80fb6  #52201          [BUGFIX] Fix broken Unit-test for #44825 (Wouter Wolters)
2013-09-23  be4627f  #44825          [BUGFIX] Fix page.headerData + USER_INT (Helmut Hummel)
2013-09-20  580a576  #48912          [BUGFIX] Increase length of identifier field in sys_file (Nicole Cordes)
2013-09-20  cb6bf25  #52056          [BUGFIX] Wrong exception on renaming folder (Francois Suter)
2013-09-19  cdba66b  #49328          [BUGFIX] Fix PHP warning when writing to Backend user log (Alexander Stehlik)
2013-09-17  23e6007  #45859          [BUGFIX] Faulty expand/collapse behavior in Element Browser (Oliver Hader)
2013-09-17  c79315a  #19045          [BUGFIX] Fix cropping of transparent gifs with im6. (Stefan Neufeind)
2013-09-17  aa4ab27  #50907          [BUGFIX] Form Wizard: Adds mouse pointer to docheader icons (Ernesto Baschny)
2013-09-13  22ee660  #51981          [BUGFIX] Also consider JPEG files for IM/GM (Markus Klein)
2013-09-12  40cb0a4  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)
2013-09-12  903046f  #51891          [BUGFIX] Call to undefined method setTemplateFile (Wouter Wolters)
2013-12-05 16:44:04 +00:00
taca
cea49f4db0 Update typo347 to 4.7.16 (TYPO3 4.7.16).
2013-11-26  95a730f                  [RELEASE] Release of TYPO3 4.7.16 (TYPO3 Release Team)
2013-11-19  5975854  #53758          [BUGFIX] Table cache_imagesizes is defined twice (Michiel Roos)
2013-11-19  7d0a241  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-11  90f4945  #31998          [BUGFIX] Faulty check for missing SMTP port (Stefan Neufeind)
2013-11-11  f328884  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Neufeind)
2013-11-09  2c82f33  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Stefan Neufeind)
2013-11-09  d683693  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-10-28  37c4f0b  #53075          [BUGFIX] Cannot auto-load SC_* classes (Ernesto Baschny)
2013-10-23  ceba809  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-23  f8f155e  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Jigal van Hemert)
2013-10-22  2ce69d2  #50881          [TASK] Added missing core autoloaded files (Ernesto Baschny)
2013-10-13  d361b29  #52759          [BUGFIX] Object passed to date() (Philipp Gampe)
2013-10-12  3699866  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-11  073dd57  #36573          [BUGFIX] Add workspace overlay for fetched records. (Anja Leichsenring)
2013-10-06  f26f2f1  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  fda9783  #52091,#51684   [BUGFIX] Check for string before using strlen (Markus Klein)
2013-09-26  9673d7e  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  e06f05a  #34886          [BUGFIX] CF FileBackend unlimited lifetime support (Dominique Feyer)
2013-12-05 16:42:21 +00:00
taca
c22810d192 Update typo345 to 4.5.31 (TYPO3 4.5.31).
2013-11-26  434ce71                  [RELEASE] Release of TYPO3 4.5.31 (TYPO3 Release Team)
2013-11-19  396534e  #53758          [BUGFIX] Table cache_imagesizes is defined twice (Michiel Roos)
2013-11-19  3f2ed1d  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-15  428baac  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-11  6755f40  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  082facd  #31998          [BUGFIX] Faulty check for missing SMTP port (Stefan Neufeind)
2013-11-09  c581f33  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Stefan Neufeind)
2013-11-09  7b08aa9  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-04  d372f5f  #38055          [BUGFIX] Remove declare(encoding=) (Josef Florian Glatz)
2013-10-28  5ae438c  #53075          [BUGFIX] Cannot auto-load SC_* classes (Ernesto Baschny)
2013-10-22  b5d6e9f  #50881          [TASK] Added missing core autoloaded files (Ernesto Baschny)
2013-10-13  5b072ff  #52759          [BUGFIX] Object passed to date() (Philipp Gampe)
2013-10-12  6371e46  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  78871e2  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  ce02c01  #36573          [BUGFIX] Add workspace overlay for fetched records. (Anja Leichsenring)
2013-10-11  d114ddb  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-06  3289c39  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  cd1e12b  #52091,#51684   [BUGFIX] Check for string before using strlen (Markus Klein)
2013-09-26  c8d2033  #34886          [BUGFIX] CF FileBackend unlimited lifetime support (Dominique Feyer)
2013-09-18  ef6dc06                  [BUGFIX] Fix cropping of transparent gifs with im6. (Felix Bünemann)
2013-09-12  70ce540  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)
2013-12-05 16:41:07 +00:00
imil
537fecae91 Updated to nginx 1.4.4
Changes with nginx 1.4.4                                         19 Nov 2013

    *) Security: a character following an unescaped space in a request line
       was handled incorrectly (CVE-2013-4547); the bug had appeared in
       0.8.41.
       Thanks to Ivan Fratric of the Google Security Team.


Changes with nginx 1.4.3                                         08 Oct 2013

    *) Bugfix: a segmentation fault might occur in a worker process if the
       ngx_http_spdy_module was used with the "client_body_in_file_only"
       directive.

    *) Bugfix: a segmentation fault might occur on start or during
       reconfiguration if the "try_files" directive was used with an empty
       parameter.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
       password encryption method.
       Thanks to Markus Linnala.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the mail proxy server.
2013-12-05 15:09:58 +00:00
imil
3fb1f793b3 Updated to nginx 1.5.7
Changes with nginx 1.5.7                                         19 Nov 2013

    *) Security: a character following an unescaped space in a request line
       was handled incorrectly (CVE-2013-4547); the bug had appeared in
       0.8.41.
       Thanks to Ivan Fratric of the Google Security Team.

    *) Change: a logging level of auth_basic errors about no user/password
       provided has been lowered from "error" to "info".

    *) Feature: the "proxy_cache_revalidate", "fastcgi_cache_revalidate",
       "scgi_cache_revalidate", and "uwsgi_cache_revalidate" directives.

    *) Feature: the "ssl_session_ticket_key" directive.
       Thanks to Piotr Sikora.

    *) Bugfix: the directive "add_header Cache-Control ''" added a
       "Cache-Control" response header line with an empty value.

    *) Bugfix: the "satisfy any" directive might return 403 error instead of
       401 if auth_request and auth_basic directives were used.
       Thanks to Jan Marc Hoffmann.

    *) Bugfix: the "accept_filter" and "deferred" parameters of the "listen"
       directive were ignored for listen sockets created during binary
       upgrade.
       Thanks to Piotr Sikora.

    *) Bugfix: some data received from a backend with unbufferred proxy
       might not be sent to a client immediately if "gzip" or "gunzip"
       directives were used.
       Thanks to Yichun Zhang.

    *) Bugfix: in error handling in ngx_http_gunzip_filter_module.

    *) Bugfix: responses might hang if the ngx_http_spdy_module was used
       with the "auth_request" directive.

    *) Bugfix: memory leak in nginx/Windows.


Changes with nginx 1.5.6                                         01 Oct 2013

    *) Feature: the "fastcgi_buffering" directive.

    *) Feature: the "proxy_ssl_protocols" and "proxy_ssl_ciphers"
       directives.
       Thanks to Piotr Sikora.

    *) Feature: optimization of SSL handshakes when using long certificate
       chains.

    *) Feature: the mail proxy supports SMTP pipelining.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
       password encryption method.
       Thanks to Markus Linnala.

    *) Bugfix: in MacOSX, Cygwin, and nginx/Windows incorrect location might
       be used to process a request if locations were given using characters
       in different cases.

    *) Bugfix: automatic redirect with appended trailing slash for proxied
       locations might not work.

    *) Bugfix: in the mail proxy server.

    *) Bugfix: in the ngx_http_spdy_module.


Changes with nginx 1.5.5                                         17 Sep 2013

    *) Change: now nginx assumes HTTP/1.0 by default if it is not able to
       detect protocol reliably.

    *) Feature: the "disable_symlinks" directive now uses O_PATH on Linux.

    *) Feature: now nginx uses EPOLLRDHUP events to detect premature
       connection close by clients if the "epoll" method is used.

    *) Bugfix: in the "valid_referers" directive if the "server_names"
       parameter was used.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the "image_filter" directive.
       Thanks to Lanshun Zhou.

    *) Bugfix: OpenSSL 1.0.1f compatibility.
       Thanks to Piotr Sikora.


Changes with nginx 1.5.4                                         27 Aug 2013

    *) Change: the "js" extension MIME type has been changed to
       "application/javascript"; default value of the "charset_types"
       directive was changed accordingly.

    *) Change: now the "image_filter" directive with the "size" parameter
       returns responses with the "application/json" MIME type.

    *) Feature: the ngx_http_auth_request_module.

    *) Bugfix: a segmentation fault might occur on start or during
       reconfiguration if the "try_files" directive was used with an empty
       parameter.

    *) Bugfix: memory leak if relative paths were specified using variables
       in the "root" or "auth_basic_user_file" directives.

    *) Bugfix: the "valid_referers" directive incorrectly executed regular
       expressions if a "Referer" header started with "https://".
       Thanks to Liangbin Li.

    *) Bugfix: responses might hang if subrequests were used and an SSL
       handshake error happened during subrequest processing.
       Thanks to Aviram Cohen.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the ngx_http_spdy_module.
2013-12-05 15:04:05 +00:00
richard
5a0c83c03d mozilla-trace.h and javascript-trace.h are delivered regardless of dtrace option 2013-12-05 13:23:09 +00:00
taca
03858137dd Update ruby-rails32 to 3.2.16.
Only version number has updated.
2013-12-04 15:47:17 +00:00
taca
59ee96bf47 Update ruby-actionpack32 to 3.2.16, security update.
* Deep Munge the parameters for GET and POST Fixes CVE-2013-6417
* Stop using i18n's built in HTML error handling.  Fixes: CVE-2013-4491
* Escape the unit value provided to number_to_currency Fixes CVE-2013-6415
* Only use valid mime type symbols as cache keys CVE-2013-6414
2013-12-04 15:45:38 +00:00
taca
5f63f41735 Update ruby-activeresource32 to 3.2.16.
Only version number has updated.
2013-12-04 15:44:42 +00:00
bsiegert
68dae1040f Remove -h from the chown commands in post-install. The chown manpage (on
MirBSD) says: "The -R and -h options are mutually exclusive."
2013-12-03 21:18:36 +00:00
adam
e869f971b8 Changes 3.3.11:
* Fix more of rev.12660
* Protect aclIsProxyAuth() debugging from NULL names (via NULL AclMatchedName).
* Bug 3972: Segfault when getting the deny info page ID after a reconfigure
* Fix mistake in porting rev.12660
* Bug 3782: Digest authentication not obeying nonce_max_count
* Bug 3970: max_filedescriptors disabled due to missing setrlimit
* Bug 3967: ipc/Kid.cc compilation failure: 'time' was not declared in this scope
* Re-compute Range response content offset after an FTP response was adapted.
* Source Maintenance: re-add snapshot script to branch
* Bug 3960: Dead Peers Are Not Revived
* Windows: Fix aclocal "is already registered" errors
* Windows: Ensure array index is an integer in C code
* Bug 3956: xstrndup: tried to dup a NULL pointer
* Make HTTP header parser obey relaxed_header_parser
* SourceFormat Enforcement
* Replace blocking sleep(3) and close UDS socket on failures.
* Bug 3936: error-details.txt parse error
* Bug 3906: Filedescriptor leaks in SNMP
2013-12-03 15:23:51 +00:00
wiz
9060854ff4 Remove p5-I18N-LangTags references in preparation for package removal.
Bump PKGREVISION.
2013-12-02 12:21:56 +00:00
adam
595f234761 Changes 5.3:
This release fixes several bugs and adds two new pie charts about the most use top second level domains. It is also possible to do DNS lookup of Ip addresses inside SquidAnalyzer, see UseClientDNSName new configuration directive. This can slow down dramatically the squid-analyzer performances but you can adjust the DNS lookup timeout to prevent waiting slow DNS server, see DNSLookupTimeout new configuration directive.

- Update and fix first and second top level domain name.
- Add new directive DNSLookupTimeout to change the default timeout for
  DNS lookup. Add 0.0001 second timeout when SquidAnalyzer look for a DNS
  name and can't find a name server.
- Add pie chart of top second level domains.
- Fix some HTML tag issues and table ordering on Top domain hits and Top
  url hits.
- Update INSTALL file to remove GD::Graph requirements.
- Change underscore used to replace space in user name by the special
  string _SPC_ so that underscore will not be wrongly replaced on HTML
  output.
- Fix pt_BR translation with charset to utf-8 and a few words with
  accentuation fix.
- Allow Ip addresses on user names to be replaced by their DNS name, this
  feature is activated by a new directive: UseClientDNSName.
- Add missing description of --no-year-stat option to documentation and
  squid-analyzer usage.
2013-12-02 08:08:01 +00:00
wiz
00029aeea2 Update to 4.58:
4.58  2013-11-19
  - Improved IIS and WebSphere compatibility of Mojo::Message::Request.
  - Improved Mojo::Collection to allow join without arguments.
  - Improved Mojo::DOM::HTML performance.
  - Fixed recursion bug in Mojo::Reactor::EV where timers could run more than
    once.
  - Fixed a few "0" value bugs in Mojo::DOM::HTML.
2013-12-01 11:01:50 +00:00
richard
37f24f6fdd Ensure gnu-m4 is used, in particular thunderbird uses patsubst.
This fixes a configure problem for solaris, in particular.
2013-12-01 10:54:40 +00:00
ryoon
bb355093b5 Revbump from devel/apr update 2013-12-01 10:18:02 +00:00
ryoon
31ac06da73 Update to 2.4.7
Changelog:
Changes with Apache 2.4.7

  *) APR 1.5.0 or later is now required for the event MPM.

  *) slotmem_shm: Error detection. [Jim Jagielski]

  *) event: Use skiplist data structure. [Jim Jagielski]

  *) mpm_unix: Add ap_mpm_podx_* implementation to avoid code duplication
     and align w/ trunk. [Jim Jagielski]

  *) Fix potential rejection of valid MaxMemFree and ThreadStackSize
     directives.  [Mike Rumph <mike.rumph oracle.com>]

  *) mod_proxy_fcgi: Remove 64K limit on encoded length of all envvars.
     An individual envvar with an encoded length of more than 16K will be
     omitted.  [Jeff Trawick]

  *) mod_proxy_fcgi: Handle reading protocol data that is split between
     packets.  [Jeff Trawick]

  *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by
     allowing custom parameters to be configured via SSLCertificateFile,
     and by adding standardized DH parameters for 1024/2048/3072/4096 bits.
     Unless custom parameters are configured, the standardized parameters
     are applied based on the certificate's RSA/DSA key size. [Kaspar Brand]

  *) mod_ssl, configure: Require OpenSSL 0.9.8a or later. [Kaspar Brand]

  *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA
     keys, and unconditionally disable aNULL, eNULL and EXP ciphers
     (not overridable via SSLCipherSuite). [Kaspar Brand]

  *) Add experimental cmake-based build system for Windows.  [Jeff Trawick,
     Tom Donovan]

  *) event MPM: Fix possible crashes (third party modules accessing c->sbh)
     or occasional missed mod_status updates for some keepalive requests
     under load. [Eric Covener]

  *) mod_authn_socache: Support optional initialization arguments for
     socache providers.  [Chris Darroch]

  *) mod_session: Reset the max-age on session save. Bug 47476. [Alexey
     Varlamov <alexey.v.varlamov gmail com>]

  *) mod_session: After parsing the value of the header specified by the
     SessionHeader directive, remove the value from the response. Bug 55279.
     [Graham Leggett]

  *) mod_headers: Allow for format specifiers in the substitution string
     when using Header edit. [Daniel Ruggeri]

  *) mod_dav: dav_resource->uri is treated as unencoded. This was an
     unnecessary ABI changed introduced in 2.4.6. Bug 55397.

  *) mod_dav: Don't require lock tokens for COPY source. Bug 55306.

  *) core: Don't truncate output when sending is interrupted by a signal,
     such as from an exiting CGI process. Bug 55643. [Jeff Trawick]

  *) WinNT MPM: Exit the child if the parent process crashes or is terminated.
     [Oracle Corporation]

  *) Windows: Correct failure to discard stderr in some error log
     configurations.  (Error message AH00093)  [Jeff Trawick]

  *) mod_session_crypto: Allow using exec: calls to obtain session
     encryption key.  [Daniel Ruggeri]

  *) core: Add missing Reason-Phrase in HTTP response headers.
     Bug 54946. [Rainer Jung]

  *) mod_rewrite: Make rewrite websocket-aware to allow proxying.
     Bug 55598. [Chris Harris <chris.harris kitware com>]

  *) mod_ldap: When looking up sub-groups, use an implicit objectClass=*
     instead of an explicit cn=* filter. [David Hawes <dhawes vt.edu>]

  *) ab: Add wait time, fix processing time, and output write errors only if
     they occured. [Christophe Jaillet]

  *) worker MPM: Don't forcibly kill worker threads if the child process is
     exiting gracefully.  [Oracle Corporation]

  *) core: apachectl -S prints wildcard name-based virtual hosts twice.
     Bug 54948 [Eric Covener]

  *) mod_auth_basic: Add AuthBasicUseDigestAlgorithm directive to
     allow migration of passwords from digest to basic authentication.
     [Chris Darroch]

  *) ab: Add a new -l parameter in order not to check the length of the responses.
     This can be usefull with dynamic pages.
     Bug 9945, Bug 27888, Bug 42040 [<ccikrs1 cranbrook edu>]

  *) Suppress formatting of startup messages written to the console when
     ErrorLogFormat is used.  [Jeff Trawick]

  *) mod_auth_digest: Be more specific when the realm mismatches because the
     realm has not been specified. [Graham Leggett]

  *) mod_proxy: Add a note in the balancer manager stating whether changes
     will or will not be persisted and whether settings are inherited.
     [Daniel Ruggeri, Jim Jagielski]

  *) mod_cache: Avoid a crash with strcmp() when the hostname is not provided.
     [Graham Leggett]

  *) core: Add util_fcgi.h and associated definitions and support
     routines for FastCGI, based largely on mod_proxy_fcgi.
     [Jeff Trawick]

  *) mod_headers: Add 'Header note header-name note-name' for copying a response
     headers value into a note. [Eric Covener]

  *) mod_headers: Add 'setifempty' command to Header and RequestHeader.
     [Eric Covener]

  *) mod_logio: new format-specifier %S (sum) which is the sum of received
     and sent byte counts.
     Bug 54015 [Christophe Jaillet]

  *) mod_deflate: Improve error detection when decompressing request bodies
     with trailing garbage: handle case where trailing bytes are in
     the same bucket. [Rainer Jung]

  *) mod_authz_groupfile, mod_authz_user: Reduce severity of AH01671 and AH01663
     from ERROR to DEBUG, since these modules do not know what mod_authz_core
     is doing with their AUTHZ_DENIED return value. [Eric Covener]

  *) mod_ldap: add TRACE5 for LDAP retries. [Eric Covener]

  *) mod_ldap: retry on an LDAP timeout during authn. [Eric Covener]

  *) mod_ldap: Change "LDAPReferrals off" to actually set the underlying LDAP
     SDK option to OFF, and introduce "LDAPReferrals default" to take the SDK
     default, sans rebind authentication callback.
     [Jan Kaluza <kaluze AT redhat.com>]

  *) core: Log a message at TRACE1 when the client aborts a connection.
     [Eric Covener]

  *) WinNT MPM: Don't crash during child process initialization if the
     Listen protocol is unrecognized.  [Jeff Trawick]

  *) modules: Fix some compiler warnings. [Guenter Knauf]

  *) Sync 2.4 and trunk
       - Avoid some memory allocation and work when TRACE1 is not activated
       - fix typo in include guard
       - indent
       - No need to lower the string before removing the path, it is just a waste of time...
       - Save a few cycles
     [Christophe Jaillet <christophe.jaillet wanadoo.fr>]

  *) mod_filter: Add "change=no" as a proto-flag to FilterProtocol
     to remove a providers initial flags set at registration time.
     [Eric Covener]

  *) core, mod_ssl: Enable the ability for a module to reverse the sense of
     a poll event from a read to a write or vice versa. This is a step on
     the way to allow mod_ssl taking full advantage of the event MPM.
     [Graham Leggett]

  *) Makefile.win: Install proper pcre DLL file during debug build install.
     Bug 55235.  [Ben Reser <ben reser org>]

  *) mod_ldap: Fix a potential memory leak or corruption.  Bug 54936.
     [Zhenbo Xu <zhenbo1987 gmail com>]

  *) ab: Fix potential buffer overflows when processing the T and X
     command-line options.  Bug 55360.
     [Mike Rumph <mike.rumph oracle.com>]

  *) fcgistarter: Specify SO_REUSEADDR to allow starting a server
     with old connections in TIME_WAIT.  [Jeff Trawick]

  *) core: Add open_htaccess hook which, in conjunction with dirwalk_stat
     and post_perdir_config (introduced in 2.4.5), allows mpm-itk to be
     used without patches to httpd core. [Stefan Fritsch]

  *) support/htdbm: fix processing of -t command line switch. Regression
     introduced in 2.4.4
     Bug 55264 [Jo Rhett <jrhett netconsonance com>]


  [Apache 2.3.0-dev includes those bug fixes and changes with the
   Apache 2.2.xx tree as documented, and except as noted, below.]

Changes with Apache 2.2.x and later:

  *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?view=markup

Changes with Apache 2.0.x and later:

  *) http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/CHANGES?view=markup
2013-12-01 10:02:34 +00:00
taca
cd30eff39f Add "used by" lines for contao32/contao32-example. 2013-11-29 17:36:25 +00:00
taca
ee0f0cbc6f Update contao32 and contao32-example package to 3.2.1.
* pkgsrc change: drop optional php-tidy package requirement from MESSAGE.

Version 3.2.1 (2013-11-29)
--------------------------

### Updated
Updated TinyMCE to version 3.5.10 to fix the IE11 issues (see #6479).

### Fixed
Optionally override the repository tables when importing a template (see #6470).

### Fixed
Only do the UUID conversion once even if the `Database\Updater` helper methods
are called multiple times (see #6481).

### Fixed
Correctly toggle the mobile/desktop view (see #6227).

### Fixed
Correctly detect UUIDs in the "file" insert tag (see #6472).

### Fixed
Correctly assign images to FAQs (see #6465).

### Fixed
Improved the speed and memory footprint of the news archive menu (see #6463).

### Fixed
Removed `CalendarEventsModel::findBoundaries()` (see #6467).
2013-11-29 16:43:06 +00:00
joerg
411747e08a ISO C++ says that replacement operators new/delete must be global. 2013-11-29 13:00:32 +00:00
wiz
bd9eea67da PKGREVISION bump for json-c shlib rename. 2013-11-25 12:00:45 +00:00
richard
a264dd6228 fix solaris build and add dtrace option to firefox24 2013-11-24 12:37:40 +00:00
wiz
b125a56694 Comment out p5-Storable dependency; included in perl since 5.7.3. 2013-11-24 09:57:02 +00:00
dholland
2b6b23a10e Does not build with php55. 2013-11-24 07:11:11 +00:00
ryoon
9d10b4300a Update to 7.0.47
Changelog:
 The Apache Tomcat Project is proud to announce the release of version 7.0.47 of Apache Tomcat. This release contains a number of bug fixes and improvements compared to version 7.0.42. The notable changes include:

    Back-port the JSR-356 Java WebSocket 1.0 implementation from Apache Tomcat 8. Note that use of this functionality requires Java 7.
    Deprecate the Apache Tomcat proprietary WebSocket API in favour of the new JSR-356 implementation.
    Add a drawing board example to the WebSocket examples.
    The minimum required APR/native library version required if the APR/native connector is used is now 1.1.29.
2013-11-24 04:44:51 +00:00
wen
fbeb51fb1a Update to 0.038
Upstream changes:
0.038     2013-11-18 12:56:26 America/New_York

    [FIXED]

    - Fixed a bug where authentication parameters in the URL would override
      an existing Authorization header

0.037     2013-10-28 13:26:21 America/New_York

    [FIXED]

    - Basic authentication in the URL is now unescaped before being encoded
      into the authentication header

    [DOCUMENTED]

    - Added HTTP::Tiny::UA to SEE ALSO and suggested it as the appropriate
      place for new features

0.036     2013-09-25 12:10:06 America/New_York

    [FIXED]

    - Compile test could hang on Windows

    [PREREQS]

    - Dropped configure_requires for ExtUtils::MakeMaker to 6.17

    [META]

    - Updated support files

0.035     2013-09-10 12:29:28 America/New_York

  [CHANGED]

  - Encoded from data from 'post_form' preserves term order if data is
    provided as an array reference.  (They are still sorted for consistency
    if provided as a hash reference.)
2013-11-24 00:35:07 +00:00
wen
de33e4b329 Update to 1.0030
Upstream changes:
1.0030  2013-11-23 08:54:01 CET
    [IMPROVEMENTS]
        - Middleware::LogDispatch stringifies objects (oalders) #427
        - Encode wide character strings as UTF-8 in HTTP::Server::PSGI #429
        - Optimize Plack::Response->finalize performance (kazeburo) #433
        - Optimize mount() performance in Plack::App::URLMap

    [BUG FIXES]
        - ErrorDocument: remove Content-Encoding and Transfer-Encoding (kazeburo) #430
        - Fix harakiri test hang on win32 (wchristian) #431
        - Handler::FCGI: Restore --keep-stderr option (mauzo) #432
2013-11-24 00:31:09 +00:00
ryoon
8e3ddeb2e7 Update to 2.22.1
* Sync with seamonkey-2.22.1
2013-11-23 02:56:55 +00:00
ryoon
93a59da488 Add PLIST.chatzilla 2013-11-23 02:39:52 +00:00
ryoon
f78ed40be8 Update to 2.22.1
* Add mozilla-chatzilla option for chatzilla (and some JavaScript
  development tools, I cannot separate them.)

Changelog:
Fixed in SeaMonkey 2.22.1
MFSA 2013-103 Miscellaneous Network Security Services (NSS) vulnerabilities
2013-11-23 02:39:25 +00:00
ryoon
fab0e46fb4 Add php-basercms 2013-11-22 14:37:22 +00:00
ryoon
3d08bf407b Import php54-basercms-2.1.2 as www/php-basercms.
Open source Content Management System based on CakePHP framework.
This CMS's user interface is entirely written in Japanese.
2013-11-22 14:35:56 +00:00
ryoon
f016f68f93 Update to 5.0.13
* Fix MESSAGE for sqlite3

Changelog:
Version 5.0.13 Nov 8th 2013

    SECURITY: Fix a possible security bypass on admin page under certain circumstances and MariaDB
    Correctly update database schema during app update
    Fix automatic login rejecion error message
    Several Oracle fixes
    Fixing serverroot/webroot calculation
    Adding detection for aborted uploads for chunked uploads
    Fixing directory handling that end with a space
    Fixing home storage handling
    Allow to share a file/folder as public link also if one of it parents was already shared as link
    Fix search in shared folders
    Fix check for uploads into Shared folder
    Several Shared folder handling fixes
    Prefere them PNGs over core SVGs
    Fall back to default log file of specified logfile doesn't exist
    Several IE fixes
    Fix LDAP login for certain circumstances
    Fixed chunk size calculation for encrypted files
    Fix recursive delete for smb
    Fix using touch for creating files for smb
    Support OCS Share API
    Fix updating ETAGs
    Don't write user passwords into logfile
    Enable configuration of timezones for logfile timestamps
    Cleanup share database table for files that no longer exist
    Adding privilege check on move and rename operations
2013-11-22 14:34:33 +00:00
taca
01d6815d66 Add and enable contao32 and contao32-example. 2013-11-21 16:54:06 +00:00
taca
45d9601d45 Add contao32-example package version 3.2.0, demo site data for contao32. 2013-11-21 16:53:39 +00:00
taca
c88f2509d7 Add contao32 package version 3.2.0, new LTS (Long Term Support) release of
Contao Open Source CMS.

Contao is an Open Source Content Management Framework developed by Leo Feyer
and distributed under the LGPL license (see GPL.txt and LGPL.txt for more
information).  It was formerly known as TYPOlight Open Source CMS.

Its open architecture allows everybody to extend the system to fit his
needs. Contao specializes in accessible websites and is accessbile
itself (front end and back end), rendering valid HTML5 or XHTML pages.
2013-11-21 16:52:43 +00:00
taca
de6c049fc7 Add version for Contao 3.2.0. 2013-11-21 16:50:50 +00:00
ryoon
66842bfca4 Update to 24.1.1
* Sync with firefox 24.1.1
2013-11-21 15:27:54 +00:00
ryoon
502ce2776c Update to 25.0.1
* Sync with firefox 25.0.1
2013-11-21 15:27:02 +00:00
ryoon
b8d181de5d Reset PKGREVISION 2013-11-21 15:25:49 +00:00
ryoon
dc0792ffc5 Update to 24.1.1
Changelog:
FIXED
Update branches that use 4.10 RTM to 4.10.2 RTM (see 935568)
FIXED
Update Mozilla to NSS 3.15.3 (new alternative NSS branch) to pick up a few fixes (see 935959)
FIXED
Some UI strings in Firefox 24.1.0 ESR l10n builds are in English (see 932310)
2013-11-21 15:25:17 +00:00
ryoon
145dc486ab Update to 25.0.1
Changelog:
FIXED
25.0.1: New security fixes can be found here
FIXED
25.0.1: Pages sometimes wouldn't load without first moving the cursor

Fixed in Firefox 25.0.1
MFSA 2013-103 Miscellaneous Network Security Services (NSS) vulnerabilities
2013-11-21 15:24:38 +00:00
taca
59e73fb298 Update drupal7 to 7.24 (Drupal 7.24).
Drupal 7.24, 2013-11-20
----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
2013-11-21 15:14:11 +00:00
taca
9399564f64 Update drupal6 to 6.29 (Drupal 6.29).
Drupal 6.29, 2013-11-20
----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2013-003.
2013-11-21 15:13:09 +00:00
obache
99cd3b854b require lcms (not lcms2). 2013-11-21 11:41:33 +00:00
obache
0d5ce4d58e openssl.pc is provided by pkgsrc if required now. 2013-11-21 11:39:37 +00:00
adam
81059da3bd Revbump after updating devel/boost-libs 2013-11-20 20:04:35 +00:00
obache
be6a7bf66d recursive bump from boost-lib shlib major bump. 2013-11-20 13:23:41 +00:00
taca
9bd567aaa1 Update contao211 to 2.11.13.
Version 2.11.13 (2013-11-19)
----------------------------

### Fixed
Sort the list of available modules (see #6391).

### Fixed
Decode entities in passwords (see #6252).

### Fixed
Replace insert tags in the details view of the listing module (see #6120).
2013-11-19 14:19:58 +00:00
wen
b880225abb Update to 2.5.3
Upstream changes:
Highlights
MDL-41252 - Accessibility improvements to course page.
MDL-34209 - Moving sections by drag and drop reorders sections correctly.
MDL-29987 - Embedded PDF files behave correctly.
Functional changes
MDL-42069 - Option to sort by last name in Quiz grading report.
MDL-38267 - Submit button is not shown after cut-off date in Assignment.
MDL-22669 - When restoring a larger course over a smaller one, the number of sections is maintained.
MDL-42666 and MDL-42668 - The Box.net repository and Box.net portfolio have been updated to use Box.net API v2. Moodle sites which have used the Box.net repository previously need to run the Box.net-alias-to-copy-conversion tool as soon as possible. Also, HTTPS is now required for sites to access Box.net. See Box.net APIv1 migration for details.
API changes
MDL-41861, MDL-41882, MDL-41853,... - Generator tools have been backported.
Security issues
A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.

Fixes and improvements
MDL-32862 - Links to 1.9 resource types work after upgrade to 2.2 followed by backup and restore.
MDL-40903 - Persistent cache is now split into logical parts.
MDL-41942 - Courses in categories no longer become invisible due to caching problem.
MDL-41352 - Mymobile theme no longer producing JavaScript error on course pages.
MDL-37528 - Block drag-and-drop issue resolved.
MDL-42542 - The Portfolio cron job is now working.
MDL-42619 - Error deleting a course link from the community block is fixed.
MDL-37877 - Automated backup failure is now reported.
2013-11-16 13:03:08 +00:00
wen
f61bce0627 Update to 1.21.3
Upstream changes:
Changes since 1.21.2
(bug 53032) SECURITY: Don't cache when a call could autocreate
(bug 55332) SECURITY: Improve css javascript detection
(bug 49717) Fix behaviour $wgVerifyMimeType = false; in Upload
Fix comma errors in various js files
Translations
2013-11-16 12:00:27 +00:00
ryoon
9b6a8903b0 In non-ALSA case, ALSA support is disabled explicitly 2013-11-16 02:01:46 +00:00
joerg
fb7af7c17f No support for Apache 1.3 here. 2013-11-15 20:16:28 +00:00
joerg
5f8459fc53 Add the LTS version of www/py-django for users that desire less
volatility.
2013-11-14 21:27:01 +00:00
adam
c7c2a273ee Added compatibility with Apache 2.4.x.
Fixed Clang issue when some symbols were truncated due to inlining.
2013-11-14 17:03:40 +00:00
ryoon
00caecdb66 FIx build on NetBSD 5, reported by John D. Baker 2013-11-14 14:03:01 +00:00
ryoon
d4f7d3749b Update to 17.0.10
* Sync with firefox17-17.0.10
2013-11-14 13:17:58 +00:00
ryoon
2a3f4e6b65 Update to 17.0.10
Changelog:
Fixed in Firefox ESR 17.0.10
MFSA 2013-101 Memory corruption in workers
MFSA 2013-100 Miscellaneous use-after-free issues found through ASAN fuzzing
MFSA 2013-98 Use-after-free when updating offline cache
MFSA 2013-96 Improperly initialized memory and overflows in some JavaScript functions
MFSA 2013-95 Access violation with XSLT and uninitialized data
MFSA 2013-93 Miscellaneous memory safety hazards (rv:25.0 / rv:24.1 / rv:17.0.10)
2013-11-14 13:16:31 +00:00
is
4ae4df7c4c Update to 1.97.
Among others, this changes using crypto:sha() to crypto:hash() for Erlang
that is new enough.

Bugfixes in pam, sendfile, generation of mime_types.erl
Other changes in the area of Webdav, sendfile, embedded mode, rebar
support, ssl options.
Optimization in ssi code.
2013-11-13 15:59:22 +00:00
ryoon
58919e015e Fix PR pkg/48240 and bump PKGREVISION
* Use *30 instead of *50. Restore session is recovered on NetBSD/amd64 5.2.
  Based on martin@'s patch on pkgsrc-users@.
2013-11-13 14:23:02 +00:00
ryoon
2765beb902 Fix PR pkg/48240 and bump PKGREVISION
* Use *30 instead of *50. Restore session is recovered on NetBSD/amd64 5.2.
  Based on martin@'s patch on pkgsrc-users@.
2013-11-13 14:17:11 +00:00
ryoon
ef4512e63f Fix PR pkg/48240 and bump PKGREVISION
* Use *30 instead of *50. Restore session is recovered on NetBSD/amd64 5.2.
  Based on martin@'s patch on pkgsrc-users@.
2013-11-13 14:12:31 +00:00
adam
c26fc72ee2 Changes 3.2.4:
Bug-fix release.
2013-11-12 19:24:16 +00:00
adam
c3bb2ce821 Changes 1.6:
Simplified default project and app templates
Improved transaction management
Persistent database connections
Discovery of tests in any test module
Time zone aware aggregation
Support for savepoints in SQLite
BinaryField model field
GeoDjango form widgets
check management command added for verifying compatibility
Model.save() algorithm changed
Minor features
2013-11-12 19:12:12 +00:00
taca
87fe454ea2 Update contao211-translations to 201311070.
Update Finnish language files.
2013-11-12 15:10:22 +00:00
wen
cbbff309f8 Update to 4.57
Upstream changes:
4.57  2013-11-11
  - Improved compatibility with IO::Socket::SSL 1.957.
  - Fixed error event bug in Mojo::IOLoop::Delay.

4.56  2013-11-09
  - Fixed backspace escaping bug in Mojo::JSON. (ig3)

4.55  2013-11-07
  - Fixed Windows bug in "daemon.t".

4.54  2013-11-07
  - Added parts attribute to Mojo::Home.
  - Fixed keep alive connection timeout bug in Mojo::UserAgent.
  - Fixed support for links within a page in Mojolicious::Plugin::PODRenderer.
  - Fixed home detection bug in Mojo.
2013-11-12 13:17:53 +00:00
kleink
6bcfd254cd Update py-flask-script to 0.6.3.
Version 0.6.3
-----------------

Released on November 11, 2013

- Separate usage into usage/help/description
- Allow for command auto detection
2013-11-11 15:43:14 +00:00
ryoon
b3efb0c637 Move CHECK_PORTABILITY_SKIP to mozilla-common.mk 2013-11-10 15:08:31 +00:00
ryoon
87ce79a3f7 Fix grammar (hopefully) 2013-11-10 11:17:46 +00:00
ryoon
c17cc26e52 Add php-ja-wordpress 2013-11-10 11:14:18 +00:00
ryoon
dbfd41843b Import php54-ja-wordpress-3.7.1 as www/php-ja-wordpress.
WordPress is a state-of-the-art publishing platform with a focus on
aesthetics, web standards, and usability. WordPress is both free and
priceless at the same time.

This package is WordPress of Japanese localized version.
It has Japanese locale file and some extension/modification for
website written in Japansese people, and for website located in Japan.
2013-11-10 11:13:08 +00:00
markd
b7a8771fbe Update to version 3.5.0
digiKam 3.5.0 - Release date: 2013-09-29

NEW FEATURES:

General : new RAW cameras supported : Richon GR, Panasonic LF1,
Canon EOS 70D, Sony RX100II, Sony RX1R, Olympus E-P5.

BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org):

001 ==> Removing tags limited to 250 selected pictures.
002 ==> Kipi-plugins cannot be deselected or digiKam not reading digikamrc.
003 ==> undo/redo does not take effect in the image.
004 ==> Feature request: Setting in digiKam to only detect faces, not
 trying to recognize them automatically.
005 ==> digiLam crashed when validating face tag with button.
2013-11-10 03:19:26 +00:00
taca
80299a6a79 Rename CT310_VERSION to CT31_VERSION since it dosen't represent 3.1.0
but 3.1.x.
2013-11-08 22:16:27 +00:00
kefren
fa1430b9eb Reflect contao31 update to 3.1.5 in package version 2013-11-08 21:36:34 +00:00
morr
c962c6c427 Update to 3.7.1 Maintenance Release.
Changes:

Version 3.7:

* Background Updates
-  Automatic updates for maintenance and security updates.
-  Daily updates for developers using nightly builds.
* Stronger Password Meter
-  New password meter to encourage users to choose stronger passwords.
* Improved Search
-  More relevant search results.
* Better Global Support
-  Localized versions will receive faster and more complete translations.
-  Background updates will include translations

More info on http://codex.wordpress.org/Version_3.7

Version 3.7.1:

- Images with captions no longer appear broken in the visual editor.
- Allow some sites running on old or poorly configured servers to continue to check for updates from WordPress.org.
- Avoid fatal errors with certain plugins that were incorrectly calling some WordPress functions too early.
- Fix hierarchical sorting in get_pages(), exclusions in wp_list_categories(), and in_category() when called with empty values.
- Fix a warning that may occur in certain setups while performing a search, and a few other notices.

More info on http://codex.wordpress.org/Version_3.7.1
2013-11-08 21:33:02 +00:00
spz
00ad786d3f update package to 5.0.2
from the release announcement:
   This release fixes two security vulnerabilities in Roller, listed below:
      CVE-2013-4171 Apache Roller RSS/Atom Feed templates contain XSS
   vulnerabilities
      CVE-2013-4212 Apache Roller contains remote code execution
   vulnerabilities
2013-11-08 20:45:28 +00:00
taca
4263be1e55 Update contao31 package to 3.1.5.
Version 3.1.5 (2013-11-08)
--------------------------

### Fixed
Correctly handle shorthand byte values (see #6345).

### Fixed
Also update the sitemap if a news/event feed is updated (see #5727).

### Fixed
Correctly sort by date in the listing module (see #5609).

### Fixed
Correctly handle the autologin key if a member is duplicated (see #5945).

### Fixed
Correctly export pages as PDF (see #6317).
2013-11-08 15:22:38 +00:00
ryoon
d149a06f2a Fix PR pkg/48240 and PR pkg/48370
* Add forgotten patch for NetBSD's cpuset(3), fix build
* Use __fstat50 etc instead of fstat on NetBSD. Based on martin@'s patch
  for firefox 27.0.
  Restore session is recovered on NetBSD/amd64.
2013-11-08 12:55:51 +00:00
ryoon
f4b2292754 Fix PR pkg/48240 and bump PKGREVISION
* Use __fstat50 etc instead of fstat etc on NetBSD. Based on martin@'s patch
  for firefox 27.0.
  Restore session is recovered on NetBSD/amd64.
2013-11-08 12:51:25 +00:00
ryoon
44e1daae06 Fix PR pkg/48240 and bump PKGREVISION
* Use __fstat50 etc instead of fstat on NetBSD. Based on martin@'s patch
  for firefox 27.0.
  Restore session is recovered on NetBSD/amd64.
2013-11-07 15:47:23 +00:00
markd
19d10e94f3 Update to KDE SC 4.11.3
bugfixes, many new features, improved stability and performance.
2013-11-07 13:18:47 +00:00
jnemeth
7307360aa6 sort 2013-11-07 04:27:04 +00:00
joerg
ded9b80b83 Fix header guard. Make sure that replacement operators are defined
globally as required by C++ spec.
2013-11-07 00:47:04 +00:00
ryoon
736a0ddae7 Add comment to patch. 2013-11-05 14:40:49 +00:00
ryoon
93dba52458 Bump PKGREVISION
Fix cpuset(3) usage. The patch is from rmind@. Thank you.
2013-11-05 14:20:41 +00:00
tonnerre
6f5e4ed815 Link the p5-POE-Component-Server-SOAP Perl package up into the www
Makefile.
2013-11-04 21:45:44 +00:00
tonnerre
3498963a99 Link the p5-POE-Component-Server-SimpleHTTP Perl module into the www
Makefile.
2013-11-04 21:39:26 +00:00
tonnerre
1194c046f5 Import the POE::Component::Server::SOAP Perl module into pkgsrc.
The Perl 5 module POE::Component::Server::SOAP is a SOAP Server
implementation for POE.
2013-11-04 21:37:53 +00:00
tonnerre
d493242582 Import the POE::Component::Server::SimpleHTTP Perl module into pkgsrc.
The Perl 5 module POE::Component::Server::SimpleHTTP is a simple HTTP
Server implementation for POE.
2013-11-04 21:11:09 +00:00
tonnerre
078279be33 Import the POE::Component::Server::SimpleHTTP Perl module into pkgsrc.
The Perl 5 module POE::Component::Server::SimpleHTTP is a simple HTTP
Server implementation for POE.
2013-11-04 20:53:46 +00:00
tonnerre
c6b21fe4f4 Import the POE::Component::Server::SOAP Perl module into pkgsrc.
The Perl 5 module POE::Component::Server::SOAP is a SOAP Server
implementation for POE.
2013-11-04 20:52:11 +00:00
tonnerre
81ff52391c Import the POE::Component::Server::SOAP Perl module into pkgsrc.
The Perl 5 module POE::Component::Server::SOAP is a SOAP Server
implementation for POE.
2013-11-04 20:40:52 +00:00
adam
06bfd04e3b Changes 3.3.10:
* kerberos_ldap_group: fix LDAP string duplication
* Avoid "hot idle": A series of rapid select() calls with zero timeout.
* Bug 3887: tcp_outgoing_tos not working for IPv6
* Fix cbdata 'error: expression result unused' errors
* Have testRock use cachemgr stubs
* Bug 3836: Fix issues with automake 1.13 and later and make check (extra)
* Bug 3836: Fix issues with automake 1.13 and later and make check
* Append Connection:close to OPTIONS requests when icap_persistent_connections is off.
* Add cache_miss_revalidate
* Bug 3480: StoreEntry::kickProducer() segfaults in store_client::copy()
* Fix CBDATA_CLASS2 macro definition
* libntlmauth: Fix string field truncation
* ntlm_fake_auth: pass DOMAIN data to Squid in original case
* Fix SQUID_CC_CHECK_ARGUMENT autoconf macro
* Polish: better WARNING when workers directive is ignore on reconfigure.
* Use IPv6 localhost nameserver on DNS configuration errors
* Bug 3923: cbdata and undefined behavior due to dynamic runtime enumeration
* Polish: report bytes received when bad content-length detected by quick-abort
* Bug 3918: Squid 3.3.9 Self Test Failures on Mac OS X 10.8
* Bug 3929: request_header_add not working for tunnel requests
* Fix pinning hierarchy log information
* Close idle client connections associated with closed idle pinned connections.
2013-11-04 09:04:59 +00:00
ryoon
1dfeeadee3 Update to 2.22
* Sync with seamonkey-2.22
2013-11-04 06:10:55 +00:00
ryoon
a8e8a64ffc Update to 2.22
Changelog:
SeaMonkey-specific changes

    Sorting messages by date can now be configured to look at the thread root instead of the newest message in it (pref: mailnews.sort_threads_by_root).
    Plugins doorhangers now allow to activate different plugin types independently.
    The proxy popup is now also available from the MailNews main window.
    A new Recipients column has been added that shows all recipients (To, CC, BCC).
    The default HTML5 audio/video player controls allow to change the playback rate now.
    A "Validate this page" entry has been added to Tools/Web Development.
    The Firefox devtools debugger can now be used to debug SeaMonkey remotely.
    See the changes page for a more complete overview.

Mozilla platform changes

    Web Audio support has been added.
    CSS3 background-attachment:local support to control background scrolling has been implemented.
    Many new ES6 functions have been implemented.
    iframe document content can now be specified inline.
    Fixed several stability issues.

Fixed in SeaMonkey 2.22
MFSA 2013-102 Use-after-free in HTML document templates
MFSA 2013-101 Memory corruption in workers
MFSA 2013-100 Miscellaneous use-after-free issues found through ASAN fuzzing
MFSA 2013-98 Use-after-free when updating offline cache
MFSA 2013-97 Writing to cycle collected object during image decoding
MFSA 2013-96 Improperly initialized memory and overflows in some JavaScript functions
MFSA 2013-95 Access violation with XSLT and uninitialized data
MFSA 2013-94 Spoofing addressbar though SELECT element
MFSA 2013-93 Miscellaneous memory safety hazards (rv:25.0 / rv:24.1 / rv:17.0.10)
2013-11-04 06:01:46 +00:00
ryoon
ec9eb2ed7e Fix make configure on SmartOS
* Disable if test "A" = "A"; then fi test
  SYntax error on SmartOS
* build is fine on SmartOS, hopefully other SunOS,
  but I cannot confirm functionality now
2013-11-04 05:43:57 +00:00