aboutsummaryrefslogtreecommitdiffstats
path: root/Perl
Commit message (Collapse)AuthorAgeFilesLines
* Update location/information for dl10n repoHolger Wansing2024-01-072-3/+10
|
* For git rev strings in the API, trim leading and trailing whitespaceSteve McIntyre2023-09-281-0/+19
|
* add support for Perl regex in the global .transignore fileThomas Lange2023-09-201-5/+12
| | | | | You can use all types of Perl regex local .transignore files in subdirectories are no needed any more
* Perl/Locale/Language.pm: Fix Walloon nameBoyuan Yang2019-06-201-1/+1
|
* Fix sint Marten NameSebastiano Pistore2019-06-201-1/+1
|
* Fix Taiwan nameSebastiano Pistore2019-06-201-1/+1
|
* Add South sudan numeric codeSebastiano Pistore2019-06-201-1/+1
|
* Countries removed: Netherlands Antilles, France Metropolitan (fx), ↵Sebastiano Pistore2019-06-202-22/+49
| | | | | | | | | | Yugoslavia, Zaire Countries added: Åland Islands, Saint Barthélemy, Bonaire, Sint Eustatius and Saba, Curaçao, Guernsey, Isle of Man, Jersey, Montenegro, Saint Martin (French part), North Macedonia, Serbia, South Sudan, Sint Maarten (Dutch part), French Southern Territories, Timor-Leste Language added: Akan, Aragonese, Avaric, Bambara, Cree, Divehi, Ewe, Fulah, Haitian Creole, Igbo, Nuosu, Ido, Kongo, Kanuri, Ganda, Limburgish, Luba-Katanga, Ojibwa, Tahitian, Wallon Language removede: Moldavian (mo)
* smart-change: Add new --modified and --commit optionsGuillem Jover2019-04-041-0/+32
| | | | | | | | | | | | | | | This should help work off the VCS. The --modified option helps with the following workflow: 1) Modify english version; commit. 2) Modify translations; use smart_change with -m; commit. The --commit option helps with the following workflow: 1) Modify english version; commit. 2) Modify translations; commit. 3) Use smart_change with -c from 2); commit.
* Perl::Local::VCS_git: Fix an off-by-one error in next_revision()Guillem Jover2019-04-031-1/+1
| | | | | We should be checking whether the commit index is greater than the last index of the @commits array.
* remove Perl libraries related to CVS, not needed anymoreLaura Arjona Reina2019-04-022-1058/+0
|
* YA attempt to fix up our list of git hashes for the webwml repoSteve McIntyre2018-06-121-52/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The bugs I've been seeing were not consistent, which was annoying... Listing all merge commits left us with phantom commits showing up due to merge noise. Leaving out all the merge commits caused us to miss a load of the older commits. Eureka! The problem *seems* to be the way that the old CVS commits have been converted into git commits. Lots of them show up as merge commits due to the way cvs2git worked. So we *do* need to include merge commits there. However, we *don't* want to include merge commits for the stuff that's been committed directly into git after the transition. So, there's a hacky solution which actually seems to work well! Call "git log" twice: * Once on the newer commits, without the merge commits * Once on the older commits, including merge commits I've encoded the knowledge of the point where the conversion happened so we can do this. The results look good, and we seem to have a clean set of commit hashes all over our history. There are a few translated files that I'll need to fix after this change - places where the translators were misled into updating their translation-check headers due to the old broken behaviour. Sorry! :-/
* Tweak debug codeSteve McIntyre2018-06-101-2/+2
|
* YA fix for the "git log" parsingSteve McIntyre2018-06-081-16/+54
| | | | | | | | | | | We need to use "-m" to make sure we see all the changes around merges, *but* that also gives us noise from the "right-hand" of merges which can cause confusion - some files will end up shown as being changed when they actually weren't. Track each commit hash we look at, and only save the details the *first* time we see each commit hash. Seems to make all the difference.
* Change git log command line used for extracting commit hashesSteve McIntyre2018-06-061-3/+3
| | | | | | | | | | | Used to use --first-parent but that meant we were missing some commits, so removed it. Unfortunately this slows things down slightly and boosts the space needed for the cache. Also added --no-renames to avoid ugly warning about skipping inexact rename detection. In our use case, we don't particularly care about renames - we're just wanting to know what happened to a file in each commit.
* If we don't find a rev, return undef properlySteve McIntyre2018-06-061-1/+2
| | | | Previous code was printing an error then incorrectly continuing
* Print errors to STDERRSteve McIntyre2018-06-061-5/+5
|
* Move locking into the cache build utilitySteve McIntyre2018-06-061-23/+9
| | | | Stop having multiple copies of it all calling git in parallel
* Add support for a simple on-disk cache of git revsSteve McIntyre2018-06-051-68/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | We can't rely on having a full cache in memory, so add support for dumping the cache to disk, and retrieving results later. After calling cache_repo(), call save_cache_to_database() to dump the cache. This will dump a list of the git revs and commit dates for each file in the repo to disk (one per file), so we can easily look things up later without having to call git again. Initially attempted to do this with a sqlite database, but it didn't improve performance when doing a large parallel make - if anything, it was slower than calling git all the time. Rough timing comparisons on my 4-core laptop with an SSD, all doing: $ make clean $ time make -j8 in webwml/german/devel/debian-installer/News... * without any cache: 85s * with sqlite cache: 120s * with this simple list cache: 13s The cache *does* take quite a bit of space, currently around 300MB. But it's such a big win that I think it's worth it...
* Fix up chained new() callsSteve McIntyre2018-06-051-0/+2
| | | | | Shift out the first arg so we don't pollute the namespace of the module underneath us.
* Improve performance more with a cached repoSteve McIntyre2018-06-011-0/+6
| | | | | | Once we've cached the whole repo, stop trying to add more files. It takes a long time if we keep trying to lookup things that are not in the cache.
* Cope with being called from directories other than the webwml rootSteve McIntyre2018-05-311-65/+310
| | | | | | | | | | | | | | | | | | | | | | Added extra directory handling code to allow for this where it makes sense. This should now work for all public APIs, except: * cache_file() * cache_repo() * path_info() * get_topdir() The first two are almost internal anyway, and the last doesn't take any arguments to allow for anything to work *except* when the caller is somewhere within the webwml repo. path_info() is *hard* to change here, and all the callers I can find are already expecting to be in webwml anyway. I've added checks in each of these to at least complain clearly when expectations are not met. These changes might slow things down slightly due to repeated chdir() calls, but meh. Also added some extra tests for this in the vcs-test.pl script.
* Deal with working in subdirectories when using file_infoSteve McIntyre2018-05-311-3/+12
| | | | | Make sure that when we add things to the cache (and look them up) we're working in the right directory
* Add get_newest_revision() and test harness code for itSteve McIntyre2018-05-312-0/+53
|
* Hardcode versions rather than depend on missing CVS variablesSteve McIntyre2018-05-312-2/+2
|
* Fix ordering of count_changes() properlySteve McIntyre2018-05-311-1/+1
|
* Major updates to perl scriptsSteve McIntyre2018-05-306-520/+729
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add new git backend in VCS_git.pm Switch from an old-style set of function calls to an OO API. This allows for initialisation and some state to be kept in the VCS_git.pm module - namely a per-file cache of commit hashes for a massive performance boost when doing lots of lookups. Extend the API with 2 new utility functions: * get_oldest_revision() * next_revision() Extended the vcs_cmp_rev() function to take a filename too. Add a test harness to validate the git and cvs backends. Add switch_to_git_translations.pl to walk the tree and switch from cvs revisions to git commit hashes in translation-check headers. Change all of our local scripts to use the new Local::VCS frontend *where it makes sense*. Some scripts will behave slightly differently, as the new world can't exactly match the old behaviour. CVS version numbers check_desc_trans.pl: 1.9 -> 1.10 check_trans.pl: 1.93 -> 1.94 copypage.pl: 1.42 -> 1.43 karma.pl: 1.6 -> 1.7 remove_stale.pl: 1.22 -> 1.23 smart_change.pl: 1.8 -> 1.9 stattrans.pl: 1.127 -> 1.128 switch_to_git_translations.pl: INITIAL -> 1.1 touch_translations.pl: 1.9 -> 1.10 vcs-test.pl: INITIAL -> 1.1 Perl/Local/Util.pm: 1.4 -> 1.5 Perl/Local/VCS.pm: 1.3 -> 1.4 Perl/Local/VCS_CVS.pm: 1.13 -> 1.14 Perl/Local/VCS_git.pm: 1.12 -> 1.13 Perl/Webwml/Langs.pm: 1.5 -> 1.6 Perl/Webwml/TransIgnore.pm: 1.3 -> 1.4
* Remove unused Gitinfo.pm fileSteve McIntyre2018-05-301-379/+0
| | | | | | CVS version numbers Perl/Local/Gitinfo.pm: 1.2 -> 1.3(DEAD)
* Add line to the database only if it includes content. Thus, avoid "Use of ↵Laura Arjona Reina2018-05-041-0/+2
| | | | | | | | uninitialized value in hash element" errors CVS version numbers Perl/Debian/L10n/Db.pm: 1.8 -> 1.9
* we don't need git checkouts, we can use git show <hash>:<pathname> to get ↵Laura Arjona Reina2017-11-071-16/+6
| | | | | | | | the content of the file for a certain revision CVS version numbers Perl/Local/VCS_git.pm: 1.11 -> 1.12
* Initial replace cvs -> git in variable names and comments (when possible). ↵Laura Arjona Reina2017-11-071-25/+25
| | | | | | | | All these functions scan the F<CVS/*> files in the CVS directory, so I'm not sure how will we do it with git. Probably with a complete rewrite. CVS version numbers Perl/Local/Gitinfo.pm: 1.1 -> 1.2
* vcs_get_file function converted to use git checkouts, needs review and testLaura Arjona Reina2017-11-071-23/+16
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.10 -> 1.11
* Initial conversion of vcs_get_diff into git log format. It needs workLaura Arjona Reina2017-11-071-11/+12
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.9 -> 1.10
* vcs_get_log function converted into git and hashes, needs review and testLaura Arjona Reina2017-11-071-15/+14
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.8 -> 1.9
* Remove references to Subversion in commentsLaura Arjona Reina2017-11-071-3/+3
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.7 -> 1.8
* Update the #FIXME comment in vcs_count_changes function: "#FIXME: converted ↵Laura Arjona Reina2017-11-071-1/+1
| | | | | | | | into git and hashes, needs review and test" CVS version numbers Perl/Local/VCS_git.pm: 1.6 -> 1.7
* initial conversion of function vcs_count_changes into git: use git rev-list ↵Laura Arjona Reina2017-11-071-22/+20
| | | | | | | | --count to get number of changes between 2 revisions CVS version numbers Perl/Local/VCS_git.pm: 1.5 -> 1.6
* Add "# FIXME: this needs to be "translated" into git and hashes" comment ↵Laura Arjona Reina2017-11-071-0/+13
| | | | | | | | line in the functions that need conversion into git logic CVS version numbers Perl/Local/VCS_git.pm: 1.4 -> 1.5
* Remove Subversion functions that were experimental and are not usedLaura Arjona Reina2017-11-071-248/+0
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.3 -> 1.4
* Replace cvs -> git in documentation or other places where no further work ↵Laura Arjona Reina2017-11-071-27/+27
| | | | | | | | was needed CVS version numbers Perl/Local/VCS_git.pm: 1.2 -> 1.3
* Search and replace VCS_CVS -> VCS_git and Cvsinfo -> GitinfoLaura Arjona Reina2017-11-071-8/+8
| | | | | | CVS version numbers Perl/Local/VCS_git.pm: 1.1 -> 1.2
* Add copies of the CVS scripts to compare revisions. They need to evolve to ↵Laura Arjona Reina2017-11-072-0/+1177
| | | | | | | | | use Git and hashes instead of CVS and revision numbers CVS version numbers Perl/Local/Gitinfo.pm: INITIAL -> 1.1 Perl/Local/VCS_git.pm: INITIAL -> 1.1
* Perl 5.21 added a new warning when too many arguments are passed to sprintf.Tobias Quathamer2017-06-062-4/+2
| | | | | | | CVS version numbers Perl/Local/Util.pm: 1.3 -> 1.4 Perl/Local/VCS_CVS.pm: 1.12 -> 1.13
* Convert alioth links from http to httpsPaul Wise2016-11-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CVS version numbers Perl/Debian/README: 1.1 -> 1.2 chinese/News/weekly/2003/18/index.wml: 1.13 -> 1.14 chinese/News/weekly/2003/22/index.wml: 1.14 -> 1.15 chinese/News/weekly/2006/27/index.wml: 1.12 -> 1.13 czech/News/weekly/2005/01/index.wml: 1.15 -> 1.16 czech/News/weekly/2005/17/index.wml: 1.7 -> 1.8 czech/News/weekly/2005/19/index.wml: 1.8 -> 1.9 czech/News/weekly/2005/20/index.wml: 1.9 -> 1.10 czech/News/weekly/2005/24/index.wml: 1.6 -> 1.7 czech/News/weekly/2005/31/index.wml: 1.11 -> 1.12 czech/News/weekly/2005/37/index.wml: 1.8 -> 1.9 czech/News/weekly/2005/43/index.wml: 1.12 -> 1.13 danish/News/weekly/2011/01/index.wml: 1.13 -> 1.14 danish/News/weekly/2011/02/index.wml: 1.14 -> 1.15 danish/News/weekly/2011/15/index.wml: 1.10 -> 1.11 danish/News/weekly/2013/21/index.wml: 1.7 -> 1.8 english/News/weekly/2003/timeline.wml: 1.17 -> 1.18 english/News/weekly/2003/13/index.wml: 1.20 -> 1.21 english/News/weekly/2003/15/index.wml: 1.24 -> 1.25 english/News/weekly/2003/16/index.wml: 1.19 -> 1.20 english/News/weekly/2003/17/index.wml: 1.19 -> 1.20 english/News/weekly/2003/18/index.wml: 1.20 -> 1.21 english/News/weekly/2003/22/index.wml: 1.22 -> 1.23 english/News/weekly/2003/28/index.wml: 1.12 -> 1.13 english/News/weekly/2003/40/index.wml: 1.15 -> 1.16 english/News/weekly/2003/44/index.wml: 1.12 -> 1.13 english/News/weekly/2003/51/index.wml: 1.10 -> 1.11 english/News/weekly/2004/timeline.wml: 1.8 -> 1.9 english/News/weekly/2004/10/index.wml: 1.11 -> 1.12 english/News/weekly/2004/14/index.wml: 1.14 -> 1.15 english/News/weekly/2004/19/index.wml: 1.13 -> 1.14 english/News/weekly/2004/44/index.wml: 1.12 -> 1.13 english/News/weekly/2005/01/index.wml: 1.15 -> 1.16 english/News/weekly/2005/17/index.wml: 1.9 -> 1.10 english/News/weekly/2005/19/index.wml: 1.9 -> 1.10 english/News/weekly/2005/20/index.wml: 1.10 -> 1.11 english/News/weekly/2005/24/index.wml: 1.6 -> 1.7 english/News/weekly/2005/29/index.wml: 1.11 -> 1.12 english/News/weekly/2005/31/index.wml: 1.12 -> 1.13 english/News/weekly/2005/37/index.wml: 1.14 -> 1.15 english/News/weekly/2005/38/index.wml: 1.12 -> 1.13 english/News/weekly/2005/43/index.wml: 1.18 -> 1.19 english/News/weekly/2005/47/index.wml: 1.13 -> 1.14 english/News/weekly/2006/13/index.wml: 1.12 -> 1.13 english/News/weekly/2006/17/index.wml: 1.11 -> 1.12 english/News/weekly/2006/27/index.wml: 1.9 -> 1.10 english/News/weekly/2006/34/index.wml: 1.12 -> 1.13 english/News/weekly/2006/37/index.wml: 1.12 -> 1.13 english/News/weekly/2006/41/index.wml: 1.14 -> 1.15 english/News/weekly/2007/05/index.wml: 1.10 -> 1.11 english/News/weekly/2007/06/index.wml: 1.10 -> 1.11 english/News/weekly/2010/01/index.wml: 1.13 -> 1.14 english/News/weekly/2010/04/index.wml: 1.16 -> 1.17 english/News/weekly/2011/01/index.wml: 1.14 -> 1.15 english/News/weekly/2011/02/index.wml: 1.13 -> 1.14 english/News/weekly/2011/15/index.wml: 1.11 -> 1.12 english/News/weekly/2013/21/index.wml: 1.8 -> 1.9 french/News/weekly/2003/timeline.wml: 1.24 -> 1.25 french/News/weekly/2003/13/index.wml: 1.20 -> 1.21 french/News/weekly/2003/15/index.wml: 1.16 -> 1.17 french/News/weekly/2003/16/index.wml: 1.23 -> 1.24 french/News/weekly/2003/17/index.wml: 1.21 -> 1.22 french/News/weekly/2003/18/index.wml: 1.18 -> 1.19 french/News/weekly/2003/22/index.wml: 1.16 -> 1.17 french/News/weekly/2003/28/index.wml: 1.25 -> 1.26 french/News/weekly/2003/40/index.wml: 1.18 -> 1.19 french/News/weekly/2003/44/index.wml: 1.14 -> 1.15 french/News/weekly/2003/51/index.wml: 1.14 -> 1.15 french/News/weekly/2004/timeline.wml: 1.10 -> 1.11 french/News/weekly/2004/10/index.wml: 1.13 -> 1.14 french/News/weekly/2004/14/index.wml: 1.11 -> 1.12 french/News/weekly/2004/19/index.wml: 1.18 -> 1.19 french/News/weekly/2004/44/index.wml: 1.12 -> 1.13 french/News/weekly/2005/01/index.wml: 1.13 -> 1.14 french/News/weekly/2005/17/index.wml: 1.9 -> 1.10 french/News/weekly/2005/19/index.wml: 1.14 -> 1.15 french/News/weekly/2005/20/index.wml: 1.13 -> 1.14 french/News/weekly/2005/24/index.wml: 1.10 -> 1.11 french/News/weekly/2005/29/index.wml: 1.8 -> 1.9 french/News/weekly/2005/31/index.wml: 1.15 -> 1.16 french/News/weekly/2005/37/index.wml: 1.9 -> 1.10 french/News/weekly/2005/38/index.wml: 1.13 -> 1.14 french/News/weekly/2005/43/index.wml: 1.14 -> 1.15 french/News/weekly/2005/47/index.wml: 1.13 -> 1.14 french/News/weekly/2006/13/index.wml: 1.11 -> 1.12 french/News/weekly/2006/17/index.wml: 1.11 -> 1.12 french/News/weekly/2006/27/index.wml: 1.10 -> 1.11 french/News/weekly/2006/34/index.wml: 1.11 -> 1.12 french/News/weekly/2006/37/index.wml: 1.10 -> 1.11 french/News/weekly/2006/41/index.wml: 1.14 -> 1.15 french/News/weekly/2007/05/index.wml: 1.13 -> 1.14 french/News/weekly/2007/06/index.wml: 1.11 -> 1.12 french/News/weekly/2010/01/index.wml: 1.11 -> 1.12 french/News/weekly/2010/04/index.wml: 1.12 -> 1.13 french/News/weekly/2011/01/index.wml: 1.16 -> 1.17 french/News/weekly/2011/02/index.wml: 1.15 -> 1.16 french/News/weekly/2011/15/index.wml: 1.12 -> 1.13 french/News/weekly/2013/21/index.wml: 1.9 -> 1.10 german/News/weekly/2003/timeline.wml: 1.20 -> 1.21 german/News/weekly/2003/13/index.wml: 1.33 -> 1.34 german/News/weekly/2003/15/index.wml: 1.28 -> 1.29 german/News/weekly/2003/16/index.wml: 1.34 -> 1.35 german/News/weekly/2003/17/index.wml: 1.30 -> 1.31 german/News/weekly/2003/18/index.wml: 1.26 -> 1.27 german/News/weekly/2003/22/index.wml: 1.31 -> 1.32 german/News/weekly/2003/28/index.wml: 1.31 -> 1.32 german/News/weekly/2003/40/index.wml: 1.25 -> 1.26 german/News/weekly/2003/44/index.wml: 1.22 -> 1.23 german/News/weekly/2003/51/index.wml: 1.14 -> 1.15 german/News/weekly/2004/timeline.wml: 1.10 -> 1.11 german/News/weekly/2004/10/index.wml: 1.26 -> 1.27 german/News/weekly/2004/14/index.wml: 1.14 -> 1.15 german/News/weekly/2004/19/index.wml: 1.23 -> 1.24 german/News/weekly/2004/44/index.wml: 1.14 -> 1.15 german/News/weekly/2005/01/index.wml: 1.16 -> 1.17 german/News/weekly/2005/17/index.wml: 1.11 -> 1.12 german/News/weekly/2005/19/index.wml: 1.10 -> 1.11 german/News/weekly/2005/20/index.wml: 1.14 -> 1.15 german/News/weekly/2005/24/index.wml: 1.10 -> 1.11 german/News/weekly/2005/29/index.wml: 1.7 -> 1.8 german/News/weekly/2005/31/index.wml: 1.16 -> 1.17 german/News/weekly/2005/37/index.wml: 1.8 -> 1.9 german/News/weekly/2005/38/index.wml: 1.15 -> 1.16 german/News/weekly/2005/43/index.wml: 1.12 -> 1.13 german/News/weekly/2005/47/index.wml: 1.10 -> 1.11 german/News/weekly/2006/13/index.wml: 1.9 -> 1.10 german/News/weekly/2006/17/index.wml: 1.10 -> 1.11 german/News/weekly/2006/27/index.wml: 1.10 -> 1.11 german/News/weekly/2006/34/index.wml: 1.11 -> 1.12 german/News/weekly/2006/37/index.wml: 1.13 -> 1.14 german/News/weekly/2006/41/index.wml: 1.13 -> 1.14 german/News/weekly/2007/05/index.wml: 1.11 -> 1.12 german/News/weekly/2007/06/index.wml: 1.9 -> 1.10 italian/News/weekly/2003/51/index.wml: 1.10 -> 1.11 italian/News/weekly/2004/10/index.wml: 1.13 -> 1.14 italian/News/weekly/2004/14/index.wml: 1.7 -> 1.8 italian/News/weekly/2004/19/index.wml: 1.9 -> 1.10 italian/News/weekly/2004/44/index.wml: 1.8 -> 1.9 italian/News/weekly/2005/01/index.wml: 1.9 -> 1.10 italian/News/weekly/2005/17/index.wml: 1.7 -> 1.8 italian/News/weekly/2005/19/index.wml: 1.11 -> 1.12 italian/News/weekly/2005/20/index.wml: 1.10 -> 1.11 italian/News/weekly/2005/24/index.wml: 1.7 -> 1.8 italian/News/weekly/2005/29/index.wml: 1.6 -> 1.7 italian/News/weekly/2005/31/index.wml: 1.10 -> 1.11 italian/News/weekly/2005/37/index.wml: 1.8 -> 1.9 italian/News/weekly/2005/38/index.wml: 1.11 -> 1.12 italian/News/weekly/2005/43/index.wml: 1.13 -> 1.14 italian/News/weekly/2005/47/index.wml: 1.10 -> 1.11 italian/News/weekly/2006/13/index.wml: 1.10 -> 1.11 italian/News/weekly/2006/17/index.wml: 1.10 -> 1.11 italian/News/weekly/2006/27/index.wml: 1.9 -> 1.10 italian/News/weekly/2006/34/index.wml: 1.9 -> 1.10 italian/News/weekly/2006/37/index.wml: 1.10 -> 1.11 italian/News/weekly/2006/41/index.wml: 1.13 -> 1.14 italian/News/weekly/2007/05/index.wml: 1.10 -> 1.11 italian/News/weekly/2007/06/index.wml: 1.9 -> 1.10 italian/News/weekly/2010/01/index.wml: 1.17 -> 1.18 italian/News/weekly/2010/04/index.wml: 1.16 -> 1.17 italian/News/weekly/2011/01/index.wml: 1.15 -> 1.16 italian/News/weekly/2011/02/index.wml: 1.14 -> 1.15 italian/News/weekly/2011/15/index.wml: 1.14 -> 1.15 italian/News/weekly/2013/21/index.wml: 1.7 -> 1.8 japanese/News/weekly/2003/13/index.wml: 1.14 -> 1.15 japanese/News/weekly/2003/15/index.wml: 1.14 -> 1.15 japanese/News/weekly/2003/16/index.wml: 1.14 -> 1.15 japanese/News/weekly/2003/17/index.wml: 1.18 -> 1.19 japanese/News/weekly/2003/18/index.wml: 1.12 -> 1.13 japanese/News/weekly/2003/22/index.wml: 1.9 -> 1.10 japanese/News/weekly/2003/28/index.wml: 1.16 -> 1.17 japanese/News/weekly/2003/40/index.wml: 1.15 -> 1.16 japanese/News/weekly/2003/44/index.wml: 1.12 -> 1.13 japanese/News/weekly/2003/51/index.wml: 1.12 -> 1.13 japanese/News/weekly/2004/10/index.wml: 1.12 -> 1.13 japanese/News/weekly/2004/14/index.wml: 1.7 -> 1.8 japanese/News/weekly/2004/19/index.wml: 1.13 -> 1.14 japanese/News/weekly/2004/44/index.wml: 1.7 -> 1.8 japanese/News/weekly/2005/01/index.wml: 1.10 -> 1.11 japanese/News/weekly/2005/17/index.wml: 1.7 -> 1.8 japanese/News/weekly/2005/19/index.wml: 1.9 -> 1.10 japanese/News/weekly/2005/24/index.wml: 1.7 -> 1.8 japanese/News/weekly/2005/29/index.wml: 1.4 -> 1.5 japanese/News/weekly/2005/31/index.wml: 1.11 -> 1.12 japanese/News/weekly/2005/37/index.wml: 1.9 -> 1.10 japanese/News/weekly/2005/38/index.wml: 1.13 -> 1.14 japanese/News/weekly/2005/43/index.wml: 1.12 -> 1.13 japanese/News/weekly/2005/47/index.wml: 1.10 -> 1.11 japanese/News/weekly/2006/13/index.wml: 1.9 -> 1.10 japanese/News/weekly/2006/17/index.wml: 1.10 -> 1.11 japanese/News/weekly/2006/27/index.wml: 1.8 -> 1.9 japanese/News/weekly/2006/34/index.wml: 1.8 -> 1.9 japanese/News/weekly/2006/37/index.wml: 1.9 -> 1.10 japanese/News/weekly/2007/05/index.wml: 1.10 -> 1.11 japanese/News/weekly/2010/01/index.wml: 1.5 -> 1.6 japanese/News/weekly/2010/04/index.wml: 1.6 -> 1.7 japanese/News/weekly/2011/01/index.wml: 1.15 -> 1.16 japanese/News/weekly/2011/02/index.wml: 1.13 -> 1.14 japanese/News/weekly/2011/15/index.wml: 1.14 -> 1.15 korean/News/weekly/2004/44/index.wml: 1.7 -> 1.8 korean/News/weekly/2005/01/index.wml: 1.9 -> 1.10 polish/News/weekly/2003/13/index.wml: 1.17 -> 1.18 polish/News/weekly/2003/15/index.wml: 1.20 -> 1.21 polish/News/weekly/2003/16/index.wml: 1.19 -> 1.20 polish/News/weekly/2003/17/index.wml: 1.22 -> 1.23 polish/News/weekly/2003/18/index.wml: 1.14 -> 1.15 polish/News/weekly/2003/22/index.wml: 1.9 -> 1.10 polish/News/weekly/2003/28/index.wml: 1.15 -> 1.16 polish/News/weekly/2003/40/index.wml: 1.18 -> 1.19 polish/News/weekly/2003/44/index.wml: 1.13 -> 1.14 polish/News/weekly/2003/51/index.wml: 1.12 -> 1.13 polish/News/weekly/2004/10/index.wml: 1.15 -> 1.16 polish/News/weekly/2004/14/index.wml: 1.8 -> 1.9 polish/News/weekly/2007/06/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2003/timeline.wml: 1.13 -> 1.14 portuguese/News/weekly/2003/13/index.wml: 1.13 -> 1.14 portuguese/News/weekly/2003/15/index.wml: 1.13 -> 1.14 portuguese/News/weekly/2003/16/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2003/17/index.wml: 1.18 -> 1.19 portuguese/News/weekly/2003/18/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2003/22/index.wml: 1.10 -> 1.11 portuguese/News/weekly/2003/28/index.wml: 1.14 -> 1.15 portuguese/News/weekly/2003/40/index.wml: 1.15 -> 1.16 portuguese/News/weekly/2003/44/index.wml: 1.13 -> 1.14 portuguese/News/weekly/2003/51/index.wml: 1.10 -> 1.11 portuguese/News/weekly/2004/10/index.wml: 1.13 -> 1.14 portuguese/News/weekly/2004/14/index.wml: 1.7 -> 1.8 portuguese/News/weekly/2004/19/index.wml: 1.11 -> 1.12 portuguese/News/weekly/2004/44/index.wml: 1.9 -> 1.10 portuguese/News/weekly/2005/01/index.wml: 1.9 -> 1.10 portuguese/News/weekly/2005/17/index.wml: 1.9 -> 1.10 portuguese/News/weekly/2005/19/index.wml: 1.11 -> 1.12 portuguese/News/weekly/2005/20/index.wml: 1.11 -> 1.12 portuguese/News/weekly/2005/24/index.wml: 1.7 -> 1.8 portuguese/News/weekly/2005/29/index.wml: 1.5 -> 1.6 portuguese/News/weekly/2005/31/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2005/37/index.wml: 1.9 -> 1.10 portuguese/News/weekly/2005/38/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2005/43/index.wml: 1.15 -> 1.16 portuguese/News/weekly/2005/47/index.wml: 1.11 -> 1.12 portuguese/News/weekly/2006/13/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2006/17/index.wml: 1.12 -> 1.13 portuguese/News/weekly/2006/27/index.wml: 1.10 -> 1.11 portuguese/News/weekly/2006/34/index.wml: 1.9 -> 1.10 portuguese/News/weekly/2006/37/index.wml: 1.10 -> 1.11 portuguese/News/weekly/2006/41/index.wml: 1.11 -> 1.12 portuguese/News/weekly/2007/05/index.wml: 1.10 -> 1.11 portuguese/News/weekly/2007/06/index.wml: 1.8 -> 1.9 russian/News/weekly/2003/timeline.wml: 1.16 -> 1.17 russian/News/weekly/2003/13/index.wml: 1.15 -> 1.16 russian/News/weekly/2003/16/index.wml: 1.16 -> 1.17 russian/News/weekly/2003/18/index.wml: 1.14 -> 1.15 russian/News/weekly/2003/22/index.wml: 1.10 -> 1.11 russian/News/weekly/2003/40/index.wml: 1.13 -> 1.14 russian/News/weekly/2004/14/index.wml: 1.7 -> 1.8 russian/News/weekly/2004/19/index.wml: 1.9 -> 1.10 spanish/News/weekly/2003/timeline.wml: 1.17 -> 1.18 spanish/News/weekly/2003/13/index.wml: 1.16 -> 1.17 spanish/News/weekly/2003/15/index.wml: 1.20 -> 1.21 spanish/News/weekly/2003/16/index.wml: 1.16 -> 1.17 spanish/News/weekly/2003/17/index.wml: 1.15 -> 1.16 spanish/News/weekly/2003/18/index.wml: 1.12 -> 1.13 spanish/News/weekly/2003/22/index.wml: 1.9 -> 1.10 spanish/News/weekly/2003/28/index.wml: 1.15 -> 1.16 spanish/News/weekly/2003/40/index.wml: 1.17 -> 1.18 spanish/News/weekly/2003/51/index.wml: 1.8 -> 1.9 spanish/News/weekly/2004/10/index.wml: 1.13 -> 1.14 spanish/News/weekly/2004/14/index.wml: 1.6 -> 1.7 spanish/News/weekly/2004/19/index.wml: 1.10 -> 1.11 spanish/News/weekly/2005/19/index.wml: 1.10 -> 1.11 spanish/News/weekly/2005/29/index.wml: 1.5 -> 1.6 spanish/News/weekly/2005/31/index.wml: 1.11 -> 1.12 spanish/News/weekly/2005/38/index.wml: 1.12 -> 1.13 spanish/News/weekly/2005/43/index.wml: 1.14 -> 1.15 spanish/News/weekly/2005/47/index.wml: 1.10 -> 1.11 spanish/News/weekly/2006/13/index.wml: 1.8 -> 1.9 spanish/News/weekly/2006/27/index.wml: 1.10 -> 1.11 spanish/News/weekly/2006/34/index.wml: 1.11 -> 1.12 spanish/News/weekly/2006/37/index.wml: 1.9 -> 1.10 spanish/News/weekly/2006/41/index.wml: 1.11 -> 1.12 swedish/News/weekly/2003/timeline.wml: 1.12 -> 1.13 swedish/News/weekly/2003/13/index.wml: 1.17 -> 1.18 swedish/News/weekly/2003/15/index.wml: 1.14 -> 1.15 swedish/News/weekly/2003/16/index.wml: 1.15 -> 1.16 swedish/News/weekly/2003/17/index.wml: 1.19 -> 1.20 swedish/News/weekly/2003/18/index.wml: 1.15 -> 1.16 swedish/News/weekly/2003/22/index.wml: 1.11 -> 1.12 swedish/News/weekly/2003/28/index.wml: 1.15 -> 1.16 swedish/News/weekly/2003/40/index.wml: 1.16 -> 1.17 swedish/News/weekly/2003/44/index.wml: 1.14 -> 1.15 swedish/News/weekly/2003/51/index.wml: 1.10 -> 1.11 swedish/News/weekly/2004/10/index.wml: 1.14 -> 1.15 swedish/News/weekly/2004/14/index.wml: 1.9 -> 1.10 swedish/News/weekly/2004/19/index.wml: 1.11 -> 1.12 swedish/News/weekly/2004/44/index.wml: 1.8 -> 1.9 swedish/News/weekly/2005/01/index.wml: 1.10 -> 1.11 swedish/News/weekly/2005/17/index.wml: 1.7 -> 1.8 swedish/News/weekly/2005/19/index.wml: 1.9 -> 1.10 swedish/News/weekly/2005/20/index.wml: 1.10 -> 1.11 swedish/News/weekly/2005/24/index.wml: 1.6 -> 1.7 swedish/News/weekly/2005/29/index.wml: 1.6 -> 1.7 swedish/News/weekly/2005/31/index.wml: 1.10 -> 1.11 ukrainian/News/weekly/2005/29/index.wml: 1.3 -> 1.4 ukrainian/News/weekly/2005/31/index.wml: 1.10 -> 1.11
* Convert some more files to UTF-8Paul Wise2016-11-051-2/+2
| | | | | | | | | | | | | CVS version numbers Perl/Locale/Language.pm: 1.2 -> 1.3 hungarian/News/1999/19991012.title: 1.1 -> 1.2 hungarian/News/1999/19991020.title: 1.1 -> 1.2 hungarian/News/1999/19991206.title: 1.1 -> 1.2 hungarian/News/1999/19991215.title: 1.1 -> 1.2 hungarian/News/1999/19991217.title: 1.1 -> 1.2 hungarian/News/2000/20000116.title: 1.1 -> 1.2 hungarian/News/2000/20000211.title: 1.1 -> 1.2
* bot enable for Dutch tooDavid Prévot2012-08-211-2/+1
| | | | | | CVS version numbers Perl/Debian/L10n/Db.pm: 1.7 -> 1.8
* Activate Turkish tracking backDavid Prévot2012-02-121-2/+1
| | | | | | CVS version numbers Perl/Debian/L10n/Db.pm: 1.6 -> 1.7
* Handle i18n bot for IndonesianDavid Prévot2012-02-041-0/+1
| | | | | | CVS version numbers Perl/Debian/L10n/Db.pm: 1.5 -> 1.6
* Activate Danish and ItalianDavid Prévot2012-01-181-0/+2
| | | | | | CVS version numbers Perl/Debian/L10n/Db.pm: 1.4 -> 1.5
* Share %LanguageListDavid Prévot2011-12-251-0/+28
| | | | | | | CVS version numbers Perl/Debian/L10n/Db.pm: 1.3 -> 1.4 english/international/l10n/scripts/gen-files.pl: 1.82 -> 1.83

© 2014-2024 Faster IT GmbH | imprint | privacy policy