Los Angeles, CA
LA, CA USA - Managua, Nicaragua
Comment by ~petersanchez on ~petersanchez/tago
A solid lexer example to follow possibly: https://github.com/eliben/code-for-blog/blob/master/2014/tablegen-lexer-go/lexer.go
Ticket created by ~petersanchez on ~petersanchez/django-impersonate
A feature that would:
- Notify the user that they are being impersonated.
- Notify admins that a user is also being impersonated.
This could be enabled/disabled by the project developers but for the cases where full transparency is desired, I think this is useful.
Ticket created by ~petersanchez on ~petersanchez/migrate
When migrating down, currently the behavior is to run the STOP migration before exiting. I think this may be confusing to the end user. Hell it confused me and I added this functionality.
We should NOT run the stop migration when rolling back. We should stop when we reach it.
Comment by ~petersanchez on ~petersanchez/migrate
REPORTED
RESOLVED IMPLEMENTEDTicket created by ~petersanchez on ~petersanchez/carrier
Ability to gpg sign, or encrypt, and email before sending it.
Comment by ~petersanchez on ~petersanchez/django-impersonate
Hey Dave. Good catch! I updated this and pushed a new release to pypi (1.8.2)
Thanks for taking the time and reporting this.
As for reasons, I no longer want to host my data on outside services. Especially ones like GH (just my personal preference). I'm happy to receive your contributions, it's as simple as making your changes and running
hg email -o
It's really easy and way faster than the entire fork, clone, pull, commit, push, file pr, etc.
Here are 2 quick reads to help you get started:
REPORTED
RESOLVED IMPLEMENTEDComment by ~petersanchez on ~petersanchez/django-impersonate
This is completed and included in new release: 1.8.1
REPORTED
RESOLVED IMPLEMENTEDTask added by ~petersanchez on ~petersanchez/django-impersonate
Ticket created by ~petersanchez on ~petersanchez/django-impersonate
Time to update the
setup.py
file:/home/pjs/development/django-impersonate/setup.py:2: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives from distutils.core import setup
Ticket created by ~petersanchez on ~petersanchez/migrate
Provide a function that will provide basic command support to easily integrate CLI support into existing programs.
Something simple like:
func command(migrations []Migration) error { // do basic up/down, etc checks and run migrations return nil }