Skip to content

Bunch of PureMVC improvements and bug fixings #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 49 commits into from
Oct 19, 2012
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
3b0c785
Python style 'if' statements
Sep 25, 2012
5a593ef
Use 'is' instead of the 'equal to' operator
Sep 25, 2012
6e1f0b7
dict.get() returns 'None' by default
Sep 25, 2012
a22474a
Fixed typos
Sep 25, 2012
f73e255
Use "is" instead of "=" operator when comparing to None
Oct 10, 2012
9fe61c8
dict.get() returns None by default if no key was found
Oct 10, 2012
466dc5a
Fixed typo
Oct 10, 2012
be17258
Ignore .pyc files
Oct 10, 2012
564dbfd
Converted tabs into spaces and removed trailing spaces
Oct 10, 2012
a1aa426
Added src folder to Python search paths
Oct 10, 2012
978b687
Converted tabs into spaces and removed trailing spaces
Oct 10, 2012
beec2ec
Fixed 'test' task in fabric file
Oct 10, 2012
2a2daab
Converted tabs into spaces and removed trailing spaces
Oct 10, 2012
6031510
Missing inheritance from INotifier for facade, command and mediator i…
Oct 10, 2012
6a7bf82
Raise a NotImplementedError(self) for verbose exception
Oct 10, 2012
244ce6c
Fixed typo in method names
Oct 10, 2012
a042308
Fixed typo
Oct 10, 2012
42eedc4
Added missing method in facade's interface
Oct 10, 2012
a55ebd4
Avoid name collision with built-in types
Oct 13, 2012
5aa0abc
Added missing IVewi.removeObserver() method
Oct 13, 2012
43173da
Fixed typo
Oct 13, 2012
8f22b90
Replaces tabs with spaces and removed trailing spaces
Oct 13, 2012
66ffbea
No need to define a class level variable
Oct 13, 2012
2f962fd
Fixed typo
Oct 13, 2012
7013765
Repalces tabs and removed trialing spaces
Oct 13, 2012
92cfa46
Fixed bug in MacroCommand.execute() where the list of commands was co…
Oct 13, 2012
a7c107b
Converted tabs and removed trailing spaces
Oct 13, 2012
70137d4
Fixed name clash with built-in types
Oct 13, 2012
61ebea7
Fixed typos
Oct 13, 2012
dca24e9
Refactored Facade.removeProxy() method
Oct 13, 2012
ab88a97
Converted tabs and removed trailing spaces
Oct 13, 2012
1e0965c
Removed useless class level attributes
Oct 13, 2012
717a133
Converted tabs and removed trailing spaces
Oct 13, 2012
7500e9e
Fixed name clashes with built-in types
Oct 13, 2012
1f573bb
Always use instance attributes instead of class level attributes
Oct 13, 2012
a1faed5
Removed useless class level attributes
Oct 13, 2012
0521768
Use the view component's setter method
Oct 13, 2012
66b1e47
Set proxy data anyway because some objects (like an empty string) can…
Oct 13, 2012
048a5d4
Fixed multi command's execute method
Oct 13, 2012
c2c7e5f
Refactored unit test primer to auto-load unit tests
Oct 13, 2012
445028b
Fixed unit test names to be detected by the unit test auto-loader
Oct 13, 2012
2f4de9a
Removed unused imports
Oct 13, 2012
541b972
Fixed name clashes with built-in types
Oct 13, 2012
68a6e48
Revert "Fixed name clashes with built-in types"
Oct 13, 2012
bdca121
Fxed name clashes with built-in types
Oct 13, 2012
77da670
Added verbose switch to easily detect doc string's errors
Oct 13, 2012
c685375
Fixed doc string
Oct 13, 2012
df90b7c
Documentation updated
Oct 13, 2012
bb6ac2d
Call setData() only if proxy's data is not null
Oct 19, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed typo in method names
  • Loading branch information
Daniele Esposti committed Oct 10, 2012
commit 244ce6c034afa13b2b2f58259605c8e5af6e5034
4 changes: 2 additions & 2 deletions src/puremvc/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def registerProxy(self, proxy):
"""
raise NotImplementedError(self)

def retreieveProxy(self, proxyName):
def retrieveProxy(self, proxyName):
"""
Retrieve a C{IProxy} from the C{Model} by name.

Expand Down Expand Up @@ -218,7 +218,7 @@ def registerMediator(self, mediator):
"""
raise NotImplementedError(self)

def retreieveMediator(self, mediatorName):
def retrieveMediator(self, mediatorName):
"""
Retrieve an C{IMediator} instance from the C{View}.

Expand Down