[Pkg-mozext-commits] [perspectives-extension] branch upstream updated (c0770ed -> d7b221f)

David Prévot taffit at moszumanska.debian.org
Sat Jun 6 02:55:31 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a change to branch upstream
in repository perspectives-extension.

      from  c0770ed   Imported Upstream version 4.6
       new  8509886   prefs - remove unused pref
       new  fa7f39c   CHANGELOG - Fill in change history from previous versions
       new  73feb1e   checkloc - Update script to newest version from main depo
       new  2632577   localization - Fix string substitution in zh-CN
       new  171b291   About - Add vertical space
       new  df66de2   Localization - Remove 'Firefox' from string
       new  5601e0b   Pers_keypress - Convert == to ===
       new  35152c9   Help - Add Perspectives logo image to page
       new  174daf1   licenses, MAKEFILE - Move checkloc to extlib folder and note license
       new  14f5265   LOCALIZATION - Convert file to markdown formatting
       new  f3551c7   LOCALIZATION - Rename file to 'TRANSLATING'
       new  d4082e4   README - Copyedit
       new  e9dd2a1   Pers_statusbar - Unlock the 'About' dialog
       new  523e991   CHANGELOG - Add new changes for next version
       new  fb38b1a   Merge pull request #150 from daveschaefer/4.6_fixbugs_part_one
       new  6268ae2   Unit tests - Fix test data
       new  26ea40c   Unit tests - Add test setup function
       new  8840617   Unit tests - Add setup asserts for several other tests
       new  c30a421   Unit tests - Add tests for Pers_client_policy.inconsistency_check()
       new  032b909   Pers_client_policy - Add sanity check so max_timespan cannot be larger than check length
       new  2ed0111   Unit tests - Add more sanity checks to 'weakly seen' data; use variables to keep data consistent
       new  99fe852   Unit tests - Rename variable
       new  0b92492   Unit tests - Fix 'weakly seen' test
       new  7986070   Unit tests - Replace multiple time calls with existing time variable
       new  25a6b90   Pers_client_policy - Copyedit function comment
       new  40ec8fc   CHANGELOG - Add change notes
       new  aa327b9   Merge pull request #155 from daveschaefer/hacking_4.6_fixbugs_part_two
       new  272483b   About dialog - Add link to visit the translating instructions
       new  696df42   preferences_dialog - Add min and max constraints on the quorum threshold
       new  98a285e   Merge pull request #156 from daveschaefer/pref_gui_input_validation
       new  101e328   CHANGELOG - Add notes from recent pull request
       new  5153fbe   Translation to Russian language[ru] by Alexey Vesnin [serxis--at--gmail.com]
       new  363db4a   checkloc - Update checkloc library to v2.1
       new  88dafaa   .gitignore - ignore .pyc files
       new  519b094   CHANGELOG - Add note for Russian translation
       new  bd81a3c   update_howto - Remove tag note
       new  59705ea   install.rdf - Increase compatability versions
       new  df06e4e   install.rdf - Increase to version 4.6.1 for release!
       new  cd9f822   CHANGELOG - minor copyedit
       new  e79f17b   Merge pull request #164 from daveschaefer/add_russian_loc
       new  d7b221f   Imported Upstream version 4.6.1

The 41 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                     |   2 +-
 CHANGELOG                                      |  98 +++-
 LOCALIZATION                                   |  86 ---
 Makefile                                       |   2 +-
 README.md                                      |  10 +-
 TRANSLATING.md                                 |  82 +++
 licenses/LicensesREADME.txt                    |  13 +-
 plugin/chrome.manifest                         |   1 +
 plugin/chrome/content/about_dialog.xul         |   8 +-
 plugin/chrome/content/client_policy.js         |  16 +-
 plugin/chrome/content/common.js                |   2 +-
 plugin/chrome/content/credits/translators.txt  |   3 +-
 plugin/chrome/content/help.xhtml               |   2 +-
 plugin/chrome/content/preferences_dialog.xul   |   3 +-
 plugin/chrome/content/statusbar.js             |   4 -
 plugin/chrome/content/statusbar.xul            |   9 +-
 plugin/chrome/locale/de/dialogs.dtd            |   3 +-
 plugin/chrome/locale/en-US/dialogs.dtd         |   3 +-
 plugin/chrome/locale/es-MX/dialogs.dtd         |   3 +-
 plugin/chrome/locale/fi/dialogs.dtd            |   3 +-
 plugin/chrome/locale/fr/dialogs.dtd            |   3 +-
 plugin/chrome/locale/nl/dialogs.dtd            |   3 +-
 plugin/chrome/locale/pl/dialogs.dtd            |   3 +-
 plugin/chrome/locale/ru/amodetails.properties  |  11 +
 plugin/chrome/locale/ru/dialogs.dtd            |  68 +++
 plugin/chrome/locale/ru/help.dtd               |  41 ++
 plugin/chrome/locale/ru/notaries.properties    |  79 +++
 plugin/chrome/locale/ru/report.properties      |   8 +
 plugin/chrome/locale/ru/results.properties     |   9 +
 plugin/chrome/locale/ru/whitelist.properties   |   4 +
 plugin/chrome/locale/zh-CN/dialogs.dtd         |   3 +-
 plugin/chrome/locale/zh-CN/notaries.properties |   2 +-
 plugin/defaults/preferences/prefs.js           |   1 -
 plugin/install.rdf                             |  16 +-
 test/checkloc.py                               | 332 -----------
 test/extlib/checkloc.py                        | 743 +++++++++++++++++++++++++
 test/extlib/localecodes.py                     | 182 ++++++
 test/test.html                                 | 194 +++++--
 update_howto.txt                               |   3 +-
 39 files changed, 1559 insertions(+), 499 deletions(-)
 delete mode 100644 LOCALIZATION
 create mode 100644 TRANSLATING.md
 create mode 100644 plugin/chrome/locale/ru/amodetails.properties
 create mode 100644 plugin/chrome/locale/ru/dialogs.dtd
 create mode 100644 plugin/chrome/locale/ru/help.dtd
 create mode 100644 plugin/chrome/locale/ru/notaries.properties
 create mode 100644 plugin/chrome/locale/ru/report.properties
 create mode 100644 plugin/chrome/locale/ru/results.properties
 create mode 100644 plugin/chrome/locale/ru/whitelist.properties
 delete mode 100644 test/checkloc.py
 create mode 100644 test/extlib/checkloc.py
 create mode 100644 test/extlib/localecodes.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/perspectives-extension.git



More information about the Pkg-mozext-commits mailing list