small comment http://codereview.appspot.com/6459066/diff/4001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6459066/diff/4001/MoinMoin/apps/frontend/views.py#newcode1014 MoinMoin/apps/frontend/views.py:1014: pass with the doc string you don't ...
12 years, 8 months ago
(2012-08-09 21:45:05 UTC)
#1
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py#newcode26 MoinMoin/apps/frontend/views.py:26: pass and IF you do something like this, you ...
12 years, 7 months ago
(2012-08-11 11:36:05 UTC)
#5
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py#newcode26 MoinMoin/apps/frontend/views.py:26: pass On 2012/08/11 11:36:05, ThomasJWaldmann wrote: > and IF ...
12 years, 7 months ago
(2012-08-11 13:07:34 UTC)
#6
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py
File MoinMoin/apps/frontend/views.py (right):
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:26: pass
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> and IF you do something like this, you shouldn't just "pass" there, but do
> something alternative, like setting Counter = None (if it is optional, so you
> can check for "Counter is None" later) or doing some other import.
Counter is used in one place only, which is now inactive. But you are right, I
will fix that.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:372: elif type == SEARCH_BRANCHES_HEADS:
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> rather name this search_type. type() is a builtin.
type() is not used anywhere in that function, that's why I named it this way. It
is named so in other places, I guess I chould fix it there too.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:383: # branches and should be removed after the
release
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> is this workaround still needed?
For me only. It exists because there is an index without BRANCH_SRC, which left
from an old index. I will remove it a bit later, after writing tests.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:397: # 1. Get branch docs by name
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> and also it should be made in a way so it is testable.
>
> it is complex enough to consider it broken as long as it is not tested.
tests in the next patchset
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:419: revids_to_follow.append(revid)
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> you are aware that you are adding/appending a LIST here?
No, I am adding/appending a unicode.
ridrf = revids_to_follow.pop()
parentids = all_revs[ridtf].get(PARENTID, [])
for revid in parentids:
add/append(revid)
Though I should probably use .update here.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:424: # 4. Remove all revs which are parents for
>1 revs
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> not sure if that makes sense. if there is a fork in history, you won't know
what
> the "always existing" branch was and what the "new" branch was at the time
when
> it was forked.
> so, for the history before the fork point, you don't know which branch it
> belongs to. it could very well belong to the branch you are currently
searching,
> so you should not get rid of it, right?
That's why it is left unfinished and should not be ran :)
Maybe I should comment the whole thing out? Or raise NotImplemented here? This
type of search is not shown in the dropdown list on +search.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views....
MoinMoin/apps/frontend/views.py:1079: if r['branch'] and r['branch_type'] ==
BRANCH]
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> use constants
I intentionally didn't use constants here to avoid mixing up with branches and
userheads. `revs` in no way connected to either of branches or userheads.
These k:v are set lower (1108) and are set specially for this function.
If you still think constants must be used, please reply, I'll change it.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/constants/keys.py
File MoinMoin/constants/keys.py (right):
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/constants/keys.py#ne...
MoinMoin/constants/keys.py:80: SEARCH_ALL = '6' # all revs
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> if they are numbers, int would be more elegant. you could also use real
strings,
> though.
First I wanted to use ints here, but it seems that `gen.option` in templates
requires option values to be strings. I tried to do something with str(), but no
luck.
Using here something else will also make GET string is browser longer.
Change it to something human-readable anyway?
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/items/__init__.py
File MoinMoin/items/__init__.py (right):
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/items/__init__.py#ne...
MoinMoin/items/__init__.py:219: if arg in ['branch', 'branch_type',
'is_userhead', 'revid']:
On 2012/08/11 11:36:05, ThomasJWaldmann wrote:
> in case you use the same names here as you have as constants, use the
constants.
nope, not the same. These have nothing to do with meta.
http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py File MoinMoin/apps/frontend/views.py (right): http://codereview.appspot.com/6459066/diff/9001/MoinMoin/apps/frontend/views.py#newcode26 MoinMoin/apps/frontend/views.py:26: pass > Counter is used in one place only, ...
12 years, 7 months ago
(2012-08-12 14:19:14 UTC)
#7
Issue 6459066: search + history
Created 12 years, 8 months ago by breton
Modified 12 years, 7 months ago
Reviewers: Reimar Bauer, thomas.j.waldmann_googlemail.com
Base URL:
Comments: 51