Commit graph

11326 commits

Author SHA1 Message Date
ryoon
c8df62603f patch-lib_wiki-plugins_wikiplugin__snarf.php is not needed anymore. 2012-06-07 21:46:55 +00:00
ryoon
af68257def Add checksum for patch-lib_wiki-plugins_wikiplugin__snarf.php 2012-06-07 12:56:34 +00:00
taca
dbeb8e147c Update contao211-translations to 201206040.
Enable Finnish with updated language files.
2012-06-06 15:56:42 +00:00
ryoon
a32ac99bc5 Update to 10.0.5
* Sync with firefox-10.0.5 (xulrunner-10.0.5)
* Update HOMEPAGE
2012-06-06 14:40:48 +00:00
abs
4c8eb0269e fix !nobranding PLIST 2012-06-05 21:33:49 +00:00
ryoon
c489a9fa4e Sync with devel/xulrunner-13.0 2012-06-05 18:10:38 +00:00
dholland
2d9875f525 Doesn't build on python25. 2012-06-04 06:36:35 +00:00
dholland
55ccb532ad Disable PYTHON_VERSIONS_INCLUDE_3X; py-lxml doesn't support it, which
causes pbulk to crap out during the index scan.
2012-06-04 04:01:47 +00:00
wiz
0dc3563007 Remove patches that are not needed after 1.9.4 update. 2012-06-03 22:49:50 +00:00
wiz
0ce6c3357a Update to 1.9.4:
This release ist mostly about security and bug fixes and a few
minor changes (including Python 2.7 compatibility).
2012-06-03 22:49:25 +00:00
wiz
3e6088453c + py-beautifulsoup4 2012-06-03 21:30:59 +00:00
wiz
e5f064e5d3 Initial import of py-beautifulsoup4, a rewrite of py-beautifulsoup.
Changes compared to version 3 (in py-beautifulsoup):

= 4.1.0 (20120529) =

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

* Fixed the handling of " 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.

= 4.0.5 (20120427) =

* Added a new method, wrap(), which wraps an element in a tag.

* Renamed replace_with_children() to unwrap(), which is easier to
  understand and also the jQuery name of the function.

* Made encoding substitution in <meta> tags completely transparent (no
  more %SOUP-ENCODING%).

* Fixed a bug in decoding data that contained a byte-order mark, such
  as data encoded in UTF-16LE. [bug=988980]

* Fixed a bug that made the HTMLParser treebuilder generate XML
  definitions ending with two question marks instead of
  one. [bug=984258]

* Upon document generation, CData objects are no longer run through
  the formatter. [bug=988905]

* The test suite now passes when lxml is not installed, whether or not
  html5lib is installed. [bug=987004]

* Print a warning on HTMLParseErrors to let people know they should
  install a better parser library.

= 4.0.4 (20120416) =

* Fixed a bug that sometimes created disconnected trees.

* Fixed a bug with the string setter that moved a string around the
  tree instead of copying it. [bug=983050]

* Attribute values are now run through the provided output formatter.
  Previously they were always run through the 'minimal' formatter. In
  the future I may make it possible to specify different formatters
  for attribute values and strings, but for now, consistent behavior
  is better than inconsistent behavior. [bug=980237]

* Added the missing renderContents method from Beautiful Soup 3. Also
  added an encode_contents() method to go along with decode_contents().

* Give a more useful error when the user tries to run the Python 2
  version of BS under Python 3.

* UnicodeDammit can now convert Microsoft smart quotes to ASCII with
  UnicodeDammit(markup, smart_quotes_to="ascii").

= 4.0.3 (20120403) =

* Fixed a typo that caused some versions of Python 3 to convert the
  Beautiful Soup codebase incorrectly.

* Got rid of the 4.0.2 workaround for HTML documents--it was
  unnecessary and the workaround was triggering a (possibly different,
  but related) bug in lxml. [bug=972466]

= 4.0.2 (20120326) =

* Worked around a possible bug in lxml that prevents non-tiny XML
  documents from being parsed. [bug=963880, bug=963936]

* Fixed a bug where specifying `text` while also searching for a tag
  only worked if `text` wanted an exact string match. [bug=955942]

= 4.0.1 (20120314) =

* This is the first official release of Beautiful Soup 4. There is no
  4.0.0 release, to eliminate any possibility that packaging software
  might treat "4.0.0" as being an earlier version than "4.0.0b10".

* Brought BS up to date with the latest release of soupselect, adding
  CSS selector support for direct descendant matches and multiple CSS
  class matches.

= 4.0.0b10 (20120302) =

* Added support for simple CSS selectors, taken from the soupselect project.

* Fixed a crash when using html5lib. [bug=943246]

* In HTML5-style <meta charset="foo"> tags, the value of the "charset"
  attribute is now replaced with the appropriate encoding on
  output. [bug=942714]

* Fixed a bug that caused calling a tag to sometimes call find_all()
  with the wrong arguments. [bug=944426]

* For backwards compatibility, brought back the BeautifulStoneSoup
  class as a deprecated wrapper around BeautifulSoup.

= 4.0.0b9 (20120228) =

* Fixed the string representation of DOCTYPEs that have both a public
  ID and a system ID.

* Fixed the generated XML declaration.

* Renamed Tag.nsprefix to Tag.prefix, for consistency with
  NamespacedAttribute.

* Fixed a test failure that occured on Python 3.x when chardet was
  installed.

* Made prettify() return Unicode by default, so it will look nice on
  Python 3 when passed into print().

= 4.0.0b8 (20120224) =

* All tree builders now preserve namespace information in the
  documents they parse. If you use the html5lib parser or lxml's XML
  parser, you can access the namespace URL for a tag as tag.namespace.

  However, there is no special support for namespace-oriented
  searching or tree manipulation. When you search the tree, you need
  to use namespace prefixes exactly as they're used in the original
  document.

* The string representation of a DOCTYPE always ends in a newline.

* Issue a warning if the user tries to use a SoupStrainer in
  conjunction with the html5lib tree builder, which doesn't support
  them.

= 4.0.0b7 (20120223) =

* Upon decoding to string, any characters that can't be represented in
  your chosen encoding will be converted into numeric XML entity
  references.

* Issue a warning if characters were replaced with REPLACEMENT
  CHARACTER during Unicode conversion.

* Restored compatibility with Python 2.6.

* The install process no longer installs docs or auxillary text files.

* It's now possible to deepcopy a BeautifulSoup object created with
  Python's built-in HTML parser.

* About 100 unit tests that "test" the behavior of various parsers on
  invalid markup have been removed. Legitimate changes to those
  parsers caused these tests to fail, indicating that perhaps
  Beautiful Soup should not test the behavior of foreign
  libraries.

  The problematic unit tests have been reformulated as informational
  comparisons generated by the script
  scripts/demonstrate_parser_differences.py.

  This makes Beautiful Soup compatible with html5lib version 0.95 and
  future versions of HTMLParser.

= 4.0.0b6 (20120216) =

* Multi-valued attributes like "class" always have a list of values,
  even if there's only one value in the list.

* Added a number of multi-valued attributes defined in HTML5.

* Stopped generating a space before the slash that closes an
  empty-element tag. This may come back if I add a special XHTML mode
  (http://www.w3.org/TR/xhtml1/#C_2), but right now it's pretty
  useless.

* Passing text along with tag-specific arguments to a find* method:

   find("a", text="Click here")

  will find tags that contain the given text as their
  .string. Previously, the tag-specific arguments were ignored and
  only strings were searched.

* Fixed a bug that caused the html5lib tree builder to build a
  partially disconnected tree. Generally cleaned up the html5lib tree
  builder.

* If you restrict a multi-valued attribute like "class" to a string
  that contains spaces, Beautiful Soup will only consider it a match
  if the values correspond to that specific string.

= 4.0.0b5 (20120209) =

* Rationalized Beautiful Soup's treatment of CSS class. A tag
  belonging to multiple CSS classes is treated as having a list of
  values for the 'class' attribute. Searching for a CSS class will
  match *any* of the CSS classes.

  This actually affects all attributes that the HTML standard defines
  as taking multiple values (class, rel, rev, archive, accept-charset,
  and headers), but 'class' is by far the most common. [bug=41034]

* If you pass anything other than a dictionary as the second argument
  to one of the find* methods, it'll assume you want to use that
  object to search against a tag's CSS classes. Previously this only
  worked if you passed in a string.

* Fixed a bug that caused a crash when you passed a dictionary as an
  attribute value (possibly because you mistyped "attrs"). [bug=842419]

* Unicode, Dammit now detects the encoding in HTML 5-style <meta> tags
  like <meta charset="utf-8" />. [bug=837268]

* If Unicode, Dammit can't figure out a consistent encoding for a
  page, it will try each of its guesses again, with errors="replace"
  instead of errors="strict". This may mean that some data gets
  replaced with REPLACEMENT CHARACTER, but at least most of it will
  get turned into Unicode. [bug=754903]

* Patched over a bug in html5lib (?) that was crashing Beautiful Soup
  on certain kinds of markup. [bug=838800]

* Fixed a bug that wrecked the tree if you replaced an element with an
  empty string. [bug=728697]

* Improved Unicode, Dammit's behavior when you give it Unicode to
  begin with.

= 4.0.0b4 (20120208) =

* Added BeautifulSoup.new_string() to go along with BeautifulSoup.new_tag()

* BeautifulSoup.new_tag() will follow the rules of whatever
  tree-builder was used to create the original BeautifulSoup object. A
  new <p> tag will look like "<p />" if the soup object was created to
  parse XML, but it will look like "<p></p>" if the soup object was
  created to parse HTML.

* We pass in strict=False to html.parser on Python 3, greatly
  improving html.parser's ability to handle bad HTML.

* We also monkeypatch a serious bug in html.parser that made
  strict=False disastrous on Python 3.2.2.

* Replaced the "substitute_html_entities" argument with the
  more general "formatter" argument.

* Bare ampersands and angle brackets are always converted to XML
  entities unless the user prevents it.

* Added PageElement.insert_before() and PageElement.insert_after(),
  which let you put an element into the parse tree with respect to
  some other element.

* Raise an exception when the user tries to do something nonsensical
  like insert a tag into itself.


= 4.0.0b3 (20120203) =

Beautiful Soup 4 is a nearly-complete rewrite that removes Beautiful
Soup's custom HTML parser in favor of a system that lets you write a
little glue code and plug in any HTML or XML parser you want.

Beautiful Soup 4.0 comes with glue code for four parsers:

 * Python's standard HTMLParser (html.parser in Python 3)
 * lxml's HTML and XML parsers
 * html5lib's HTML parser

HTMLParser is the default, but I recommend you install lxml if you
can.

For complete documentation, see the Sphinx documentation in
bs4/doc/source/. What follows is a summary of the changes from
Beautiful Soup 3.

=== The module name has changed ===

Previously you imported the BeautifulSoup class from a module also
called BeautifulSoup. To save keystrokes and make it clear which
version of the API is in use, the module is now called 'bs4':

    >>> from bs4 import BeautifulSoup

=== It works with Python 3 ===

Beautiful Soup 3.1.0 worked with Python 3, but the parser it used was
so bad that it barely worked at all. Beautiful Soup 4 works with
Python 3, and since its parser is pluggable, you don't sacrifice
quality.

Special thanks to Thomas Kluyver and Ezio Melotti for getting Python 3
support to the finish line. Ezio Melotti is also to thank for greatly
improving the HTML parser that comes with Python 3.2.

=== CDATA sections are normal text, if they're understood at all. ===

Currently, the lxml and html5lib HTML parsers ignore CDATA sections in
markup:

 <p><![CDATA[foo]]></p> => <p></p>

A future version of html5lib will turn CDATA sections into text nodes,
but only within tags like <svg> and <math>:

 <svg><![CDATA[foo]]></svg> => <p>foo</p>

The default XML parser (which uses lxml behind the scenes) turns CDATA
sections into ordinary text elements:

 <p><![CDATA[foo]]></p> => <p>foo</p>

In theory it's possible to preserve the CDATA sections when using the
XML parser, but I don't see how to get it to work in practice.

=== Miscellaneous other stuff ===

If the BeautifulSoup instance has .is_xml set to True, an appropriate
XML declaration will be emitted when the tree is transformed into a
string:

    <?xml version="1.0" encoding="utf-8">
    <markup>
     ...
    </markup>

The ['lxml', 'xml'] tree builder sets .is_xml to True; the other tree
builders set it to False. If you want to parse XHTML with an HTML
parser, you can set it manually.
2012-06-03 21:29:57 +00:00
wiz
a70f7c26d5 Update to 0.9.20:
Releasing 0.9.20. -CG
	Fixed some testcase build issues with disabled post processor. -CG
	Fixing bug where MHD failed to call connection termination callback
	if a connection either was closed due to read errors or if MHD
	was terminated with certain threading models.  Added new
	termination code MHD_REQUEST_TERMINATED_READ_ERROR for the
	read-termination cause. -CG
	Eliminating code clone in tls connection read/write handlers. -CG
	Making sure that MHD_get_connection_values iterates over the
	headers in the order in which they were received. -CG
	Fixed compilation problem on MinGW. -BS
2012-06-03 21:10:12 +00:00
dholland
04bc70210e Fix invalid version numbers. 2012-06-02 18:54:32 +00:00
obache
be1fee7788 Update meidawiki to 1.19.
PR 46505 by Wen Heping (take maintainership).

Bump two branches, contains many bug fixes, new features, and some of them
break compatibility, so for migration from 1.17 branch, please refer
release notes:
 https://www.mediawiki.org/wiki/Release_notes/1.19
 https://www.mediawiki.org/wiki/Release_notes/1.18
2012-06-02 12:30:56 +00:00
taca
d1b19942e4 Add and enable typo3_47. 2012-06-02 05:55:13 +00:00
taca
625bdba6cb Importing typo3_47 version 4.7.1 (TYPO3 4.7.1).
For detail, please refer http://wiki.typo3.org/TYPO3_4.7

===============================================================================
Compatibility
===============================================================================

* PHP 5.3

This version requires at least PHP 5.3, older versions of PHP are not supported
anymore with TYPO3 4.7.

	* safe_mode is not supported anymore
	* magic_quotes_gpc is deprecated. You are encouraged to turn this option
	  off as it still defaults to "On".

* ImageMagick

If you are using ImageMagick, only versions 6.0 and above are supported.

* Deprecated methods

Deprecated methods that were initially targeted to be removed in TYPO3 4.7 have
finally been removed. The deprecation log shows which functions were declared
to be deprecated and will be removed in the next TYPO3 versions.


Removed Functionality / Overworked Functionality
-------------------------------------------------------------------------------

* non utf-8 support removed

Before upgrading, check that your database is encoded in utf-8 and your
database connection is encoded same way. TYPO3 4.7 only will work with utf-8 after
other charsets have been deprecated in TYPO3 version 4.5 LTS.

* The old HTML-Mailer Class (t3lib_htmlmail) has been removed

After a grace period of two version t3lib_htmlmail finally has been removed from
TYPO3 Core. All extensions which had not been adapted yet, will break. Most
likely this will affect many extensions.

* Highly changed CSS Styled Content Classes

The System Extensions CSS Styled Content and the content rendering within sysext
CMS have been heavily overworked as well as the TypoScript changed remarkibly.
We expect all extensions X-Classing the Content-Rendering as well as adapting
TypoScript of CSS Styled Content to break. This might affect Lightbox-Extensions
as well as for example dam_content (old version).

!!!       PLEASE SEE A LIST OF INCOMPATIBLE EXTENSIONS WITHIN THE WIKI       !!!

===============================================================================
Changes and Improvements
===============================================================================

This will list important changes and improvements between TYPO3 4.6 and 4.7. For
technical details see ChangeLog included in the typo3_src package.


Authentication Services
-------------------------------------------------------------------------------

With this version the authentication chain has been cleaned up so that third
party authentication services can benefit from RSA encrypted login without the
need of decrypting the submitted password in their own code.

The system extension rsaauth will now decrypt the password and provide the
decrypted version for other services. So external authentication services can
access the clear text password always through $this->loginData['uident_text'],
no matter if the password has been transmitted as plain text during the login
or rsaauth has decrypted it.

Due to major changes in the login service of rsaauth, all extensions which
use XCLASS to extend that class, most likely will fail, whereas other extension
which make proper use of the public API of the system extension rsaauth will
continue working without any problem.
In any case, it is recommended to adjust external authentication services to
benefit from the changes.

See new chapter in TYPO3 services documentation (doc_core_services) about the
topic of authentication services: http://forge.typo3.org/issues/31413
2012-06-02 05:54:24 +00:00
taca
c1ad95b26a Update typo3_46 to 4.6.9.
2012-05-22  7923ff2                  [RELEASE] Release of TYPO3 4.6.9 (TYPO3 v4 Release Team)
2012-05-22  21c65e7                  [TASK] Raise submodule pointer (TYPO3 v4 Release Team)
2012-05-21  1def46a  #26993          [BUGFIX] Pagetree: Copying large branches duplicates branch (Steffen Gebert)
2012-05-21  796db8e  #37335          [TASK] Add a comment for require_once in t3lib_error_ErrorHandler (Oliver Klee)
2012-05-21  7a12fd5  #36976          [BUGFIX] PHP warning when a language pack does not exist (Xavier Perseguers)
2012-05-20  67d7304  #33580          [BUGFIX] DB field names exceed max length with 'zzz_deleted' (Tolleiv Nietsch)
2012-05-20  b85d5cd  #36981          [BUGFIX] Regression of "better condition in versionOL of t3lib_tstemplate" (Andy Grunwald)
2012-05-20  8bada90  #35410          [BUGFIX] Properly quote regexp in Install Tool (Jigal van Hemert)
2012-05-20  c9408df  #25213          [BUGFIX] Install Tool: Settings added by extensions can be edited (Ernesto Baschny)
2012-05-20  1329828  #37221          [BUGFIX] Wrong DB fields usage in TCEmain (Felix Nagel)
2012-05-16  8796130  #35182          [BUGFIX] Missing bottom margin in the page tree (Stefan Galinski)
2012-05-16  50616a6  #37158          [BUGFIX] Wrong label reference for backend_layout (Markus Klein)
2012-05-14  a1c09d9  #36459          [BUGFIX] Pagetree doesn't expands to the last saved state (Stefan Galinski)
2012-05-09  9b6fe53  #35684          [BUGFIX] Page cache expiry calculation fails (Francois Suter)
2012-05-06  d55133a  #34012          [BUGFIX] Slider Wizard value not set when used in a flexform (Wouter Wolters)
2012-05-06  96b79a9  #36860          [BUGFIX] Fix math test on 32 bit systems (Helmut Hummel)
2012-05-03  a1f6470  #36611          [BUGFIX] EM: improve action icons alignment (Francois Suter)
2012-05-03  cb42a37  #36610          [BUGFIX] EM: misplaced tooltips (Francois Suter)
2012-04-29  a8443bd  #30900          [BUGFIX] EM: avoid cropping action columns (Francois Suter)
2012-04-29  e26486a  #36380          [BUGFIX] t3lib_div::getUrl() throws a warning on nonexisting local file (Philipp Gampe)
2012-04-28  1db371c  #36296          [BUGFIX] New task button missing after deleting task (Alexander Jahn)
2012-04-28  ea02437  #26915          [BUGFIX] cropHTML with dash in html element (Jakub Cernek)
2012-04-28  8be224b  #36004          [BUGFIX] Wrong HTTP protocol in combination with a proxy (Michael Staatz)
2012-04-28  5e7ca66  #36164          [BUGFIX] Remove duplicate domain from FE copyright comment (Tomita Militaru)
2012-04-28  5fe7a23  #34686          [BUGFIX] Show phpinfo() header title (Tomita Militaru)
2012-04-27  5b1262c  #21713          [BUGFIX] Hide relations to deleted records (Francois Suter)
2012-04-23  d767a1e  #35361          [BUGFIX] Localize command must preserve type (Francois Suter)
2012-04-21  c7d5cf5  #36399          [BUGFIX] Missing static keyword for addFieldsToUserSettings (Susanne Moog)
2012-04-18  db1cb1e  #27811          [BUGFIX] Backend: Fetch correct overlay-version of page inside workspace (Stefan Neufeind)
2012-06-02 05:50:45 +00:00
taca
fb079dd900 Update typo3_45 package to 4.5.16 (TYPO3 4.5.16).
2012-05-22  841e939                  [RELEASE] Release of TYPO3 4.5.16 (TYPO3 v4 Release Team)
2012-05-22  b81c747                  [TASK] Raise submodule pointer (TYPO3 v4 Release Team)
2012-05-21  d4da799  #26993          [BUGFIX] Pagetree: Copying large branches duplicates branch (Steffen Gebert)
2012-05-21  58c4730  #37335          [TASK] Add a comment for require_once in t3lib_error_ErrorHandler (Oliver Klee)
2012-05-21  62d2b65  #36976          [BUGFIX] PHP warning when a language pack does not exist (Xavier Perseguers)
2012-05-20  d797ceb  #33580          [BUGFIX] DB field names exceed max length with 'zzz_deleted' (Tolleiv Nietsch)
2012-05-20  1125e3d  #36981          [BUGFIX] Regression of "better condition in versionOL of t3lib_tstemplate" (Andy Grunwald)
2012-05-20  6bb0f8d  #35410          [BUGFIX] Properly quote regexp in Install Tool (Jigal van Hemert)
2012-05-20  9a439a2  #25213          [BUGFIX] Install Tool: Settings added by extensions can be edited (Christian Kuhn)
2012-05-20  1ffe481  #37221          [BUGFIX] Wrong DB fields usage in TCEmain (Felix Nagel)
2012-05-16  5c48fae  #35182          [BUGFIX] Missing bottom margin in the page tree (Stefan Galinski)
2012-05-16  c4c3185  #37158          [BUGFIX] Wrong label reference for backend_layout (Markus Klein)
2012-05-14  d8e6613  #36459          [BUGFIX] Pagetree doesn't expands to the last saved state (Stefan Galinski)
2012-05-08  6a74d2e  #30057          [BUGFIX] tx_rsaauth_sv1::authUser() gives PHP notice (Xavier Perseguers)
2012-05-03  225a8be  #36611          [BUGFIX] EM: improve action icons alignment (Francois Suter)
2012-04-29  240dd55  #30900          [BUGFIX] EM: avoid cropping action columns (Francois Suter)
2012-04-29  786281f  #36380          [BUGFIX] t3lib_div::getUrl() throws a warning on nonexisting local file (Philipp Gampe)
2012-04-28  e880be5  #26915          [BUGFIX] cropHTML with dash in html element (Jakub Cernek)
2012-04-28  126fb5e  #36004          [BUGFIX] Wrong HTTP protocol in combination with a proxy (Michael Staatz)
2012-04-28  b0b2c02  #36164          [BUGFIX] Remove duplicate domain from FE copyright comment (Tomita Militaru)
2012-04-28  772a20e  #34686          [BUGFIX] Show phpinfo() header title (Tomita Militaru)
2012-04-27  eae54ad  #21713          [BUGFIX] Hide relations to deleted records (Francois Suter)
2012-04-23  f33b182  #35361          [BUGFIX] Localize command must preserve type (Francois Suter)
2012-04-21  2e38cc8  #36399          [BUGFIX] Missing static keyword for addFieldsToUserSettings (Susanne Moog)
2012-04-20  2efae13  #28687          [BUGFIX] Pagetree broken due to JavaScript exception (Steffen Ritter)
2012-04-19  fbce0ac  #27811          [BUGFIX] Backend: Fetch correct overlay-version of page inside workspace (Stefan Neufeind)
2012-06-02 05:49:51 +00:00
taca
a1d8f357f3 Update contao211-translations to 201205240.
* Enable Lithuanian language files.
* Update Portuguese and Russian language files.
2012-06-02 02:40:27 +00:00
taca
ded3f79721 Update ruby-rails32 to 3.2.5.
No change except version.
2012-06-02 01:42:50 +00:00
taca
df06c159c4 Update ruby-activeresource32 to 3.2.5.
## Rails 3.2.4 (May 31, 2012) ##

*   No changes.
2012-06-02 01:41:24 +00:00
taca
f0ad3233f3 Update ruby-actionpack32 to 3.2.5.
3.2.4 had some regression related problem.

## Rails 3.2.4 (May 31, 2012) ##

*   Deprecate old APIs for highlight, excerpt and word_wrap *Jeremy Walker*

*   Deprecate `:disable_with` in favor of `'data-disable-with'` option for `button_to`, `button_tag` and `submit_tag` helpers.

    *Carlos Galdino + Rafael Mendonça França*

*   Deprecate `:mouseover` option for `image_tag` helper. *Rafael Mendonça França*

*   Deprecate `button_to_function` and `link_to_function` helpers. *Rafael Mendonça França*

*   Don't break Haml with textarea newline fix.  GH #393, #4000, #5190, #5191

*   Fix options handling on labels. GH #2492, #5614

*   Added config.action_view.embed_authenticity_token_in_remote_forms to deal
    with regression from 16ee611fa

*   Set rendered_format when doing render :inline. GH #5632

*   Fix the redirect when it receive blocks with arity of 1. Closes #5677

*   Strip [nil] from parameters hash. Thanks to Ben Murphy for
    reporting this! CVE-2012-2660
2012-06-02 01:40:25 +00:00
taca
eb53f14f0f Update www/ruby-rails31 to 3.1.5.
No change except version.
2012-06-02 01:36:44 +00:00
taca
3b2bc1a7d4 Updaet ruby-activeresource31 to 3.1.5.
## Rails 3.1.5 (May 31, 2012) ##

*   No changes
2012-06-02 01:35:15 +00:00
taca
69c50a8368 Update ruby-actionpack31 to 3.1.5.
## Rails 3.1.5 (May 31, 2012) ##

*   Detect optional glob params when adding non-greedy regexp - closes #4817.

*   Strip null bytes from Location header

*   Return the same session data object when setting session id

*   Avoid inspecting the whole route set, closes #1525

*   Strip [nil] from parameters hash.  Thanks to Ben Murphy for reporting this!
    CVE-2012-2660
2012-06-02 01:34:21 +00:00
taca
fe78990770 Update ruby-rails3 to 3.0.13.
No change except version.
2012-06-02 01:32:28 +00:00
taca
0f67694c56 Update ruby-activeresource3 to 3.0.13.
* Rails 3.0.13 (May 31, 2012)

* No changes.
2012-06-02 01:30:20 +00:00
taca
4f73a4a1e4 Update ruby-actionpack3 to 3.0.13.
* Rails 3.0.13 (May 31, 2012)

* Strip null bytes from Location header

* load the encoding converter to work around [ruby-core:41556] when switching
  encodings

* Avoid inspecting the whole route set, closes #1525

* whitelist protocols for auto_link

* Strip [nil] from parameters hash. Thanks to Ben Murphy for reporting this!
  CVE-2012-2660
2012-06-02 01:28:24 +00:00
taca
fbb73e3405 Update ruby-sass to 3.1.19.
Changes are unavailable.
2012-06-02 01:19:59 +00:00
taca
c5bd624212 Update ruby-raindrops to 0.9.0.
=== raindrops 0.9.0 - minor middleware/proxy update / 2012-05-21 00:06 UTC

  Raindrops::Middleware::Proxy now forwards method_missing
  to the proxied body object.  This allows compatibility
  with non-standard Rack extensions employed by some
  middlewares, applications, or servers.

  Thanks to Ben Somers for the feature!

=== raindrops 0.8.1 - compatibility fixes / 2012-05-12 05:58 UTC

  This release fixes a build problem found under a current SmartOS.  This
  release also runs successfully on FreeBSD 9.0 under both x86-64 and
  i386.

  There are also documentation updates from Aman Gupta and a test suite
  fix from Jeremy Evans for OpenBSD.

  raindrops fully supports unicorn on recent versions of FreeBSD, OpenBSD,
  SmartOS, and possibly other Free Software systems.  Portability reports
  and fixes for Free Software systems is greatly appreciated at
  raindrops@librelist.org

  Non-Free systems will never be supported.

  raindrops requires the Linux 2.6.18 or later for full functionality
  (which unicorn does not require).  Future releases will take advantage
  of the unix_diag functionality found in the Linux 3.3 (and later)
  kernels.
2012-06-02 01:19:30 +00:00
taca
4926842ce0 Update ruby-net-http-digest_auth to 1.2.1.
=== 1.2.1

* Bug fix
  * Fixed -sess authentication.  This also fixes pull request #4 by joe81
2012-06-02 01:18:49 +00:00
taca
1c3cfcc05d Update ruby-mechanize to 2.5.1.
=== 2.5.1

* Bug fix
  * Mechanize no longer copies POST requests during a redirect which was
    introduced by #215.  Pull request #229 by Godfrey Chan.

=== 2.5

* Minor enhancement
  * Added Mechanize#ignore_bad_chunking for working around servers that don't
    terminate chunked transfer-encoding properly.  Enabling this may cause
    data loss.  Issue #116
  * Removed content-type check from Mechanize::Page allowing forced parsing
    of incorrect or missing content-types.  Issue #221 by GarthSnyder
* Bug fixes
  * Fixed typos in EXAMPLES and GUIDES.  Pull Request #213 by Erkan Yilmaz.
  * Fixed handling of a quoted content-disposition size.  Pull Request #220 by
    Jason Rust
  * Mechanize now ignores a missing gzip footer like browsers do.  Issue #224
    by afhbl
  * Mechanize handles saving of files with the same name better now.  Pull
    Request #223 by Godfrey Chan, Issue #219 by Jon Hart
  * Mechanize now sends headers across redirects.  Issue #215 by Chris Gahan
  * Mechanize now raises Mechanize::ResponseReadError when the server does not
    terminate chunked transfer-encoding properly.  Issue #116
  * Mechanize no longer raises an exception when multiple identical
    radiobuttons are checked.  Issue #214 by Matthias Guenther
  * Fixed documentation for pre_connect_hooks and post_connect_hooks.  Issue
    #226 by Robert Poor
  * Worked around ruby 1.8 run with -Ku and ISO-8859-1 encoded characters in
    URIs.  Issue #228 by Stanislav O.Pogrebnyak
2012-06-02 01:18:05 +00:00
taca
6f187bb2b0 Update of ruby-csspool to 3.0.1.
== 3.0.1

* New Features

  * 'Minified' CSS output: passing :minify => true to a to_css call will omit
  line breaks
  * Added Gemfile

* Bugfixes

  * Parse properties without semi-colons at the end of a declaration.
  [stereobooster]
  * Handle whitespaces after properties [stereobooster]
2012-06-02 01:17:21 +00:00
drochner
0316339935 update to 0.4.6
changes: bugfixes
2012-06-01 20:21:03 +00:00
obache
688f9cdf64 Update moodle to 2.1.6, include some security fixes.
Based on maintainer update request by PR 46498.

Upstream changes:

Highlights

* MDL-32431 Calendar events can be backed-up and restored
* MDL-29262 Moodle 2 backup_controllers table is no longer needlessly massive

Functional changes

* MDL-27862 Ability to unset a theme
* MDL-31835 Recent conversations link added when viewing a message
* MDL-27427 Option added to delete external blog entries

Security issues

* MSA-12-0024 Hidden information access issue
* MSA-12-0025 Personal communication access issue
* MSA-12-0026 Quiz capability issue
* MSA-12-0027 Question bank capability issues
* MSA-12-0028 Insecure authentication issue
* MSA-12-0029 Information editing access issue
* MSA-12-0030 Capability manipulation issue
* MSA-12-0031 Cross-site scripting vulnerability in Wiki
* MSA-12-0032 Cross-site scripting vulnerability in Web services
* MSA-12-0035 Cross-site scripting vulnerability in "download all"
* MSA-12-0036 Cross-site scripting vulnerability in category identifier
* MSA-12-0037 Write access issue in Database activity module
* MSA-12-0038 Calendar event write permission issue

Fixes and improvements

* MDL-32061 Backup fixed when there is a lesson with attempts in the course
* MDL-31008 CSS fixed to display dimmed objects
* MDL-30867 Lesson essay question formatting fixed
* MDL-31528 Breadcrumbs appearing consistently when editing is off
* MDL-31631 Caching fixed so deleted activities do not remain listed
* MDL-26674 Wiki Module activity logs activity fully
* MDL-31510 Students in groups see only assignments in the Gradebook according to their group allocation
* MDL-32141 Custom TinyMCE additions now work in Firefox 11
2012-05-31 12:12:54 +00:00
wiz
9bd69db81e Fix build with gc-7.2b. 2012-05-30 06:42:34 +00:00
joerg
b70ec20828 Link with CC like other platforms. Fixes module build with Clang. 2012-05-29 20:23:12 +00:00
wiz
833397a42e Update to 7.26:
This release includes the following changes:

 o nss: the minimal supported version of NSS bumped to 3.12.x
 o nss: human-readable names are now provided for NSS errors if available
 o add a manual page for mk-ca-bundle
 o added --post303 and the CURL_REDIR_POST_303 option for CURLOPT_POSTREDIR
 o smtp: Add support for DIGEST-MD5 authentication
 o pop3: Added support for additional pop3 commands

This release includes the following bugfixes:

 o nss: libcurl now uses NSS_InitContext() to prevent collisions if available [1]
 o URL parse: reject numerical IPv6 addresses outside brackets [4]
 o MD5: fix OOM memory leak [5]
 o OpenSSL cert: provide more details when cert check fails
 o HTTP: empty chunked POST ended up in two zero size chunks [6]
 o fixed a regression when curl resolved to multiple addresses and the first
   isn't supported [7]
 o -# progress meter: avoid superfluous updates and duplicate lines [8]
 o headers: surround GCC attribute names with double underscores [9]
 o PolarSSL: correct return code for CRL matches
 o PolarSSL: include version number in version string
 o PolarSSL: add support for asynchronous connect
 o mk-ca-bundle: revert the LWP usage [12]
 o IPv6 cookie domain: get rid of the first bracket before the second
 o connect.c: return changed to CURLE_COULDNT_CONNECT when opensocket fails
 o OpenSSL: Made cert hostname check conform to RFC 6125 [10]
 o HTTP: reset expected DL/UL sizes on redirects [11]
 o CMake: fix Windows LDAP/LDAPS option handling [2]
 o CMake: fix MS Visual Studio x64 unsigned long long literal suffix [3]
 o configure: update detection logic of getaddrinfo() thread-safeness
 o configure: check for gethostbyname in the watt lib
 o curl-config.1: fix curl-config usage in example [13]
 o smtp: Fixed non-escaping of dot character at beginning of line
 o MakefileBuild.vc: use the correct IDN variable
 o autoconf: improve handling of versioned symbols
 o curl.1: clarify -x usage
 o curl: shorten user-agent
 o smtp: issue with the multi-interface always sending postdata [14]
 o compile error with GnuTLS+Nettle fixed
 o winbuild: fix IPv6 enabled build
2012-05-29 14:58:05 +00:00
wiz
cda5f0883b Update to 2.0.17:
The gdata.youtube.service class now explicitly sets the GData-Version: 1 header, and is updated to use the correct ClientLogin URL.
  Adding support for OAuth2 revoke endpoint.
  Make Resource and ResourceFeed "Batch" compatible.
  Forgot to add camelcase alias for batch in issue 5970062.
  Adding support for performance data in Content API for Shopping (fixes Issue 5976061).
  Added support for custom attributes in Content API for Shopping (fixes Issue 5970070).
  Changed dest attrs in Content API to iterable, added validate_dest and fixed qname on app:control (fixes Issue 5976046).
  Added camel case names to content API client public methods (fixes Issue 5970062).
  Added support for Content for API errors on single and batch requests (fixes Issue 5971061).
  Added support for start-token in Content API for Shopping (closes Issue 5980044).
  Change gdata.docs.client.DocsClient.DeleteResource to use the entry instead of the link.
  Allow for random kwargs in atom.client.AtomClient.request method.
  Changing Shipping to list element in Content API for Shopping.
  Fixing behavior in atom.http_core.Uri._get_query_string for query parameters with no parameter value (closes Issue 5938047).
  Fixed batch function issues in content api for shopping client.
  Updated GetFeed methods in the Email Settings API to return typed feeds
  Namespace for channel element (in contentforshopping) was promoted from scp to sc.
  Fixed release date year.
  Fixing bug in recent change to the Email Settings API client library (rev. 194d0fd21fdd) + some typos
  Updating the Email Settings API to return instances of the correct classes when retrieving settings
  Added a sample to create a group and update its settings using the Groups Provisioning and Groups Settings APIs.
  Added docs:description element to docs resources.
  Fixed error in docs sample.
  Added scopes for all Admin APIs in apps tag
  Added a sample for Email Audit API demonstrating CRUD operations on email monitors
  Fixed small doc errors, made tax a list element
  Fix issues 590/591: Contact's gender XML element was wrong.
  Added a sample marketplace application
  Sample to delete obsolete suspended users
  Sample to retrieve user's profile and contacts using 2LO
  Fixing issue 587.  Wrong URL used for batch ACL changes.
  Added a sample to list all the members of a group
  Adding access_type=offline to OAuth 2.0 authorize URL.
  Check document list entries have a content before trying to download them.
  Added tag 2.0.16 for changeset c67f3c6398ba
2012-05-29 13:17:12 +00:00
dholland
a1e9eaceef Use SUBST_BASH instead of hand-rolled seddery (and don't hardwire /usr/pkg).
While here fix the other preexisting SUBST to run at pre-configure instead
of post-patch time.
2012-05-27 18:28:17 +00:00
marino
b4ad8a35cb www/ies4linux: Fix disallowed script interpreters
This package failed on script-interpreter check, "/usr/bin/env bash" is
not allowed.  Replace with "/usr/pkg/bin/bash"
2012-05-27 16:11:20 +00:00
obache
5db9020638 * allow adobe-flash-plugin packages for libflashplayer plugin.
* no need to require motif here, drop it.
* bump require suse version

Bump PKGREVISION.
2012-05-27 13:20:28 +00:00
mspo
c18446a737 pretty big version bump
2.96  2012-05-21
  - Added merge method to Mojo::Path.
  - Improved documentation.
  - Improved tests.
  - Fixed small memory leak in Mojolicious.
  - Fixed small bug that prevented already prepared IO::Socket::SSL handles to
    be used by Mojo::UserAgent.
  - Fixed small Mojo::URL and Mojo::Path stringification bugs.

2.95  2012-05-10
  - Improved documentation.
  - Fixed bug that caused inactivity timeouts to be logged too often.

2.94  2012-05-09
  - Added support for 308 redirects to Mojo::UserAgent.
  - Added support for new HTTP status codes.
  - Improved exception handling of all scripts.
  - Improved built-in web servers to log inactivity timeouts as debug messages
    instead of errors.
  - Improved documentation.
  - Fixed html_escape to always use entities with semicolon. (OlegG, crab)
  - Fixed typo in 414 status message.
  - Fixed small cookie formatting bug.
  - Fixed small bug in cookie parser.
  - Fixed small backlog bug in Mojo::Server::Daemon.

2.93  2012-05-05
  - Added remove method to Mojolicious::Routes::Route.
  - Improved 32bit Perl support of Mojo::Transaction::WebSocket.
    (mikemagowan, sri)
  - Improved exception handling of application and config file loaders.
  - Improved exception handling of Mojolicious::Plugin::I18N.
  - Improved renderer log messages.
  - Improved documentation.
  - Improved tests.
  - Fixed bug that prevented helper names from starting with "end". (Akron)
  - Fixed bug that prevented helper names from ending with "begin".
  - Fixed empty frame handling in Mojo::Transaction::WebSocket.
  - Fixed small rendering bug in Mojolicious::Plugin::PODRenderer.
  - Fixed small code generation bug in Mojolicious::Plugin::I18N.
  - Fixed small escaping bug in Mojo::URL.

2.92  2012-04-30
  - Added commands attribute to Mojolicious.
  - Improved documentation.
  - Improved tests.
  - Fixed attribute namespace selector bugs in Mojo::DOM::CSS.

2.91  2012-04-26
  - Added cookies method to Mojo::Message.
  - Updated HTML5 entities in Mojo::Util.
  - Improved documentation.

2.90  2012-04-25
  - Fixed small JavaScript bug in Mojolicious::Plugin::PODRenderer.

2.89  2012-04-24
  - Made logo on built-in templates smaller.
  - Improved CSS of built-in templates.
  - Improved documentation.
  - Improved tests.

2.88  2012-04-24
  - Improved documentation.
  - Improved tests.

2.87  2012-04-23
  - Improved html_escape performance and added pattern support.
  - Improved documentation.
  - Improved tests.
  - Fixed small escaping bug.

2.86  2012-04-23
  - Added support for TO_JSON method to Mojo::JSON.
  - Updated HTML5 entities in Mojo::Util.
  - Increased default heartbeat_timeout from 10 to 20 seconds in
    Mojo::Server::Hypnotoad.
  - Improved Mojo::Template exception handling.
  - Improved ojo exception handling.
  - Improved documentation.
  - Improved tests.
  - Fixed a few HTML5 unescaping bugs.

2.85  2012-04-19
  - Modernized ".perltidyrc".
  - Improved documentation. (diegok, sri)
  - Fixed bug in "user_agent.t".

2.84  2012-04-19
  - Improved documentation.
  - Improved tests.
  - Fixed flash.

2.83  2012-04-18
  - Added hostname verification support to Mojo::IOLoop::Client and
    Mojo::UserAgent.
  - Added SNI support to Mojo::IOLoop::Client and Mojo::UserAgent.
  - Improved documentation.
  - Fixed bug that prevented conditions to work in embedded applications.
  - Fixed bug that changed default values in embedded applications.
  - Fixed small bug in cpanify command.

2.82  2012-04-16
  - Deprecated relaxed placeholders "/(.foo)" in favor of "/#foo".
  - Deprecated Mojolicious::Routes::Route->waypoint.
  - Deprecated Mojolicious::Routes::Route->block.
  - Improved Mojolicious::Routes::Pattern to render formats.
  - Improved regex formatting in routes command.
  - Improved documentation.
  - Improved tests.

2.81  2012-04-15
  - Improved router to allow disabled format detection to be inheritable by
    nested routes.
  - Improved error handling in Mojolicious::Plugin::JSONConfig.
  - Improved match method in Mojolicious::Routes::Pattern to support format
    detection.
  - Improved router log messages.
  - Improved all debug messages.
  - Improved documentation.
  - Improved tests.
  - Fixed format detection bugs in Mojolicious::Routes::Pattern.
  - Fixed format handling in routes command.

2.80  2012-04-10
  - Added support for alternative MIME types to Mojolicious::Types.
  - Added endpoint method to Mojo::UserAgent::Transactor.
  - Improved tests.
  - Fixed HTTPS proxy keep alive bug in Mojo::UserAgent.

2.79  2012-04-10
  - Improved makefile and plugin generators to always use the latest
    Mojolicious version.
  - Improved documentation.
  - Improved tests.
  - Fixed HTTPS proxy support in Mojo::UserAgent.
  - Fixed multiple Mojo::UserAgent::Transactor bugs.

2.78  2012-04-09
  - Improved Mojolicious::Routes to allow redispatching controllers.
  - Improved Mojolicious::Routes logging.
  - Improved documentation.

2.77  2012-04-09
  - Improved Mojo::Transaction::WebSocket to allow custom message parsers.
  - Improved help command to be less strict.
  - Improved documentation. (tempire, sri)
  - Improved tests.
  - Fixed bug that prevented --help and -h flags from working for generator
    commands.
  - Fixed small bug that prevented non-string secrets in Mojolicious.

2.76  2012-04-05
  - Improved documentation.

2.75  2012-04-05
  - Improved documentation.
  - Improved tests.
  - Fixed small bug in params method of Mojo::Parameters.

2.74  2012-04-04
  - Improved documentation.
  - Improved tests.
  - Fixed multiple small bugs in form method of Mojo::UserAgent::Transactor.

2.73  2012-04-03
  - Improved documentation.
  - Improved tests.
  - Fixed multiple progress event bugs in Mojo::Message.

2.72  2012-04-03
  - Added kept_alive method to Mojo::Transaction::WebSocket.
  - Improved documentation.

2.71  2012-04-03
  - Improved Hypnotoad error handling.
  - Improved version command to detect proxy servers automatically.
  - Improved documentation.
  - Improved tests.
  - Fixed small argument bug in to_hash method of Mojo::Headers.

2.70  2012-03-30
  - Improved speed of version command by switching to the MetaCPAN API.
  - Improved all bundled TLS test certificates to expire at the same time.
  - Improved documentation.
  - Improved tests.
  - Fixed handler detection precedence bug in Mojolicious::Renderer.
  - Fixed ability to disable inactivity timeout in Hypnotoad.
  - Fixed ability to disable accepts limit in Hypnotoad.
  - Fixed small bug in get_all_data method of Mojo::Command.
  - Fixed small bug in inflate command. (memowe)
2012-05-26 08:06:13 +00:00
wiz
7265955dda Fix path in .so includes to be relative to ${PKGMANDIR}.
Bump PKGREVISION.
2012-05-24 13:10:20 +00:00
marino
f8228c7dd3 www/yaws: Fix PLIST for DragonFly 2012-05-21 15:51:27 +00:00
marino
ad7dc1a89a www/htdig: Fix unwanted directory removal
Add share/htdig/common to INSTALLATION_DIRS since it's installing files
there.  Without it, share/htdig/common is left over after www/htdig is
deinstalled.
2012-05-20 06:24:54 +00:00
ryoon
646163768d Bump PKGREVISION.
Fix PR pkg/46458

* Fix download delay problem
  https://issues.apache.org/bugzilla/show_bug.cgi?id=53253
2012-05-18 20:56:28 +00:00
schmonz
2e0d07c4a7 Update to 3.20120516. From the changelog:
* meta: Security fix; add missing sanitization of author and authorurl.
     Thanks, Raúl Benencia
2012-05-17 05:51:04 +00:00
marino
4193f98a71 www/nspluginwrapper: Fix indirect linking on DragonFly 2012-05-16 11:44:44 +00:00