Scott Bragg 
								
							 
						 
						
							
							
							
							
								
							
							
								433a99a402 
								
							 
						 
						
							
							
								
								All the migrations seem fixed now  
							
							
							
						 
						
							2016-09-17 15:53:47 +10:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								7b77b9aa29 
								
							 
						 
						
							
							
								
								Drop deprecated url patterns format  
							
							
							
						 
						
							2016-02-27 16:54:42 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								3b635d9cb7 
								
							 
						 
						
							
							
								
								Merge pull request  #120  from appropriatetech/master  
							
							... 
							
							
							
							Python3 compatibility 
							
						 
						
							2016-02-20 17:06:57 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Martey Dodoo 
								
							 
						 
						
							
							
							
							
								
							
							
								a487f78f7e 
								
							 
						 
						
							
							
								
								Make sponsor description default empty string.  
							
							... 
							
							
							
							Set sponsor listing text to an empty string instead of None. If a
sponsor doesn't have a benefit named "Sponsor Description", this will
prevent the text "None" from displaying in the Django template. 
							
						 
						
							2016-01-25 15:17:23 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Mjumbe Wawatu Ukweli 
								
							 
						 
						
							
							
							
							
								
							
							
								47c28439d9 
								
							 
						 
						
							
							
								
								Python3 compatibility  
							
							... 
							
							
							
							Update the StringIO import in symposion.sponsorship.views 
							
						 
						
							2016-01-12 20:39:55 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Didier Raboud 
								
							 
						 
						
							
							
							
							
								
							
							
								b50a42f243 
								
							 
						 
						
							
							
								
								Fix SponsorBenefit __str__ by using self.benefit.type instead of self.benefit_type  
							
							
							
						 
						
							2015-10-26 12:40:22 +01:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								11f697d137 
								
							 
						 
						
							
							
								
								Massively upgrade symposion  
							
							... 
							
							
							
							* Remove markitup (to be replaced with Ace editor)
* Use DUA decorators
* Removed custom signup bits
* Upgraded dependencies
* Added migrations
* Namespaced template locations
* Removed html5parser/sanitizer (for now) - parsing functionality
should be moved out entirely to a hooks
* Replaced ProposalScoreExpression object with a  function that returns
F() expressions 
							
						 
						
							2015-10-16 12:37:35 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								6dd80f9ddb 
								
							 
						 
						
							
							
								
								Fix some flake8 issues  
							
							
							
						 
						
							2015-09-13 21:34:40 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								67433cacb4 
								
							 
						 
						
							
							
								
								Merge branch 'i18n-all' of  https://github.com/miurahr/symposion  into miurahr-i18n-all  
							
							... 
							
							
							
							Conflicts:
	symposion/boxes/models.py
	symposion/conference/models.py
	symposion/schedule/models.py
	symposion/speakers/models.py
	symposion/sponsorship/admin.py
	symposion/sponsorship/models.py
	symposion/teams/models.py 
							
						 
						
							2015-09-08 15:07:24 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								509e275706 
								
							 
						 
						
							
							
								
								Merge branch 'admin_sponsor_benefit' of  https://github.com/miurahr/symposion  into miurahr-admin_sponsor_benefit  
							
							... 
							
							
							
							Conflicts:
	symposion/sponsorship/admin.py
	symposion/sponsorship/models.py 
							
						 
						
							2015-09-08 15:03:06 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								3207621058 
								
							 
						 
						
							
							
								
								i18n all part  
							
							... 
							
							
							
							- forms for labels and helps
- views for success or warning messages
- apps and models verbose_names for admin
Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-08-03 23:37:33 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								a95825ede8 
								
							 
						 
						
							
							
								
								python3 compatibility  
							
							... 
							
							
							
							- Things are suggested in python3 porting guide.
https://docs.djangoproject.com/en/1.8/topics/python3/ 
     1. adding ```from django.utils.encoding import
     python_2_unicode_compatible```
     2. ``` __str__``` instead of ```__unicode__```
     https://docs.djangoproject.com/en/1.8/topics/python3/#str-and-unicode-methods 
     3. Adding ```from __future__ import unicode_literals``` at the top
     of your Python modules
     https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals 
     4. Removing the `u` prefix before unicode strings;
     https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals 
- also closed  #66 
Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-08-03 23:32:25 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								f7caf14357 
								
							 
						 
						
							
							
								
								Merge pull request  #85  from miurahr/export_sponsor_zip  
							
							... 
							
							
							
							Enhanced sponsorship: export files 
							
						 
						
							2015-08-03 08:01:44 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								cf4168ca6a 
								
							 
						 
						
							
							
								
								Merge pull request  #87  from miurahr/sponsorship-display-url  
							
							... 
							
							
							
							display_url 
							
						 
						
							2015-08-03 08:00:14 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								41dc93198d 
								
							 
						 
						
							
							
								
								Merge pull request  #88  from miurahr/sponsorship-admin-contacts  
							
							... 
							
							
							
							admin contact 
							
						 
						
							2015-08-03 07:59:44 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								d174008149 
								
							 
						 
						
							
							
								
								sponsor benefit type richitext, simple and option  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-07-11 11:28:57 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								0d7df4db00 
								
							 
						 
						
							
							
								
								sponsor benfit is complete?  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-07-11 11:28:52 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								8bc696a2dc 
								
							 
						 
						
							
							
								
								sponsorship benefit relation administration  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-07-11 11:27:12 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								b50974263c 
								
							 
						 
						
							
							
								
								i18n sponsor fields  
							
							... 
							
							
							
							Feedback from PyConJP development
```
commit 5973e32ebdc231b209b5c058664e8b2b4a1dbc54
Author: MURAOKA Yusuke <yusuke@jbking.org>
Date:   Mon Mar 31 15:35:40 2014 +0900
    introduce Benefit.content_type which is used to display localized
    text
```
Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 15:44:23 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								3653cf3c69 
								
							 
						 
						
							
							
								
								admin contact  
							
							... 
							
							
							
							Feedback from pycon development
```
    commit eb3261c12c910ec562e016f10431cc48747baef8
    Author: Dan Poirier <dpoirier@caktusgroup.com>
    Date:   Wed Aug 21 11:51:20 2013 -0400
            Enhanced sponsor admin page
```
Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 15:42:19 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								c43b84fe94 
								
							 
						 
						
							
							
								
								display_url  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 15:16:22 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								999c458c1b 
								
							 
						 
						
							
							
								
								add test  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 14:39:18 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								fbf356b335 
								
							 
						 
						
							
							
								
								add export sponsor data zip command  
							
							... 
							
							
							
							Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 14:39:18 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Hiroshi Miura 
								
							 
						 
						
							
							
							
							
								
							
							
								da82edf26d 
								
							 
						 
						
							
							
								
								Enhanced sponsorship features  
							
							... 
							
							
							
							It is a part of feedback from PyConJP development.
Here picks a sponsorship benefit management enhancement.
* sponsor zip download
* export sponsor data as csv
```
commit eb3261c12c910ec562e016f10431cc48747baef8
Author: Dan Poirier <dpoirier@caktusgroup.com>
Date:   Wed Aug 21 11:51:20 2013 -0400
    Enhanced sponsor admin page
    For #67 :
    * admin list sorted by name
    * not limited to 100 per page
    * a sortable visual indicator for each sponsorship benefit
      (completed, missing, not applicable)
    * also the sponsorship level, admin contact name, and an active
      or not indication
    * the ones we have today: print logo, web logo, print
      description, web description and the ad.
    * an action pick list like “email” and check mark the sponsors
    * I want to email based on the assets that are missing.
    * in subject and body, replace %%NAME%% by sponsor name
```
Signed-off-by: Hiroshi Miura <miurahr@linux.com> 
							
						 
						
							2015-06-21 14:39:18 +09:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								71e9ca11bd 
								
							 
						 
						
							
							
								
								Namespace the apps  
							
							
							
						 
						
							2014-12-18 08:19:01 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								b694901831 
								
							 
						 
						
							
							
								
								Remove migrations  
							
							... 
							
							
							
							These migrations were written for South. Now that we have Django 1.7,
we will just use Django migrations once we hit a 1.0 release. 
							
						 
						
							2014-12-18 08:19:01 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								f3614fcf52 
								
							 
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/pyohio/symposion  into pyohio-master  
							
							... 
							
							
							
							Conflicts:
	README.md
	symposion/boxes/urls.py
	symposion/cms/urls.py
	symposion/proposals/actions.py
	symposion/proposals/urls.py
	symposion/proposals/views.py
	symposion/reviews/tests.py
	symposion/reviews/urls.py
	symposion/reviews/views.py
	symposion/schedule/forms.py
	symposion/schedule/models.py
	symposion/schedule/views.py
	symposion/speakers/fixture_gen.py
	symposion/sponsorship/urls.py
	symposion/templates/cms/file_create.html
	symposion/templates/cms/file_index.html
	symposion/templates/conference/user_list.html
	symposion/templates/dashboard.html
	symposion/templates/emails/proposal_new_message/message.html
	symposion/templates/emails/proposal_updated/message.html
	symposion/templates/emails/speaker_addition/message.html
	symposion/templates/emails/speaker_invite/message.html
	symposion/templates/proposals/_pending_proposal_row.html
	symposion/templates/proposals/_proposal_fields.html
	symposion/templates/proposals/_proposal_row.html
	symposion/templates/proposals/proposal_cancel.html
	symposion/templates/proposals/proposal_detail.html
	symposion/templates/proposals/proposal_edit.html
	symposion/templates/proposals/proposal_speaker_manage.html
	symposion/templates/proposals/proposal_submit.html
	symposion/templates/reviews/_review_table.html
	symposion/templates/reviews/base.html
	symposion/templates/reviews/result_notification.html
	symposion/templates/reviews/result_notification_prepare.html
	symposion/templates/reviews/review_admin.html
	symposion/templates/reviews/review_assignment.html
	symposion/templates/reviews/review_detail.html
	symposion/templates/reviews/review_review.html
	symposion/templates/reviews/review_stats.html
	symposion/templates/schedule/_edit_grid.html
	symposion/templates/schedule/_grid.html
	symposion/templates/schedule/_slot_edit.html
	symposion/templates/schedule/presentation_detail.html
	symposion/templates/schedule/schedule_list.html
	symposion/templates/speakers/speaker_create.html
	symposion/templates/speakers/speaker_edit.html
	symposion/templates/speakers/speaker_profile.html
	symposion/templates/sponsorship/add.html
	symposion/templates/sponsorship/apply.html
	symposion/templates/sponsorship/detail.html
	symposion/templates/sponsorship/list.html
	symposion/templates/teams/team_detail.html 
							
						 
						
							2014-12-15 16:07:37 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								2f89311d42 
								
							 
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/KyivPy/symposion  into KyivPy-master  
							
							... 
							
							
							
							Conflicts:
	symposion/cms/urls.py
	symposion/proposals/urls.py
	symposion/proposals/views.py
	symposion/reviews/urls.py
	symposion/schedule/urls.py
	symposion/sponsorship/urls.py 
							
						 
						
							2014-12-15 15:26:57 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								cb4b0fac38 
								
							 
						 
						
							
							
								
								Merge branch 'django1.6-compatibility' of  https://github.com/mbrochh/symposion  into mbrochh-django1.6-compatibility  
							
							... 
							
							
							
							Conflicts:
	symposion/boxes/urls.py
	symposion/cms/urls.py
	symposion/conference/urls.py
	symposion/proposals/models.py
	symposion/proposals/urls.py
	symposion/reviews/urls.py
	symposion/schedule/models.py
	symposion/schedule/urls.py
	symposion/speakers/urls.py
	symposion/sponsorship/urls.py
	symposion/teams/urls.py 
							
						 
						
							2014-12-15 15:15:46 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Patrick Altman 
								
							 
						 
						
							
							
							
							
								
							
							
								c17a4cbda1 
								
							 
						 
						
							
							
								
								Merge pull request  #49  from pyohio/pyohio-sponsorship-redirect  
							
							... 
							
							
							
							Redirect to dashboard if there are no benefits to edit. 
							
						 
						
							2014-07-31 23:37:34 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Carlos Henrique Romano 
								
							 
						 
						
							
							
							
							
								
							
							
								36ab6d599f 
								
							 
						 
						
							
							
								
								Fix flake8 warnings  
							
							
							
						 
						
							2014-07-30 15:19:26 -03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Volodymyr Hotsyk 
								
							 
						 
						
							
							
							
							
								
							
							
								7596729ec1 
								
							 
						 
						
							
							
								
								Update to Django=1.6  
							
							
							
						 
						
							2014-07-05 16:11:43 +03:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Rebecca Lovewell 
								
							 
						 
						
							
							
							
							
								
							
							
								1861ad2926 
								
							 
						 
						
							
							
								
								Redirect to dashboard if there are no benefits to edit.  
							
							... 
							
							
							
							The sponsor object has been created, and we only need to collect details
about the potential-sponsor's benefits. If there are no benefits, the user
should be redirected to the dashboard rather than forced to submit what
appears to be the same form twice. 
							
						 
						
							2014-03-14 14:59:51 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Rebecca Lovewell 
								
							 
						 
						
							
							
							
							
								
							
							
								bc3dfd6c4c 
								
							 
						 
						
							
							
								
								Redirect to dashboard if there are no benefits to edit.  
							
							... 
							
							
							
							The sponsor object has been created, and we only need to collect details
about the potential-sponsor's benefits. If there are no benefits, the user
should be redirected to the dashboard rather than forced to submit what
appears to be the same form twice. 
							
						 
						
							2014-02-11 11:26:56 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Ray 
								
							 
						 
						
							
							
							
							
								
							
							
								f369e1d8ad 
								
							 
						 
						
							
							
								
								Merge pull request  #4  from pyohio/future-django  
							
							... 
							
							
							
							Changes for Django 1.5+ 
							
						 
						
							2014-01-16 05:17:42 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Ray 
								
							 
						 
						
							
							
							
							
								
							
							
								132ce087e5 
								
							 
						 
						
							
							
								
								Merge pull request  #2  from pyohio/1-south-support  
							
							... 
							
							
							
							Adding South Support; Work on #1  
							
						 
						
							2014-01-15 12:43:22 -08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Rebecca Lovewell 
								
							 
						 
						
							
							
							
							
								
							
							
								b495eddc61 
								
							 
						 
						
							
							
								
								direct_to_template -> TemplateView  
							
							
							
						 
						
							2014-01-15 09:36:15 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Rebecca Lovewell 
								
							 
						 
						
							
							
							
							
								
							
							
								84bd8f8971 
								
							 
						 
						
							
							
								
								Update urls import format  
							
							
							
						 
						
							2014-01-15 09:35:36 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Ray 
								
							 
						 
						
							
							
							
							
								
							
							
								cca9ad0793 
								
							 
						 
						
							
							
								
								add dependencies for proper migration order  
							
							
							
						 
						
							2014-01-14 11:06:41 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									David Ray 
								
							 
						 
						
							
							
							
							
								
							
							
								ef66c7ed12 
								
							 
						 
						
							
							
								
								Adding South Support; Work on  #1  
							
							
							
						 
						
							2014-01-14 09:47:49 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Rebecca Lovewell 
								
							 
						 
						
							
							
							
							
								
							
							
								5e5de6c6ea 
								
							 
						 
						
							
							
								
								Pyflakes clean across the entire project  
							
							
							
						 
						
							2014-01-13 16:49:40 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin Brochhaus 
								
							 
						 
						
							
							
							
							
								
							
							
								5c07d3e945 
								
							 
						 
						
							
							
								
								Django 1.6 compatibility  
							
							
							
						 
						
							2014-01-11 14:50:04 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									James Tauber 
								
							 
						 
						
							
							
							
							
								
							
							
								7c3d4f2912 
								
							 
						 
						
							
							
								
								Merge pull request  #35  from taavi/better-word-limit-error-message  
							
							... 
							
							
							
							Provides a better error message when a sponsor benefit text field is lon... 
							
						 
						
							2013-07-03 16:52:45 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Brian Rosner 
								
							 
						 
						
							
							
							
							
								
							
							
								6c1cfd1a53 
								
							 
						 
						
							
							
								
								cleaned up code style  
							
							
							
						 
						
							2013-06-11 11:10:29 -06:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Taavi Burns 
								
							 
						 
						
							
							
							
							
								
							
							
								0a597d38bf 
								
							 
						 
						
							
							
								
								Provides a better error message when a sponsor benefit text field is longer than the allowed limit.  
							
							... 
							
							
							
							It tells you how many words you've written! 
							
						 
						
							2013-05-17 09:31:55 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									florapdx 
								
							 
						 
						
							
							
							
							
								
							
							
								9ab34b8ea5 
								
							 
						 
						
							
							
								
								deleted my inline comment  
							
							
							
						 
						
							2013-04-24 16:08:31 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									florapdx 
								
							 
						 
						
							
							
							
							
								
							
							
								8f0e4cf6a1 
								
							 
						 
						
							
							
								
								change behavior so that admin can add sponsor logos/text in-dashboard  
							
							
							
						 
						
							2013-04-24 13:47:42 -07:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									James Tauber 
								
							 
						 
						
							
							
							
							
								
							
							
								72f2c06010 
								
							 
						 
						
							
							
								
								added external URL field to sponsor application form  
							
							
							
						 
						
							2012-11-06 13:13:51 -05:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									James Tauber 
								
							 
						 
						
							
							
							
							
								
							
							
								daff4020ea 
								
							 
						 
						
							
							
								
								redirect to sponsor edit after submission; allow sponsor details to be filled out before approval  
							
							
							
						 
						
							2012-10-18 13:24:08 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									James Tauber 
								
							 
						 
						
							
							
							
							
								
							
							
								0f32fdcb74 
								
							 
						 
						
							
							
								
								allow staff to add sponsors directly via interface  
							
							
							
						 
						
							2012-10-18 12:38:03 -04:00