Commit Graph

93 Commits

Author SHA1 Message Date
Benjamin Dauvergne 614cf17d99 Release 2.8.1
gitea/lasso/pipeline/head This commit looks good Details
-·Major·overhaul·of·OpenSSL·API·usage·by·using·only·the·EVP·API·as·the·low¶
··level·API·(RSA*,·HMAC*)·is·deprecated.¶
-·Fix·wrong·parsing·of·Count·attribute·on·saml:ProxyRestriction,·thanks·to¶
··Maxime·Besson·from·Worteks.¶
-·Perl:·pass·LDFLAGS·to·Makefile.PL¶
-·Replace·use·of·deprecated·xmlSecBase64Decode·by·xmlSecBase64Decode_ex¶
-·Fix·overwrite·of·profile.signature_status·in·lasso_saml20_login_process_response_status_and_assertion¶
-·Fix·lot·of·GCC·warnings¶
2023-02-28 16:02:18 +01:00
Benjamin Dauvergne 7aa6144689 website: update for 2.8.0 2022-03-15 15:33:51 +01:00
Benjamin Dauvergne 4a880977d1 Remove ID-WSF 1.0, 2.0 and WS-* support (#56644)
It has been deprecated for a long time.
2021-09-11 18:54:41 +02:00
Benjamin Dauvergne 076a37d7f0 Release 2.7.0 2021-06-01 11:56:05 +02:00
Benjamin Dauvergne 4bae1c8b7c Release 2.6.1 2020-04-22 15:04:46 +02:00
John Dennis 3d9d58d52c Make more Python scripts compatible with both Py2 and Py3
While porting other Python code in the repo to run under Py3 (as well
as Py2) it was discovered there were a number of other Python scripts
which also needed porting. However these scripts are never invoked
during a build so there was no easy way to test the porting work. I
assume these scripts are for developers only and/or are
historical. Because there was no way for me to test the porting
changes on these scripts I did not want to include the changes in the
patch for the Py3 porting which fixed scripts that are invoked during
the build (the former patch is mandatory, this patch is optional at
the moment). I did verify the scripts compile cleanly under both Py2
and Py3, however it's possible I missed porting something or the error
does not show up until run-time.

Examples of the required changes are:

* Replace use of the built-in function file() with open().  file()
  does not exist in Py3, open works in both Py2 and Py3.  The code was
  also modified to use a file context manager (e.g. with open(xxx) as
  f:). This assures open files are properly closed when the code block
  using the file goes out of scope. This is a standard modern Python
  idiom.

* Replace all use of the print keyword with the six.print_()
  function, which itself is an emulation of Py3's print function. Py3
  no longer has a print keyword, only a print() function.

* The dict methods .keys(), .values(), .items() no longer return a
  list in Py3, instead they return a "view" object which is an
  iterator whose result is an unordered set. The most notable
  consequence is you cannot index the result of these functions like
  your could in Py2 (e.g. dict.keys()[0] will raise a run time
  exception).

* Replace use of StringIO.StringIO and cStringIO with
  six.StringIO. Py3 no longer has cStringIO and the six variant
  handles the correct import.

* Py3 no longer allows the "except xxx, variable" syntax, where
  variable appering after the comma is assigned the exception object,
  you must use the "as" keyword to perform the variable assignment
  (e.g. execpt xxx as variable)

* Python PEP 3113 removed tuple parameter unpacking. Therefore you can
  no longer define a formal parameter list that contains tuple
  notation representing a single parameter that is unpacked into
  multiple arguments.

License: MIT
Signed-off-by: John Dennis <jdennis@redhat.com>
2018-07-24 11:03:09 +02:00
Benjamin Dauvergne d8ea60e6f2 website: add news about 2.6.0 release 2018-06-14 13:19:24 +02:00
Benjamin Dauvergne 796a5cb60c Release 2.6.0 2018-05-30 17:06:47 +02:00
Benjamin Dauvergne c62ad0047e Release 2.5.1 2016-02-18 23:59:01 +01:00
Benjamin Dauvergne eaabf4c611 Release 2.5.0 2015-09-02 16:20:14 +02:00
Benjamin Dauvergne d95a7afcb6 Release 2.4.1 2014-08-28 16:02:06 +02:00
Benjamin Dauvergne 6012c05951 website: update links section 2014-04-24 12:44:24 +02:00
Benjamin Dauvergne 673b16831b website: add news about 2.4.0 release 2014-04-24 12:39:21 +02:00
Benjamin Dauvergne 2df12563af website: fix HTML grammar errors 2014-04-24 12:37:25 +02:00
Benjamin Dauvergne 74eae762ad update website for 2.4.0 release
- remove windows installer reference
- update debian repository configuration
- point to cgit browser and releases directory
2014-04-24 12:32:43 +02:00
Simo Sorce 3a6b2fdee7 Fix license boilerplates
Instad of referring to an old FSF address, point the reader to the FSF
website where the latest licenses and addresses are published.

Signed-off-by: Simo Sorce <simo@redhat.com>
2013-12-03 21:55:06 +01:00
Benjamin Dauvergne 618017e34e web: update mailing list urls 2013-10-01 15:49:38 +02:00
Frédéric Péters 6af73738f6 website: fix commercial licencee page location 2013-07-20 09:46:34 +02:00
Benjamin Dauvergne bb244a6ebe [website] add piwik tracking code to base template 2012-02-25 14:40:42 +01:00
Benjamin Dauvergne 69c61627d3 [website] remove the buildbox link for now 2011-12-19 15:34:06 +01:00
Benjamin Dauvergne eac3567fa7 [website] target the bug report link to on redmine 2011-12-19 15:33:49 +01:00
Benjamin Dauvergne 654f9523c2 [web] fix link on the download page 2011-11-29 13:01:32 +01:00
Benjamin Dauvergne 92ebef91f5 Merge branch 'excl-c14n-fix' 2011-11-29 11:05:29 +01:00
Benjamin Dauvergne 70aeff17d2 [web] add release news for release 2.3.6 2011-11-29 10:58:42 +01:00
Benjamin Dauvergne 5f25443c14 [release] 2.3.6 2011-11-29 10:42:16 +01:00
Benjamin Dauvergne 3521c642be [web] update download page 2011-04-04 11:52:29 +02:00
Benjamin Dauvergne d502db18dd Remove right column with download, binary packages and source links
It is redundant with other columns.
2011-01-05 18:10:07 +01:00
Benjamin Dauvergne d3312e95f0 [web] fix date and version in news 19 2011-01-05 16:07:09 +01:00
Benjamin Dauvergne ccba7694ba [web] fix typo in news for release 2.3.5 2011-01-05 14:21:49 +01:00
Benjamin Dauvergne 1883d46ec2 Merge branch 'hotfixes-2.3.5' 2011-01-05 14:19:20 +01:00
Benjamin Dauvergne 6cb213e5f3 [ŕelease] Add release notes, update doap files and website 2011-01-05 11:41:46 +01:00
Benjamin Dauvergne 1d38a1e022 Merge branch 'hotfixes-2.3.4' 2010-10-13 14:21:25 +02:00
Benjamin Dauvergne 48a7639e58 Update doap and news file 2010-10-13 12:23:21 +02:00
Benjamin Dauvergne 36b7baf9e8 Merge branch 'hotfixes-2.3.4'
Conflicts:
	lasso/xml/xml.c
	website/web/download/index.xml
	website/web/index.xml
2010-10-08 19:17:39 +02:00
Benjamin Dauvergne 0325ce0867 Update release notes and website for release 2.3.4 2010-10-08 18:34:19 +02:00
Frédéric Péters ece66aa477 [website] "Subversion Status" -> "Git Status" 2010-10-05 09:53:34 +02:00
Frédéric Péters d46f8caccb [website] Only keep two latest news items 2010-10-05 08:31:57 +02:00
Frédéric Péters 2f1e68eeb3 [website] Fixed 2.3.3 release date 2010-10-05 08:31:27 +02:00
Frédéric Péters fb76faab79 [website] Update right download box for 2.3.3 2010-10-05 08:31:20 +02:00
Frédéric Péters ff409f8d7e [website] Don't duplicate link to git repository in link text 2010-10-05 08:31:13 +02:00
Frédéric Péters 4e18990cd6 [website] Refer to Git in buildbox title 2010-10-05 08:31:06 +02:00
Frédéric Péters b3ad9a5eca [website] Updated copyright years 2010-10-05 08:30:53 +02:00
Benjamin Dauvergne fa5eed7c81 [Website] Fix bad date 2010-10-04 16:15:18 +02:00
Benjamin Dauvergne 644f15640b [Web] chmod +x on convert-to-static.py 2010-10-04 14:53:21 +02:00
Benjamin Dauvergne 33df188d32 [Web] update links for download v2.3.3, add lines to feature matrix 2010-10-04 14:50:30 +02:00
Benjamin Dauvergne f1c5db026b [Web] add news file about 2.3.3 2010-10-04 14:30:15 +02:00
Benjamin Dauvergne 19cb0bf52b [Website] add news about 2.3.3 and update doap and main page 2010-10-01 19:11:32 +02:00
Frédéric Péters c838dea464 News entry for 2.3.1 & 2.3.2 (combined) 2010-09-08 11:35:56 +02:00
Benjamin Dauvergne ba2705bbd7 Update files for release 2.3.2 2010-09-07 19:03:21 +02:00
Benjamin Dauvergne 9af598f85c Update files for release 2.3.1 2010-09-07 16:39:01 +02:00