Rev 56: Small tweaks including doc fix (#275538). in http://bazaar.launchpad.net/%7Ebzr-upload-devs/bzr-upload/trunk

Vincent Ladeuil v.ladeuil+lp at free.fr
Tue Feb 10 08:41:55 GMT 2009


At http://bazaar.launchpad.net/%7Ebzr-upload-devs/bzr-upload/trunk

------------------------------------------------------------
revno: 56
revision-id: v.ladeuil+lp at free.fr-20090210084152-h73a2mv2n8xuag3q
parent: v.ladeuil+lp at free.fr-20090119092131-6n1dg7pll3klbmv8
committer: Vincent Ladeuil <v.ladeuil+lp at free.fr>
branch nick: trunk
timestamp: Tue 2009-02-10 09:41:52 +0100
message:
  Small tweaks including doc fix (#275538).
  
  * tests/test_upload.py:
  (TransportAdapter._test_permutations): Be more robust against
  local_test_server variants.
  
  * NEWS: 
  Add a NEWS file as in bzr core.
  
  * __init__.py:
  (cmd_upload): Be explicit about changes handled (#275538).
-------------- next part --------------
=== added file 'NEWS'
--- a/NEWS	1970-01-01 00:00:00 +0000
+++ b/NEWS	2009-02-10 08:41:52 +0000
@@ -0,0 +1,31 @@
+--------------------
+bzr-upload Release Notes
+--------------------
+
+.. contents::
+
+IN DEVELOPMENT
+--------------
+
+  COMPATIBILITY BREAKS:
+
+  NEW FEATURES:
+
+    * Remote branches can be used to upload from.
+      (Gary van der Merwe, Vincent Ladeuil)
+
+  IMPROVEMENTS:
+
+  BUG FIXES:
+
+  DOCUMENTATION:
+
+    * Clarify 'changes' definition in online help.
+      (Vincent Ladeuil, #275538)
+
+  API CHANGES:
+
+  TESTING:
+
+  INTERNALS:
+

=== modified file '__init__.py'
--- a/__init__.py	2009-01-19 09:21:31 +0000
+++ b/__init__.py	2009-02-10 08:41:52 +0000
@@ -337,6 +337,8 @@
 
     If no destination is specified use the last one used.
     If no revision is specified upload the changes since the last upload.
+
+    Changes include files added, renamed, modified or removed.
     """
     takes_args = ['location?']
     takes_options = [

=== modified file 'tests/test_upload.py'
--- a/tests/test_upload.py	2009-01-18 18:41:23 +0000
+++ b/tests/test_upload.py	2009-02-10 08:41:52 +0000
@@ -83,7 +83,8 @@
                              'transport_server': test_server.Vsftpd,
                              })
                 result.append(scenario)
-            if test_server.ProftpdFeature().available():
+            from test_server import ProftpdFeature
+            if ProftpdFeature().available():
                 scenario = ('proftpd',
                             {'transport_class': test_server.FtpTransport,
                              'transport_server': test_server.Proftpd,



More information about the bazaar-commits mailing list