7a12c27
Summary: A wiki engine
f49932a
Name: mediawiki
946b189
Version: 1.24.4
9a76ee3
Release: 1%{?dist}
78dc7a5
License: GPLv2+
a040afa
URL: http://www.mediawiki.org/
f33668b
Source0: http://download.wikimedia.org/mediawiki/1.24/mediawiki-%{version}.tar.gz
b2396e8
Source1: mediawiki.conf
b2396e8
Source2: README.RPM
Axel Thimm 13c9f1e
Source3: mw-createinstance.in
Axel Thimm 13c9f1e
Source4: mw-updateallinstances.in
cf906bb
BuildArch: noarch
cf906bb
58dbe6d
Requires: httpd-filesystem
58dbe6d
Requires: php(language) >= 5.3.2
58dbe6d
Requires: php-gd
58dbe6d
Requires: php-pecl-jsonc
58dbe6d
Requires: php-xml
58dbe6d
Requires: diffutils, ImageMagick
cf906bb
a88f89c
Provides:  mediawiki-math = %{version}-%{release}
a88f89c
Provides:  mediawiki-nomath = %{version}-%{release}
80a81f2
Provides:  mediawiki116 = %{version}-%{release}
a88f89c
80a81f2
Obsoletes: mediawiki-math < 1.16.5-63
80a81f2
Obsoletes: mediawiki-nomath < 1.16.5-63
80a81f2
Obsoletes: mediawiki116 < 1.16.0-10
cf906bb
7ee5ea5
#temporary extension provides/obsoletes
80a81f2
Provides:  mediawiki-Cite = 0-0.10.20080901svn.2
80a81f2
Provides:  mediawiki-imagemap = 0-0.7.r37906.2
80a81f2
Provides:  mediawiki-ParserFunctions = 1.1.1-10.svn45003.2
533745e
Provides:  mediawiki-SpecialInterwiki = 0-0.12.20080913svn.2
80a81f2
Obsoletes: mediawiki-Cite < 0-0.10.20080901svn.1
80a81f2
Obsoletes: mediawiki-imagemap < 0-0.7.r37906.1
80a81f2
Obsoletes: mediawiki-ParserFunctions < 1.1.1-10.svn45003.1
533745e
Obsoletes: mediawiki-SpecialInterwiki < 0-0.12.20080913svn.1
7ee5ea5
Roozbeh Pournader 66e3f65
Roozbeh Pournader 66e3f65
%description
f49932a
MediaWiki is the software used for Wikipedia and the other Wikimedia
f49932a
Foundation websites. Compared to other wikis, it has an excellent
f49932a
range of features and support for high-traffic websites using multiple
f49932a
servers
Roozbeh Pournader 66e3f65
e7ebba1
This package supports wiki farms. Read the instructions for creating wiki
e7ebba1
instances under %{_pkgdocdir}/README.RPM.
Axel Thimm 13c9f1e
Remember to remove the config dir after completing the configuration.
Roozbeh Pournader 66e3f65
28dfc72
Roozbeh Pournader 66e3f65
%prep
Roozbeh Pournader 66e3f65
%setup -q
cf906bb
Roozbeh Pournader 66e3f65
Roozbeh Pournader 66e3f65
%build
Roozbeh Pournader 66e3f65
b2396e8
cf906bb
%install
b2396e8
# move away the documentation to the final folder.
e7ebba1
mkdir -p %{buildroot}%{_pkgdocdir}
e7ebba1
cp -p %{SOURCE2} %{buildroot}%{_pkgdocdir}
b2396e8
b2396e8
# now copy the rest to the buildroot.
f49932a
mkdir -p %{buildroot}%{_datadir}/mediawiki
f49932a
cp -a * %{buildroot}%{_datadir}/mediawiki/
f49932a
b2396e8
# remove unneeded parts
984bd9d
rm -fr %{buildroot}%{_datadir}/mediawiki/{t,test,tests}
f49932a
rm -fr %{buildroot}%{_datadir}/mediawiki/includes/zhtable
f49932a
find %{buildroot}%{_datadir}/mediawiki/ \
f49932a
  \( -name .htaccess -or -name \*.cmi \) \
Axel Thimm 13c9f1e
  | xargs -r rm
f49932a
f49932a
# fix permissions
Axel Thimm 13c9f1e
find %{buildroot}%{_datadir}/mediawiki -name \*.pl | xargs -r chmod +x
41d33e5
chmod +x %{buildroot}%{_datadir}/mediawiki/maintenance/hiphop/run-server
41d33e5
chmod +x %{buildroot}%{_datadir}/mediawiki/maintenance/storage/make-blobs
41d33e5
chmod +x %{buildroot}%{_datadir}/mediawiki/includes/limit.sh
41d33e5
chmod +x %{buildroot}%{_datadir}/mediawiki/includes/normal/UtfNormalTest2.php
41d33e5
chmod +x %{buildroot}%{_datadir}/mediawiki/extensions/ConfirmEdit/captcha.py
f49932a
b2396e8
# remove version control/patch files
Axel Thimm 13c9f1e
find %{buildroot} -name .svnignore | xargs -r rm
Axel Thimm 13c9f1e
find %{buildroot} -name \*.commoncode | xargs -r rm
41d33e5
find %{buildroot} -name .gitreview | xargs -r rm
41d33e5
find %{buildroot} -name .jshintignore | xargs -r rm
41d33e5
find %{buildroot} -name .jshintrc | xargs -r rm
41d33e5
Axel Thimm 13c9f1e
# placeholder for a default instance
f49932a
mkdir -p %{buildroot}/var/www/wiki
b2396e8
Axel Thimm 13c9f1e
mkdir -p %{buildroot}%{_sysconfdir}/httpd/conf.d/
Axel Thimm 13c9f1e
install -p -m 0644 %{SOURCE1} \
Axel Thimm 13c9f1e
  %{buildroot}%{_sysconfdir}/httpd/conf.d/mediawiki.conf
Axel Thimm 13c9f1e
Axel Thimm 13c9f1e
# tools for keeping mediawiki instances current
Axel Thimm 13c9f1e
mkdir -p %{buildroot}%{_sbindir}
Axel Thimm 13c9f1e
sed -e's,@datadir@,%{_datadir},g' -e's,@sysconfdir@,%{_sysconfdir},g' \
Axel Thimm 13c9f1e
  < %{SOURCE3} > %{buildroot}%{_sbindir}/mw-createinstance
Axel Thimm 13c9f1e
sed -e's,@datadir@,%{_datadir},g' -e's,@sysconfdir@,%{_sysconfdir},g' \
Axel Thimm 13c9f1e
  < %{SOURCE4} > %{buildroot}%{_sbindir}/mw-updateallinstances
Axel Thimm 13c9f1e
chmod 0755 %{buildroot}%{_sbindir}/mw-*
Axel Thimm 13c9f1e
mkdir %{buildroot}%{_sysconfdir}/mediawiki
Axel Thimm 13c9f1e
echo /var/www/wiki > %{buildroot}%{_sysconfdir}/mediawiki/instances
Roozbeh Pournader 66e3f65
Roozbeh Pournader 66e3f65
Axel Thimm 13c9f1e
%post
Axel Thimm 13c9f1e
%{_sbindir}/mw-updateallinstances >> /var/log/mediawiki-updates.log 2>&1 || :
Axel Thimm 13c9f1e
28dfc72
cf906bb
%files
58dbe6d
%doc FAQ HISTORY README RELEASE-NOTES-1.24 UPGRADE CREDITS docs
58dbe6d
%license COPYING
f49932a
%{_datadir}/mediawiki
f49932a
/var/www/wiki
958f0ae
%config(noreplace) %{_sysconfdir}/httpd/conf.d/mediawiki.conf
Axel Thimm 13c9f1e
%dir %{_sysconfdir}/mediawiki
Axel Thimm 13c9f1e
%config(noreplace) %{_sysconfdir}/mediawiki/instances
cf906bb
%{_sbindir}/mw-createinstance
cf906bb
%{_sbindir}/mw-updateallinstances
Roozbeh Pournader 66e3f65
28dfc72
f49932a
%changelog
946b189
* Wed Oct 21 2015 Michael Cronenworth <mike@cchtml.com> - 1.24.4-1
946b189
- Update to 1.24.4
946b189
9a76ee3
* Tue Aug 18 2015 Michael Cronenworth <mike@cchtml.com> - 1.24.3-1
9a76ee3
- Update to 1.24.3
9a76ee3
58dbe6d
* Thu May 21 2015 Michael Cronenworth <mike@cchtml.com> - 1.24.2-2
58dbe6d
- Less restrictive requires on webserver and php engine (rhbz#1223712)
58dbe6d
3caf725
* Wed Apr 01 2015 Michael Cronenworth <mike@cchtml.com> - 1.24.2-1
3caf725
- Update to 1.24.2
3caf725
- (bug T85848, bug T71210) SECURITY: Don't parse XMP blocks that contain XML entities, to prevent various DoS attacks.
3caf725
- (bug T85848) SECURITY: Don't allow directly calling Xml::isWellFormed, to reduce likelihood of DoS.
3caf725
- (bug T88310) SECURITY: Always expand xml entities when checking SVG's.
3caf725
- (bug T73394) SECURITY: Escape > in Html::expandAttributes to prevent XSS.
3caf725
- (bug T85855) SECURITY: Don't execute another user's CSS or JS on preview.
3caf725
- (bug T64685) SECURITY: Allow setting maximal password length to prevent DoS when using PBKDF2.
3caf725
- (bug T85349, bug T85850, bug T86711) SECURITY: Multiple issues fixed in SVG filtering to prevent XSS and protect viewer's privacy.
3caf725
- Fix case of SpecialAllPages/SpecialAllMessages in SpecialPageFactory to fix loading these special pages when $wgAutoloadAttemptLowercase is false.
3caf725
- (bug T70087) Fix Special:ActiveUsers page for installations using PostgreSQL.
3caf725
- (bug T76254) Fix deleting of pages with PostgreSQL. Requires a schema change and running update.php to fix.
3caf725
47fa95c
* Thu Dec 18 2014 Michael Cronenworth <mike@cchtml.com> - 1.24.1-1
47fa95c
- Update to 1.24.1
47fa95c
- (bug T76686) [SECURITY] thumb.php outputs wikitext message as raw HTML, which could lead to xss. Permission to edit MediaWiki namespace is required to exploit this.
47fa95c
- (bug T77028) [SECURITY] Malicious site can bypass CORS restrictions in $wgCrossSiteAJAXdomains in API calls if it only included an allowed domain as part of its name.
47fa95c
- (bug T74222) The original patch for T74222 was reverted as unnecessary.
47fa95c
- Fixed a couple of entries in RELEASE-NOTES-1.24.
47fa95c
- (bug T76168) OutputPage: Add accessors for some protected properties.
47fa95c
- (bug T74834) Make 1.24 branch directly installable under PostgreSQL.
47fa95c
f33668b
* Fri Nov 28 2014 Michael Cronenworth <mike@cchtml.com> - 1.24.0-1
f33668b
- Update to 1.24.0
f33668b
- Release notes: http://www.mediawiki.org/wiki/Release_notes/1.24
f33668b
9858808
* Mon Nov 03 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.6-1
9858808
- Update to 1.23.6
9858808
- (bug 67440) Allow classes to be registered properly from installer
9858808
- (bug 72274) Job queue not running (HTTP 411) due to missing Content-Length: header
9858808
f3579b9
* Thu Oct 02 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.5-1
f3579b9
- Update to 1.23.5
f3579b9
- CVE-2014-7295 (bug 70672) SECURITY: OutputPage: Remove separation of css and js module
f3579b9
  allowance.
f3579b9
782e09a
* Fri Sep 26 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.4-1
782e09a
- Update to 1.23.4
782e09a
- (bug 69008) SECURITY: Enhance CSS filtering in SVG files. Filter <style> elements; normalize style
782e09a
  elements and attributes before filtering; add checks for attributes that contain css; add unit tests
782e09a
  for html5sec and reported bugs.
782e09a
- (bug 65998) Make MySQLi work with non-standard socket.
782e09a
- (bug 66986) GlobalVarConfig shouldn't throw exceptions for null-valued config settings.
782e09a
95ef8ad
* Thu Aug 28 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.3-1
95ef8ad
- Update to 1.23.3
95ef8ad
- (bug 68501) Correctly handle incorrect namespace in cleanupTitles.php.
95ef8ad
- (bug 64970) Fix support for blobs on DatabaseOracle::update.
95ef8ad
- (bug 66574) Display MediaWiki:Loginprompt on the login page.
95ef8ad
- (bug 67870) wfShellExec() cuts off stdout at multiples of 8192 bytes.
95ef8ad
- (bug 60629) Handle invalid language code gracefully in 
95ef8ad
  Language::fetchLanguageNames.
95ef8ad
- (bug 62017) Restore the number of rows shown on Special:Watchlist.
95ef8ad
- Check for boolean false result from database query in SqlBagOStuff.
95ef8ad
777bbb6
* Thu Jul 31 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.2-1
777bbb6
- Update to 1.23.2
777bbb6
- (bug 68187) SECURITY: Prepend jsonp callback with comment.
777bbb6
- (bug 66608) SECURITY: Fix for XSS issue in bug 66608: Generate the URL used for loading 
777bbb6
  a new page in Javascript,instead of relying on the URL in the link that has been clicked.
777bbb6
- (bug 65778) SECURITY: Copy prevent-clickjacking between OutputPage and ParserOutput.
777bbb6
- (bug 68313) Preferences: Turn stubthreshold back into a combo box.
777bbb6
- (bug 65214) Fix initSiteStats.php maintenance script.
777bbb6
- (bug 67594) Special:ActiveUsers: Fix to work with PostgreSQL.
777bbb6
8da24f3
* Wed Jun 25 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.1-1
8da24f3
- Update to 1.23.1
8da24f3
- (bug 65839) SECURITY: Prevent external resources in SVG files.
8da24f3
- (bug 67025) Special:Watchlist: Don't try to render empty row.
8da24f3
- (bug 66922) Don't allow some E_NOTICE messages to end up in the LocalSettings.php.
8da24f3
- (bug 66467) FileBackend: Avoid using popen() when "parallelize" is disabled.
8da24f3
- (bug 66428) MimeMagic: Don't seek before BOF. This has weird side effects
8da24f3
  like only extracting the tail of the file partially or not at all.
8da24f3
- (bug 66182) Removed -x flag on some php files.
8da24f3
2932d16
* Tue Jun 10 2014 Michael Cronenworth <mike@cchtml.com> - 1.23.0-1
2932d16
- Update to 1.23.0
2932d16
a3c2d7a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.22.7-2
a3c2d7a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a3c2d7a
98c149d
* Sat May 31 2014 Michael Cronenworth <mike@cchtml.com> - 1.22.7-1
98c149d
- Update to 1.22.7
98c149d
- (bug 65501) SECURITY: Don't parse usernames as wikitext on Special:PasswordReset.
98c149d
- (bug 36356) Add space between two feed links.
98c149d
- (bug 63269) Email notifications were not correctly handling the
98c149d
  [[MediaWiki:Helppage]] message being set to a full URL. This is a regression
98c149d
  from the 1.22.5 point release, which made the default value for it a URL.
98c149d
  If you customized [[MediaWiki:Enotif body]] (the text of email notifications),
98c149d
  you'll need to edit it locally to include the URL via the new variable
98c149d
  $HELPPAGE instead of the parser functions fullurl and canonicalurl; otherwise
98c149d
  you don't have to do anything.
98c149d
- Add missing uploadstash.us_props for PostgreSQL.
98c149d
- (bug 56047) Fixed stream wrapper in PhpHttpRequest.
98c149d
3ef9e9b
* Fri Apr 25 2014 Michael Cronenworth <mike@cchtml.com> - 1.22.6-1
3ef9e9b
- Update to 1.22.6
3ef9e9b
- (bug 63251) (CVE-2014-2853) SECURITY: Escape sortKey in pageInfo.
3ef9e9b
d9ab0ec
* Fri Mar 28 2014 Michael Cronenworth <mike@cchtml.com> - 1.22.5-1
d9ab0ec
- Update to 1.22.5
d9ab0ec
- (bug 62497) SECURITY: Add CSRF token on Special:ChangePassword.
d9ab0ec
- (bug 62467) Set a title for the context during import on the cli.
d9ab0ec
- Fix custom local MediaWiki:Helppage values.
d9ab0ec
- mediawiki.js: Fix documentation breakage.
d9ab0ec
- (bug 58153) Make MySQLi work with non standard port.
d9ab0ec
- (bug 53887) Reintroduced a link to help pages in the default sidebar, that any sysop can customize by editing MediaWiki:Sidebar locally.
d9ab0ec
- (bug 53888) Corrected a regression in 1.22 which introduced red links on the login page. If you previously installed 1.22.x and have created a local page to make the red link blue, write its title as in MediaWiki:helplogin-url if you didn't already. Otherwise, you don't need to do anything, but you can translate the help page at https://www.mediawiki.org/wiki/Help:Logging_in .
d9ab0ec
3d7d334
* Sat Mar 15 2014 Michael Cronenworth <mike@cchtml.com> - 1.22.4-1
3d7d334
- Update to 1.22.4
3d7d334
- 1.22 branch now requires php-pecl-jsonc
3d7d334
e5d0522
* Sat Mar 01 2014 Michael Cronenworth <mike@cchtml.com> - 1.22.3-1
e5d0522
- Update to 1.22.3
e5d0522
- (bug 60771) SECURITY: Disallow uploading SVG files using non-whitelisted namespaces. Also disallow iframe elements. User will get an error including the namespace name if they use a non- whitelisted namespace.
e5d0522
- (bug 61346) SECURITY: Make token comparison use constant time. It seems like our token comparison would be vulnerable to timing attacks. This will take constant time.
e5d0522
- (bug 61362) SECURITY: API: Don't find links in the middle of api.php links.
e5d0522
- (bug 53710) Add sequence support for upsert in DatabaseOracle in the same way as in selectInsert
e5d0522
- (bug 60231, bug 58719) Various fixes to job running code in Wiki.php: Make it async on Windows. Fixed possible "invalid filename" errors on Windows. Redirect output to dev/null to avoid hanging PHP.
e5d0522
- (bug 60083) Correct sequence name for fresh Postgres installation. Spotted by gebhkla
e5d0522
- (bug 60531) Avoid variable naming conflicts in DatabasePostgres::selectSQLText. Spotted by gebhkla
e5d0522
- (bug 60094) Fix rebuildall.php fatal error with PostgreSQL.
e5d0522
- (bug 43817) Add error handling if descriptionmsg isn't defined for extension.
e5d0522
- (bug 60543) Special:PrefixIndex omits stripprefix=1 for "Next page" link.
e5d0522
81caf3e
* Tue Jan 28 2014 Patrick Uiterwijk <puiterwijk@redhat.com> - 1.22.2-1
81caf3e
- Update to 1.22.2
81caf3e
- (bug 60339) (CVE-2014-1610) SECURITY: Reported RCE in djvu thumbnailing
81caf3e
- (bug 58253) Check for very old PCRE versions in installer and updater
81caf3e
- (bug 60054) Make WikiPage::$mPreparedEdit public
81caf3e
bce5b0a
* Tue Jan 14 2014 Patrick Uiterwijk <puiterwijk@redhat.com> - 1.22.1-1
bce5b0a
- Update to 1.22.1
bce5b0a
- (bug 57550) (CVE-2013-6452) SECURITY: Disallow stylesheets in SVG Uploads
bce5b0a
- (bug 58088) (CVE-2013-6451) SECURITY: Don't normalize U+FF3C to \ in CSS Checks
bce5b0a
- (bug 58472) (CVE-2013-6454) SECURITY: Disallow -o-link in styles
bce5b0a
- (bug 58553) (CVE-2013-6453) SECURITY: Return error on invalid XML for SVG Uploads
bce5b0a
- (bug 58699) (CVE-2013-6472) SECURITY: Fix RevDel log entry information leaks
bce5b0a
- (bug 58178) Restore compatibility with curl < 7.16.2.
bce5b0a
- (bug 56931) Updated the plural rules to CLDR 24. They are in new format which is detailed in UTS 35 Rev 33. The PHP parser and evaluator as well as the JavaScript evaluator were updated to support the new format. Plural rules for some languages have changed, most notably Russian. Affected software messages have been updated and marked for review at translatewiki.net. This change is backported from the development branch of MediaWiki 1.23.
bce5b0a
- (bug 58434) The broken installer for database backend Oracle was fixed.
bce5b0a
- (bug 58167) The web installer no longer throws an exception when PHP is compiled without support for MySQL yet with support for another DBMS.
bce5b0a
- (bug 58640) Fixed a compatibility issue with PCRE 8.34 that caused pages to appear blank or with missing text.
bce5b0a
- (bug 47055) Changed FOR UPDATE handling in Postgresql
bce5b0a
- (bug 57026) Avoid extra parsing in prepareContentForEdit()
bce5b0a
533745e
* Mon Dec 09 2013 Michael Cronenworth <mike@cchtml.com> - 1.22.0-1
533745e
- New upstream release.
533745e
7564b75
* Tue Nov 19 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.3-1
7564b75
- New upstream release.
7564b75
41d33e5
* Sat Oct 05 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.2-2
41d33e5
- Packaging fixes. (#1006110, #1007377)
41d33e5
493bfd9
* Thu Sep 05 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.2-1
493bfd9
- New upstream release.
493bfd9
8745516
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.21.1-6
8745516
- Perl 5.18 rebuild
8745516
a71da86
* Sat Jul 27 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.1-5
d3d7f51
- Update mw-createinstance
e7ebba1
- Support for UnversionedDocdirs
d3d7f51
c3b2d5c
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.21.1-4
c3b2d5c
- Perl 5.18 rebuild
c3b2d5c
80a81f2
* Wed Jul 10 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.1-3
80a81f2
- Fix Obsoletes
80a81f2
7ee5ea5
* Tue Jul 09 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.1-2
7ee5ea5
- Provide/Obsolete now included extensions (#967811)
7ee5ea5
2623847
* Mon Jun 03 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.1-1
2623847
- New upstream release.
2623847
eabc142
* Tue May 28 2013 Michael Cronenworth <mike@cchtml.com> - 1.21.0-1
eabc142
- New upstream release.
eabc142
af7119b
* Tue May 07 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.5-1
af7119b
- New upstream release.
af7119b
- Obsolete mediawiki116 package.
af7119b
c5e9fc6
* Wed Apr 17 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.4-1
c5e9fc6
- New upstream release.
c5e9fc6
37eafa3
* Thu Apr 11 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.3-3
37eafa3
- Update mw-* scripts. (#926899)
37eafa3
e856bd6
* Tue Mar 12 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.3-2
e856bd6
- Update mw-createinstance for new access points.
e856bd6
b7ff08c
* Mon Mar  4 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.3-1
b7ff08c
- New upstream release.
b7ff08c
a88f89c
* Thu Feb 28 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.2-2
a88f89c
- Fix upgrade path.
a88f89c
9fd0e56
* Wed Feb 27 2013 Michael Cronenworth <mike@cchtml.com> - 1.20.2-1
9fd0e56
- New upstream release.
9fd0e56
4498c09
* Wed Feb 27 2013 Michael Cronenworth <mike@cchtml.com> - 1.19.3-1
cf906bb
- New upstream release.
cf906bb
b8a7751
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.5-62
b8a7751
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b8a7751
7d6f0bd
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.5-61
7d6f0bd
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7d6f0bd
2529ae3
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.5-60
2529ae3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2529ae3
Axel Thimm 21cd03a
* Sun May  8 2011 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.16.5-59
Axel Thimm 21cd03a
- Update to 1.16.5.
Axel Thimm 21cd03a
Axel Thimm 94f8197
* Fri Apr 22 2011 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.16.4-58
Axel Thimm 94f8197
- texvc was being accidentially wiped out before packaging it.
Axel Thimm 94f8197
Axel Thimm a6b3d80
* Sat Apr 16 2011 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.16.4-57
Axel Thimm a6b3d80
- Update to 1.16.4.
Axel Thimm a6b3d80
Axel Thimm 13c9f1e
* Sun Apr  3 2011 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.16.2-56
Axel Thimm 13c9f1e
- Update to 1.16.2.
Axel Thimm 13c9f1e
- Fixes RH bugs #614065, #644325, #682281, #662402
Axel Thimm 13c9f1e
- Enable suggestions while typing in search boxes by default.
Axel Thimm 13c9f1e
- Add some basic mediawiki management scripts.
Axel Thimm 13c9f1e
958f0ae
* Fri Sep 10 2010 Nick Bebout <nb@fedoraproject.org> - 1.15.4-55
958f0ae
- Mark mediawiki.conf as config(noreplace) (RH bug #614396).
958f0ae
3105dcb
* Mon Jul  5 2010 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.4-54
3105dcb
- Update to 1.5.14 (Fixes CVE-2010-1647 CVE-2010-1648).
3105dcb
- Change BR php to php-common (RH bug #549822).
3105dcb
d8c75c1
* Wed Apr  7 2010 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.3-53
a4c91e7
- Update to 1.15.3 (Fixes login CSRF vulnerability).
a4c91e7
a84f46c
* Wed Mar 31 2010 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.2-51
a4c91e7
- Update to 1.15.2 (Fixes CSS validation issue and data leakage
a4c91e7
  vulnerability).
787571c
b2396e8
* Fri Jul 24 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.1-50
b2396e8
- Add a README.RPM and a sample apache mediawiki.conf file.
b2396e8
6950780
* Thu Jul 23 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.1-49
6950780
- All (runtime) dependencies from mediawiki need to move to
6950780
  mediawiki-nomath.
6950780
ea8961f
* Mon Jul 13 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.1-48
ea8961f
- Update to 1.15.1 (Fixes XSS vulnerability).
ea8961f
92ac1f7
* Sat Jul 11 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.0-47
92ac1f7
- Fix api.php breakage.
92ac1f7
92ac1f7
* Sat Jun 13 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.15.0-46
92ac1f7
- Update to 1.15.0.
92ac1f7
9324a4f
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
9324a4f
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
9324a4f
  (added sparc64 per request from the sparc maintainer)
9324a4f
649acae
* Sat Feb 28 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.14.0-45
649acae
- Update to 1.14.0.
3fe24c4
28dfc72
* Sun Feb 22 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.4-44
28dfc72
- Split package up, so some users can decide to not install math
28dfc72
  support (results in smaller installs), see RH bug #485447.
28dfc72
28dfc72
* Wed Feb 18 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.4-43
28dfc72
- Update to 1.13.4, closes RH bug #485728.
28dfc72
984bd9d
* Tue Dec 23 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.3-42
984bd9d
- Update to 1.13.3, closes RH bug #476621 (CVE-2008-5249,
984bd9d
  CVE-2008-5250, CVE-2008-5252 and CVE-2008-5687, CVE-2008-5688)
984bd9d
17f0ed1
* Sun Oct  5 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.2-41
17f0ed1
- Update to 1.13.2.
17f0ed1
2a7e9e9
* Sun Aug 24 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.0-40
2a7e9e9
- Use consistently Patch0 and %%patch0.
2a7e9e9
00b9504
* Sat Aug 16 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.13.0-39
00b9504
- Update to 1.13.0.
be1331e
78dc7a5
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.10.4-40
78dc7a5
- fix license tag
78dc7a5
72ebee9
* Tue Mar  4 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.10.4-38
72ebee9
- Update to 1.10.4.
72ebee9
41d33e5
* Sun Feb 17 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.10.3-37
72ebee9
- Update to 1.10.3.
72ebee9
- Fixes CVE-2008-0460 (bug #430286).
5b385f8
a040afa
* Wed May  9 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.10.0-35
a89b203
- Update to 1.10.0.
a040afa
4b70246
* Thu Feb 22 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.9.3-34
4b70246
- Update to 1.9.4.
4b70246
f49932a
* Mon Feb  5 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.9.2-33
f49932a
- Update to 1.9.2.
Roozbeh Pournader 66e3f65
f49932a
* Fri Feb  2 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.9.1-32
f49932a
- Fix permissions.
f49932a
- Remove some parts not needed at runtime anymore.
Roozbeh Pournader 66e3f65
f49932a
* Thu Feb  1 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.9.1-31
f49932a
- Update to 1.9.1.
Roozbeh Pournader 66e3f65
f49932a
* Sat Oct 14 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.8.2-28
f49932a
- Update to 1.8.2.
Roozbeh Pournader 66e3f65
f49932a
* Wed Oct 11 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 1.8.1-27
f49932a
- Update to 1.8.1.
f49932a
- Update to 1.8.0.
Roozbeh Pournader 66e3f65
f49932a
* Mon Jul 10 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.7.1.
4ae5150
f49932a
* Wed Jun  7 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.6.7.
6f22582
f49932a
* Fri May 26 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.6.6.
7a12c27
f49932a
* Thu Apr 13 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.6.3.
2b7db85
f49932a
* Sat Apr  8 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.6.2.
a39db9f
f49932a
* Fri Apr  7 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.6.1.
f49932a
f49932a
* Mon Apr  3 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.8.
f49932a
f49932a
* Thu Mar  2 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.7.
f49932a
f49932a
* Thu Jan 19 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.6.
ac1d81d
f49932a
* Fri Jan  6 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.5.
Roozbeh Pournader c976a30
f49932a
* Sun Dec  4 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.3.
Roozbeh Pournader fbac89b
f49932a
* Fri Nov  4 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.2.
Roozbeh Pournader 6fa91dc
f49932a
* Mon Oct 31 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.1.
Roozbeh Pournader 61dfe12
f49932a
* Thu Oct  6 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5.0.
Roozbeh Pournader 66e3f65
f49932a
* Fri Sep  2 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5rc4.
Roozbeh Pournader 66e3f65
f49932a
* Sun Jul 31 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5beta4.
Roozbeh Pournader 66e3f65
f49932a
* Fri Jul  8 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5beta3.
Roozbeh Pournader 66e3f65
f49932a
* Tue Jul  5 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Update to 1.5beta2.
Roozbeh Pournader 66e3f65
f49932a
* Sun Jul  3 2005 Axel Thimm <Axel.Thimm@ATrpms.net>
f49932a
- Initial build.
Roozbeh Pournader 66e3f65