Browse Source

Remove typos

Fixes #1021
master
Nitish Rathi 12 years ago
parent
commit
4cdea01a57
1 changed files with 11 additions and 14 deletions
  1. 11
    14
      docs/source/releases/v0.6.rst

+ 11
- 14
docs/source/releases/v0.6.rst View File

25
 
25
 
26
 The biggest change in Oscar 0.6 is the reworking of `pricing and availability`_, which 
26
 The biggest change in Oscar 0.6 is the reworking of `pricing and availability`_, which 
27
 builds on top of the change to allow `multiple stockrecords per product`_.  The
27
 builds on top of the change to allow `multiple stockrecords per product`_.  The
28
-charge is largely backwards compatible with the old system of "partner
28
+change is largely backwards compatible with the old system of "partner
29
 wrappers" but it is recommended to upgrade to the new system.  Support for
29
 wrappers" but it is recommended to upgrade to the new system.  Support for
30
 partner wrappers will be removed for Oscar 0.7.
30
 partner wrappers will be removed for Oscar 0.7.
31
 
31
 
133
 Payment models have abstract versions
133
 Payment models have abstract versions
134
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
134
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
135
 
135
 
136
-The :doc:`payment models </ref/apps/payment>` have been split into abstract- and
136
+The :doc:`payment models </ref/apps/payment>` have been split into abstract and
137
 concrete versions.  This brings them inline with other Oscar apps and allows
137
 concrete versions.  This brings them inline with other Oscar apps and allows
138
 them to be customised.
138
 them to be customised.
139
 
139
 
272
 
272
 
273
 * The ``handle_payment`` method in
273
 * The ``handle_payment`` method in
274
   :class:`~oscar.apps.checkout.views.PaymentDetailsView` now accepts a
274
   :class:`~oscar.apps.checkout.views.PaymentDetailsView` now accepts a
275
-  :class:`~oscar.core.prices.Price`` instance instead of a Decimal.
275
+  :class:`~oscar.core.prices.Price` instance instead of a Decimal.
276
 
276
 
277
 Signature changes
277
 Signature changes
278
 ~~~~~~~~~~~~~~~~~
278
 ~~~~~~~~~~~~~~~~~
285
 * The :class:`oscar.apps.customer.forms.EmailAuthenticationForm` form needs to
285
 * The :class:`oscar.apps.customer.forms.EmailAuthenticationForm` form needs to
286
   be instantated with a host name so prevent redirects to external sites.
286
   be instantated with a host name so prevent redirects to external sites.
287
 
287
 
288
-* The :class:`oscar.apps.customer.forms.EmailAuthenticationForm` form needs to
289
-  be instantated with a host name so prevent redirects to external sites.
290
-
291
 * The two product review forms, ``SignedInUserProductReviewForm`` and
288
 * The two product review forms, ``SignedInUserProductReviewForm`` and
292
   ``AnonymousUserProductReviewForm``, have been replaced by a new
289
   ``AnonymousUserProductReviewForm``, have been replaced by a new
293
-  :class:`oscar.apps.catalogue.reviews.forms.ProductReviewForm``.
290
+  :class:`oscar.apps.catalogue.reviews.forms.ProductReviewForm`.
294
 
291
 
295
 * 3 properties have been removed from
292
 * 3 properties have been removed from
296
   :class:`oscar.apps.catalogue.abstract_models.AbstractProductImage` as they
293
   :class:`oscar.apps.catalogue.abstract_models.AbstractProductImage` as they
334
 Several properties of the basket ``Line`` model have been renamed:
331
 Several properties of the basket ``Line`` model have been renamed:
335
 
332
 
336
 * ``Line.line_price_excl_tax_and_discounts`` has been renamed to 
333
 * ``Line.line_price_excl_tax_and_discounts`` has been renamed to 
337
-  ``Line.line_price_exlc_tax_incl_discounts``.
334
+  ``Line.line_price_excl_tax_incl_discounts``.
338
 
335
 
339
 * ``Line.line_price_incl_tax_and_discounts`` has been renamed to 
336
 * ``Line.line_price_incl_tax_and_discounts`` has been renamed to 
340
-  ``Line.line_price_inlc_tax_incl_discounts``.
337
+  ``Line.line_price_incl_tax_incl_discounts``.
341
 
338
 
342
 Address model changes
339
 Address model changes
343
 ~~~~~~~~~~~~~~~~~~~~~
340
 ~~~~~~~~~~~~~~~~~~~~~
456
 Upgrading notes
453
 Upgrading notes
457
 ===============
454
 ===============
458
 
455
 
459
-* Alternative product class templates now use ``slug` field instead of
456
+* Alternative product class templates now use ``slug`` field instead of
460
   ``name.lower()`` to determine their filename.  If you have templates for
457
   ``name.lower()`` to determine their filename.  If you have templates for
461
   specific product classes, please update your filenames accordingly
458
   specific product classes, please update your filenames accordingly
462
 
459
 
473
 
470
 
474
 Payment app:
471
 Payment app:
475
 
472
 
476
-* The `balance` method on the source object is not a property not a method.
473
+* The `balance` method on the source object is now a property not a method.
477
 
474
 
478
 URLs
475
 URLs
479
 ~~~~
476
 ~~~~
591
 
588
 
592
 All the above properties and methods have effectively been moved to the availability and pricing
589
 All the above properties and methods have effectively been moved to the availability and pricing
593
 policies that a strategy class is responsible for loading.  To upgrade your
590
 policies that a strategy class is responsible for loading.  To upgrade your
594
-codebase, replcae your partner wrapper classes with equivalent 
591
+codebase, replace your partner wrapper classes with equivalent 
595
 :doc:`availability and pricing policies </topics/prices_and_availability>`.
592
 :doc:`availability and pricing policies </topics/prices_and_availability>`.
596
 
593
 
597
 Basket
594
 Basket
612
     basket = models.Basket.objects.get(id=1)
609
     basket = models.Basket.objects.get(id=1)
613
     basket.strategy = request.strategy
610
     basket.strategy = request.strategy
614
 
611
 
615
-With an assigned strategy class, a basket will raise a ``RuntimeError`` when
612
+Without an assigned strategy class, a basket will raise a ``RuntimeError`` when
616
 attempting to calculate totals.
613
 attempting to calculate totals.
617
 
614
 
618
 The way a product is added to a basket has also been changed as a ``StockInfo``
615
 The way a product is added to a basket has also been changed as a ``StockInfo``
619
-instance is also required.  
616
+instance is also required.
620
 
617
 
621
 .. code-block:: python
618
 .. code-block:: python
622
 
619
 

Loading…
Cancel
Save