Re: Reverting EMAIL_SERVER settings, server will crash systematically.

2014-02-26 Thread Nicolas Comet
Hi there, I finally fixed it with this command :

*$ rb-site manage /var/www/reviewboard/ set-siteconfig -- 
--key=mail_host_password --value=*

 I hope it can help someone in case of a wrong character in an admin field, 
one day, when the admin site becomes unavailable.

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Potential issue in Review Board 2.0 beta3

2014-02-26 Thread timc
Hi Chris,

Thanks for your reply!

On Tuesday, 25 February 2014 20:54:13 UTC, Christian Hammond wrote:


 What was the repro case? Just going to a URL?


Yup, attempting to access the root Review Board page for the first time.
 


 Try this and see what happens:

 $ rb-site manage /path/to/site shell
  from djblets.siteconfig.models import SiteConfiguration
  SiteConfiguration.objects.get_current()

 See if that raises an exception.


It does :)

 Python 2.7.3 (default, Jan  2 2013, 16:53:07) 
[GCC 4.7.2] on linux2
Type help, copyright, credits or license for more information.
(InteractiveConsole)
 from djblets.siteconfig.models import SiteConfiguration
 SiteConfiguration.objects.get_current()
Traceback (most recent call last):
  File console, line 1, in module
  File 
/usr/local/lib/python2.7/dist-packages/Djblets-0.8beta2-py2.7.egg/djblets/siteconfig/managers.py,
 
line 50, in get_current
site = Site.objects.get_current()
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/contrib/sites/models.py,
 
line 47, in get_current
current_site = self.get(pk=sid)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/manager.py,
 
line 151, in get
return self.get_queryset().get(*args, **kwargs)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/query.py,
 
line 301, in get
num = len(clone)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/query.py,
 
line 77, in __len__
self._fetch_all()
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/query.py,
 
line 854, in _fetch_all
self._result_cache = list(self.iterator())
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/query.py,
 
line 220, in iterator
for row in compiler.results_iter():
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/sql/compiler.py,
 
line 709, in results_iter
for rows in self.execute_sql(MULTI):
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/models/sql/compiler.py,
 
line 782, in execute_sql
cursor.execute(sql, params)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/backends/util.py,
 
line 69, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/backends/util.py,
 
line 53, in execute
return self.cursor.execute(sql, params)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/utils.py,
 
line 99, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/backends/util.py,
 
line 53, in execute
return self.cursor.execute(sql, params)
  File 
/usr/local/lib/python2.7/dist-packages/Django-1.6.2-py2.7.egg/django/db/backends/sqlite3/base.py,
 
line 450, in execute
return Database.Cursor.execute(self, query, params)
OperationalError: no such table: django_site

No such table... :/

I created another site and had a look at the logging: 

Creating database ... Creating tables ...
Creating table django_admin_log
Creating table auth_permission
Creating table auth_group_permissions
Creating table auth_group
Creating table auth_user_groups
Creating table auth_user_user_permissions
Creating table auth_user
Creating table django_content_type
Creating table django_site
Creating table django_session
...

Looks ok at that end... Using the sqlite3 command line (.tables / .schema), 
I can see that the 'reviewboard' db file does in fact contain a useful 
'django_site' table:

sqlite select * from django_site;
1|[MY_SERVER_NAME]|example.com


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


2.0 Beta3 bugs

2014-02-26 Thread Allen
I am wondering is this a good place to report bugs? If you guys prefer 
somewhere else, please let me know! I just figured out two bugs with the 
2.0 Beta3.
1. A user can not change his profiles. After I click on the save Profile, 
all changes gone.
2. When I play with the diff between different revisions, sometimes a 404 
page not found error came out after I click on the download diff. And 
when that happened, the download diff button disappeared after I went 
back.
(After a few tests, I believe the 404 page not found error only happens 
when I move the left button.)

That`s it so far! Thanks for you guys` contribution!

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reviewboard 1.7.6 and Adding Comments to a file Attachment

2014-02-26 Thread Chad Peterson
Hello,

We have recently started running 1.7.6 and have found that only the 
original author and anyone with the [ Request | Request Review | Can Change 
Review Request] permission are allowed to add comments to an attachment 
(we're reviewing a word doc).

Is this intended behavior? In other words, is it envisioned that only the 
author of the review request is supposed to be able to add comments to an 
attachment?

Thanks!
-Chad




-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Missing an LDAP Bind DN?

2014-02-26 Thread Tamer Afify
Not sure why network administrators do such a variation of ou users, but it 
seems to be quite common. I'll appreciate if that feature would be 
available.

Thanks,

On Tuesday, February 25, 2014 6:51:24 AM UTC-6, Stephen Gallagher wrote:

 On 02/24/2014 08:51 PM, Tamer Afify wrote: 
  Thanks Christian  Stephen for fixing this. It really made me hit my 
  head for a while. 
  
  My corporate un-organized ldap directory shows that my reviewboard users 
  are scattered under different OUs. How can I configure authentication to 
  allow all my users to login? 
  
  i.e. one user is 
  cn=ford,ou=company Users,ou=location,dc=domain1,dc=domain2 
  
  while another is   
  cn=tesla,ou=Users,ou=location,dc=domain1,dc=domain2 
  
  currently I set my LDAP Base DN: to tesla user OU and if any user from 
  Ford OU login I get the following warning in reviewboards.log and fails 
  to login 
  WARNING -  - LDAP error: The specified object does not exist in the 
  Directory: sAMAccountName=ford 
  
  Also it would be great if you document for us what should be in 
  Anonymous User Mask/Password? 
  
  I appreciate your support and can't wait to read your reply 
  

 That's a specific issue I fixed with the new patches. It sounds like we 
 may want to backport that for the 1.7.x series. 

 Christian, is that a patch you'd be willing to accept? I know 1.7.x is 
 kind of winding down now. 


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


File Attachment Comments - Intended Behavior

2014-02-26 Thread Chad Peterson
Hello all,

We're currently running RB 1.7.6 and we're seeing that the only people who 
can add comments to a file attachment are super users and the person who 
created the review request. Our group thinks that having reviewers adding 
comments (and issues) to an attachment would be useful.

After some digging, adding comments to an attachment appears tied to 
permission [reviews | review request | Can edit review request].

It would seem that the intent was to only all reviews on attachments, and 
not comments.  Are we simply wanting to use RB in an unintended way? Or is 
there a bug or changed behavior in later RB releases?

Many thanks in advance,
-Chad

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


review button and permissions

2014-02-26 Thread Segev Mashraky
Hi,
I am using Review Board 1.5.5

 

I created 3 users:

1.   user with review permissions.

2.   Simple user for reviews creation.

3.   Another simple user

 

I don’t understand why the button “review” is enabled for the all users.
I expect that only user with review permissions will have the option to do 
“review” and “ship-it”
what's the idea of review permissions? what's purpose?
 

How can I disable the “review” button on simple users?

 
Let me know if I wrong.
Thanks.

-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: File Attachment Comments - Intended Behavior

2014-02-26 Thread Christian Hammond
Hi Chad,

That permission doesn't impact the ability to comment at all. Are you sure
the review request's draft is published?

1.7.6 is also very old. It's possible there was some bug that has since
been fixed. Certainly, the behavior you describe is not how it's supposed
to be.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
Beanbag, Inc. - http://www.beanbaginc.com


On Tue, Feb 25, 2014 at 12:43 PM, Chad Peterson
chad.m.peter...@gmail.comwrote:

 Hello all,

 We're currently running RB 1.7.6 and we're seeing that the only people who
 can add comments to a file attachment are super users and the person who
 created the review request. Our group thinks that having reviewers adding
 comments (and issues) to an attachment would be useful.

 After some digging, adding comments to an attachment appears tied to
 permission [reviews | review request | Can edit review request].

 It would seem that the intent was to only all reviews on attachments,
 and not comments.  Are we simply wanting to use RB in an unintended way? Or
 is there a bug or changed behavior in later RB releases?

 Many thanks in advance,
 -Chad

 --
 Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
 ---
 Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
 ---
 Happy user? Let us know at http://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups
 reviewboard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: review button and permissions

2014-02-26 Thread Christian Hammond
Hi,

We don't have a concept of review permissions. You may be seeing some of
the permissions Django provides, but those are only for staff-level users
who need access to the admin database viewer, and controls what they're
allowed to modify in there. Review Board itself doesn't have a concept of
review permissions, as any user is able to review any other user's code.

1.5.5 is also beyond ancient, so we can't provide any real support for it
anymore.

Christian

-- 
Christian Hammond - chip...@chipx86.com
Review Board - http://www.reviewboard.org
Beanbag, Inc. - http://www.beanbaginc.com


On Wed, Feb 26, 2014 at 4:25 AM, Segev Mashraky mashra...@gmail.com wrote:

 Hi,
 I am using Review Board 1.5.5



 I created 3 users:

 1.   user with review permissions.

 2.   Simple user for reviews creation.

 3.   Another simple user



 I don’t understand why the button “review” is enabled for the all users.
 I expect that only user with review permissions will have the option to do
 “review” and “ship-it”
 what's the idea of review permissions? what's purpose?


 How can I disable the “review” button on simple users?


 Let me know if I wrong.
 Thanks.

 --
 Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
 ---
 Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
 ---
 Happy user? Let us know at http://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups
 reviewboard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: 2.0 Beta3 bugs

2014-02-26 Thread David Trowbridge
Can you file these on the google code bug tracker?

Thanks!
-David


On Wed, Feb 26, 2014 at 6:55 AM, Allen zhangsan8...@gmail.com wrote:

 I am wondering is this a good place to report bugs? If you guys prefer
 somewhere else, please let me know! I just figured out two bugs with the
 2.0 Beta3.
 1. A user can not change his profiles. After I click on the save
 Profile, all changes gone.
 2. When I play with the diff between different revisions, sometimes a 404
 page not found error came out after I click on the download diff. And
 when that happened, the download diff button disappeared after I went
 back.
 (After a few tests, I believe the 404 page not found error only happens
 when I move the left button.)

 That`s it so far! Thanks for you guys` contribution!

 --
 Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
 ---
 Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
 ---
 Happy user? Let us know at http://www.reviewboard.org/users/
 ---
 You received this message because you are subscribed to the Google Groups
 reviewboard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to reviewboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: File Attachment Comments - Intended Behavior

2014-02-26 Thread Chad Peterson
Yeah, it's on a published review request.  
 
We see the comment button next to the attachment, but when we click it, 
nothing happens. Unless you're a Superuser, created the request 
yourself, or have the Can Edit review request permission set.
 
 Honestly, i would have expected [ reviews | file attachment comment | Can 
Add file attachment comment] to have some effect, but it didn't make a 
difference.
 
The behavior seemed completely odd to me too.  We'll see if we can get to a 
newer version of ReviewBoard. I'll leave out the rant of how we just got 
this new version... 
 
Cheers for the prompt feedback though. If I learn any more, I'll be sure to 
report back.


On Wednesday, February 26, 2014 2:11:11 PM UTC-6, Christian Hammond wrote:

 Hi Chad, 

 That permission doesn't impact the ability to comment at all. Are you sure 
 the review request's draft is published?

 1.7.6 is also very old. It's possible there was some bug that has since 
 been fixed. Certainly, the behavior you describe is not how it's supposed 
 to be.

 Christian

  -- 
 Christian Hammond - chi...@chipx86.com javascript:
 Review Board - http://www.reviewboard.org 
 Beanbag, Inc. - http://www.beanbaginc.com


 On Tue, Feb 25, 2014 at 12:43 PM, Chad Peterson 
 chad.m@gmail.comjavascript:
  wrote:

 Hello all,

 We're currently running RB 1.7.6 and we're seeing that the only people 
 who can add comments to a file attachment are super users and the person 
 who created the review request. Our group thinks that having reviewers 
 adding comments (and issues) to an attachment would be useful.

 After some digging, adding comments to an attachment appears tied to 
 permission [reviews | review request | Can edit review request].

 It would seem that the intent was to only all reviews on attachments, 
 and not comments.  Are we simply wanting to use RB in an unintended way? Or 
 is there a bug or changed behavior in later RB releases?

 Many thanks in advance,
 -Chad

 -- 
 Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
 ---
 Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
 ---
 Happy user? Let us know at http://www.reviewboard.org/users/
 --- 
 You received this message because you are subscribed to the Google Groups 
 reviewboard group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to reviewboard...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Get the Review Board Power Pack at http://www.reviewboard.org/powerpack/
---
Sign up for Review Board hosting at RBCommons: https://rbcommons.com/
---
Happy user? Let us know at http://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
reviewboard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3266 in reviewboard: Wrong URLs in many places which result in 404 pages

2014-02-26 Thread reviewboard


Comment #2 on issue 3266 by akisk...@gmail.com: Wrong URLs in many places  
which result in 404 pages

http://code.google.com/p/reviewboard/issues/detail?id=3266

Thank you very much for your feedback. I'll try with different/older  
Djblets versions. I know that the RB version we are using is quite old but  
right now, but unforunately upgrading is not an option.


I'll let you know about the outcome.

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3265 in reviewboard: reviewboard with apache mod_proxy

2014-02-26 Thread reviewboard


Comment #2 on issue 3265 by f...@esss.com.br: reviewboard with apache  
mod_proxy

http://code.google.com/p/reviewboard/issues/detail?id=3265

weird!  but it works!
Thanks for your help

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Issue 3267 in reviewboard: The 'visible' checkbox in review groups does not do anything

2014-02-26 Thread reviewboard

Status: New
Owner: 
Labels: Type-Defect Priority-Medium

New issue 3267 by hackagad...@gmail.com: The 'visible' checkbox in review  
groups does not do anything

http://code.google.com/p/reviewboard/issues/detail?id=3267

*** READ THIS BEFORE POSTING!
***
*** You must complete this form in its entirety, or your bug report will be
rejected.
***
*** For customer support, please post to reviewbo...@googlegroups.com
***
*** If you have a patch, please submit it to
http://reviews.reviewboard.org/
***
*** Do not post confidential information in this bug report!


What version are you running?
1.7.4

What's the URL of the page containing the problem?
/reviewboard/r/reviewid

What steps will reproduce the problem?
1. In the Admin dashboard, create a review group, check the 'Visible'  
checkbox and check the 'Invite only' checkbox

2. Create a review assigned to the review group created in step 1.
3. Log out
4. Select the 'All Review Requests' link
5. Select the review that was created in step 2.

What is the expected output? What do you see instead?
The review should have been displayed, instead the following was displayed:
---
You don't have access to this review request.

This review request is private. You must be a requested reviewer, either  
directly or on a requested group, and have permission to access the  
repository in order to view this review request.

---

What operating system are you using? What browser?
Server OS: FreeBSD 10.0

Client OS: MacOS X Mavericks
Browsers:
Safari 7.0.1
Firefox 27.0.1

Please provide any additional information below.
It seems that reviewboard/reviews/models.py fetches the 'visible' boolean  
value, but does not use it in the is_accessible_by() method.


The following attached patch seems to fix the issue.


Attachments:
fix-visibility.patch  527 bytes

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 2522 in reviewboard: Hide inaccessible review requests from All review requests list

2014-02-26 Thread reviewboard


Comment #6 on issue 2522 by chip...@gmail.com: Hide inaccessible review  
requests from All review requests list

http://code.google.com/p/reviewboard/issues/detail?id=2522

Issue 3267 has been merged into this issue.

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3267 in reviewboard: The 'visible' checkbox in review groups does not do anything

2014-02-26 Thread reviewboard

Updates:
Status: Duplicate
Mergedinto: 2522

Comment #1 on issue 3267 by chip...@gmail.com: The 'visible' checkbox in  
review groups does not do anything

http://code.google.com/p/reviewboard/issues/detail?id=3267

Your version is very old, and this bug has been fixed for a while. If you  
upgrade, you'll find this all works correctly.


--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3265 in reviewboard: reviewboard with apache mod_proxy

2014-02-26 Thread reviewboard

Updates:
Status: SetupIssue

Comment #3 on issue 3265 by trowb...@gmail.com: reviewboard with apache  
mod_proxy

http://code.google.com/p/reviewboard/issues/detail?id=3265

(No comment was entered for this change.)

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Issue 3261 in reviewboard: 2.0 beta 3 regression: ordinal not in range(128) when loading review with unicode characters

2014-02-26 Thread reviewboard

Updates:
Status: Fixed

Comment #2 on issue 3261 by trowb...@gmail.com: 2.0 beta 3  
regression: ordinal not in range(128) when loading review with unicode  
characters

http://code.google.com/p/reviewboard/issues/detail?id=3261

Fixed in release-2.0.x (07aad8d). Thanks!

--
You received this message because this project is configured to send all  
issue notifications to this address.

You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
reviewboard-issues group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard-issues+unsubscr...@googlegroups.com.
To post to this group, send email to reviewboard-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/reviewboard-issues.
For more options, visit https://groups.google.com/groups/opt_out.