forked from django-wiki/django-wiki
-
Notifications
You must be signed in to change notification settings - Fork 27
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
feanil/remove old contributing md #177
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
feanil
commented
Mar 6, 2023
- Search function
- user.is_superuser is not a function.
- Search "optimization".... layout-wise :)
- more search layout
- Merge user menu and notifications menu
- Notify dropdown should look at the latest id of a notification and not retrieve any older notifications on updating from JSON.
- order notifications
- Only mark shown notifications as read -- never the ones that haven't been display because only 10 notifications are display at the same time...
- Allowing periods in slug for wikilinks.
- Fixed image captions by resetting caption_lines for each new image. Before, the n-th image would have the first n captions concatenated together.
- Issue PLAT-1945 Fix deprecated Markdown extension initialization #32, yes, clearly a typo here. Don't know why it was working, but replaced with super(RevisionForm.. and tested.
- Adding ideas section.
- Adding clearfix
- Important fix! Remove HTML tags from Markdown code.
- unchanged, git detects change but shows no diff
- Merging with edx branch, fixing link plugin to not use live_lookups (it's meaningless because whole articles are normally cached and therefore, links are not resolved at every article view). Also, settings for the links plugin were wrongly placed in the main settings file.
- Removing settings from links plugin
- Minor optimisation to ACLs (use .exists() instead of bool() because it's faster), fix an issue on Django 1.5 where EmptyQuerySet has no method select_related_common()
- Do not conditionally include login, logout and signup URLs in urlpatterns. Handle WIKI_ACCOUNT_HANDLING inside views. Issue Open release/eucalyptus.master #43.
- Fixing issues with PYPI compatibility
- Adding a MANIFEST for pypi distribution
- More modifications for pypi, first 0.0.1 released - pip install wiki
- Issue Clean anchor tags to counter XSS #48: Searches should be case insensitive
- Issue Awais786/bom 68 #50 do not use full paths because remote storage does not implement this.
- Updating model chart to reflect current project status
- Use safe preprocessors for attachments and images plugin. Fix Issue Edx release rebase #39. Also use a template to render attachments html.
- Fix for line 561 error: 'msgid' format string with unnamed arguments cannot be properly localized: The translator cannot reorder the arguments. Please consider using a format string with named arguments, and a mapping instead of a tuple for the arguments.
- small fix for extra hash
- Change max_length of file to 255 for handling files with big name
- Uncode filename in US-ASCII format, needable for russian and other language
- Adding news section about RC1.
- Update README.md
- Add support for counting duplicate notifications instead of repeating the same.
- Issue#50 - make using send_file configurable to allow for remote storage backends such as S3.
- Remove redundant table
- Cosmetic changes to fix Fix some Django20 deprecation warnings. #38 - but otherwise there is no rules for URL lengths other than IE setting the lower limit at 2048 characters which should hardly annoy anyone.
- Fixing long titles in notifications and display total count of notifications instead of just a truncated number.
- Fix [BD-6] Make it compatible with Django 2.2 #60 - do not allow empty image form fields even though the model should handle it.
- Fix transaction support for uploading attachments
- Greedy regex algorithm
- Fix Issue Upgrade markdown version and fix tests #66
- Issue [ARCHBOM-1618]: Adding apache License to this public repository #67 - left joins caused by m2m fields sometimes result in duplicate rows, applying distinct()
- Issue [ARCHBOM-1618]: Adding apache License to this public repository #68 - Add sorl-thumbnail to dependencies. Furthermore, add >=0.5.3 to django-mptt which has caused some reports. Read requirements.txt into setup.py to avoid hard coding and mismatches. Create 0.0.2 release which is not broken because README.md was missing from distribution file.
- Never return a proxy object from unicode ! (pulling upstream in our fork #73)
- Never return a proxy object from unicode ! (pulling upstream in our fork #73)
- Update wiki/plugins/notifications/forms.py
- Increase django-mptt dependency version
- Correct django dependency invariant
- Adding Bootstrap 2.2.0
- Adding check on article locked for attachments. (BOM-2751: Setup Python Upgrade Job #74) - Also cleaning up attachment list and removing forms when article is locked. Adding template filter is_locked
- Ensure that CreateForm fails when slug field is longer than the maximum allowed slug length (BOM-1111 #54).
- Ensure that CreateForm fails when slug field is longer than the maximum allowed slug length (BOM-1482 Removed Django Constraint #57)
- Setting Colorbox.js width and height (Adding Apache license to repo #69) and adding captions.
- eh..remove alert()
- Add warning on Edit page if user is not logged in w/ link to login page and redirect back to edit page (BOM-1146 #55)
- Count number of occurences of the same message and display "x times" in the notification list instead of duplicate messages.
- Add spam/bot protection by verifying user session and ip_address and check the number of recent revisions (chore: Incorporate wiki improvements from upstream repository. #72) Add global setting to disable anonymous article creation (chore: Incorporate wiki improvements from upstream repository. #72)
- Fix markdown extension for images to allow no align:xx specified and use bootstrap pull-left and pull-right. Don't allow center alignment. (Dropped support for python 3.5 #65)
- Move all javascript to load at the bottom of the page and ensure only to add javascript inside Sekizai addtoblock tag. (BOM-1111 #54)
- Fix settings.py link
- Fix settings.py link (Python Requirements Update #81)
- Retry: Fix settings.py link (Python Requirements Update #81)
- Regression from adding spam protection, missing argument in when view class Preview initialized EditForm (Python Requirements Update #83)
- Be explicit about application order (Python Requirements Update #84)
- updates {% url %} use in notifications menubaritem template to confrom to django 1.5
- adds class for url configuration
- fixes merge
- Python Code Cleanup #71 - missing pattern 'get' in new class based urls
- Python Code Cleanup #71 and Python Requirements Update #87 - put the 'get' by path pattern at the very end of all patterns
- Add local settings to testproject
- Remove 'center' from javascript prompt help text (feat: advertise constraints in setup.py #88)
- Bumping to version 0.0.9 for new PyPi release
- Update README.md
- Update README.md
- Update README.md
- sorl.thumbnail in INSTALLED_APPS + copy-paste friendly
- Add link to forum/mailing list
- Redirect for the built-in account handling when login is required + better err page.
- Account handling system should pass all django.contrib.auth test cases Python Requirements Update #86
- Account handling system should pass all django.contrib.auth test cases Python Requirements Update #86
- apply migrations to prepopulated test database
- Remove unused setting
- Do not allow merging with a deleted revision Include plugin models again #27
- Cleanup nicely when an image or attachment is deleted - remove the file and any empty directories Don't import plugin models in main migrations #25
- Support for I10N - use timezone.now
- Avoid losing user data when a sidebar form is called and article contents have been modified Yro/EDUCATOR 2701 #33
- Scroll if there are many images, only warn about unsaved changes if there are in fact such
- Use JS to save article form data on all sidebar plugin forms
- missing template load stm
- travis config added
- Update README.md
- fix pip argument for travis
- fix double requirement
- test with manage.py
- Add PIL to requirements.txt and remove Python 2.5 from travis
- Update README.md
- Error pages for test project
- add testproject template dir
- adding custom storage backend option to images plugin
- in attachments plugin, append '.upload' to uploaded files only when settings.APPEND_EXTENSION is True.
- WARNING! May break your config: Clean up settings variale names in images and attachments plugins and use unified defaults. Issue Python Requirements Update #91.
- Use Form Media for SelectWidgetBootstrap and update wiki_form templatetag
- Use Form Media for SelectWidgetBootstrap and update wiki_form templatetag Fix Python Requirements Update #95
- fixed help plugin TOC syntax and added Tables section
- added MARKDOWN_SAFE_MODE setting
- Add settings for inheriting owner and group permissions and fix Python Requirements Update #99
- Update README.md
- Update README.md
- Update README.md
- add debug_toolbar if installed
- Update README.md
- Update README.md
- collapsed MARKDOWN_EXTENSIONS and MARKDOWN_SAFE_MODE settings into MARKDOWN_KWARGS
- added core macros plugin with initial article_list macro
- added wiki-article-list class to article_list macro template
- added wiki-article-sublist class to article_list macro template
- added Django 1.5 url syntax to macros plugin; added condition to avoid generating empty lists for each child in article_list macro
- fixed article_list macro sublist markup
- restructured url resolver in article_list macro
- security fix for macro plugin, add plugins.acros to testproject
- receive post_save signal only using kwargs
- using wrong class for widget when in readonly mode on some settings form fields
- added kwargs logic to macros plugin and depth kwarg to article_list macro
- Add help sidebar for macros and make allowed methods configurable
- Make django notify admin configurable so it can be excluded
- move macros configuration and do not include django_notify twice in the urlconf
- Fix example code
- logo block for footer
- Display a helping exception message when MPTT is failing
- Apply user info on the creater of the first revision of the root article
- add a few more default markdown plugins
- Fix error in macros removing unknown tags from stack and prettify styling
- Fix chore: Post Django32 Cleanup #100 add print CSS and remove inline <style>
- version bump to 0.0.12
- python 2.5 support
- Python 2.5 support note
- Update README.md
- Note on python 2.5 and improve article list
- fix python 2.5 unknown elementree method
- Security fix, do not call eval on input
- Bump to 0.0.14
- fixed macro arg regex for args longer than 1 character
- removed overlooked debug print statements
- fix setting article fk on reusable plugins for identifying permissions
- unfinished generic markdown extension
- footer clearfix
- rm dupe lines
- use LESS for stylesheets by extending twitter-bootstrap
- image plugin thumbnail css
- image plugin thumbnail css
- do not fail when removing images located in non-existing dirs
- python 2.5 support
- modify build to clean up old egg dir and add back the MANIFEST.in symlink
- typo
- add model chart in pdf to the build-sdist process
- Bump to 0.0.15
- Update README.md
- Add better info about licensing
- do not show deleted articles in article_list macro
- broken boostrap-responsive build
- add template assignment tag login_url
- resizable modals
- add request context processor and check that config is OK
- improve resizable to properly fit nested iframes etc
- Make cache timeout configurable and remove erred block tags from render.html
- fix spam protection wrongly targetting moderators
- refactor article view to use view.html template
- raise 404 if plugin is missing
- zip file uploading and extracting for moderators
- python 2.5 compatibility for zip archives
- bootstrap styling
- title for TOCs
- non-zip files fix for moderators and clean up a bit
- do not show deleted files in list, add separate restore menu item
- allow inline attachment tag
- show article titles instead of slugs in index view
- only show active children in article_list
- fix article purging
- redirect for delete view to parent
- thumbnail styles
- invalidate article cache when plugins are updated
- soft linebreak after images to conserve preceeding headline elements
- restore lost-and-found auto collection if subtrees are disconnected
- cache key should be from current revision
- bump to 0.0.16
- bootstrap typography and remove extra
- s on article_list
- bootstrap typography
- Replace Markdown toc extension and add improved version to macro package.
- Email Notifications Implementation
- Revert "Email Notifications Implementation"
- Notifications Implementation:
- Subject changed to a translated string, notification email changed to @example.com
- Support and contributions
- Support and contributions
- remove print stm
- ignore settings_local
- rename command, cleanup code, add logging
- bump to 0.0.17
- Update to 0.0.17
- UserCreateForm subclassed to include the email as a required parameter in the signup.
- Todo and readme updates
- Few more readme changes
- Inherit from EmptyQuerySet
- Add note in pluginbase about use of Meta.app_label
- Fix fix: upgrade bleach version to 5.0.0 #118 Avoid deprecation warning in Django 1.5
- Fix fix: upgrade bleach version to 5.0.0 #118 (forgot django_notify) Avoid deprecation warning in Django 1.5
- Fix fix: upgrade bleach version to 5.0.0 #118 Avoid deprecation warning in Django 1.5
- User creation form extendedto include email as a required field
- fix: upgrade bleach version to 5.0.0 #118 django 1.5
- Add a simple honeypot for signups
- Add a simple honeypot for signups Python Requirements Update #117
- page title for signup page
- Python Requirements Update #119 do not fail when deleting blank image and attachment fields
- remove initial blank attachments and images
- Python Requirements Update #119 restore if image deleted and uploading new image file
- Redirect from sign up and login pages for logged in users. Use wiki:root url for root article.
- Do not use URLField, it does not allow relative paths
- clear ancestor cache on save and delete article so that things like article_lists are refreshed
- Python Requirements Update #111 Add ancestor generator to Article
- refactored urlpath._clear_ancenstor_cache to use article.ancenstor_objects generator
- moved article save and delete clear cache signal handlers to Article model
- Initial Implementation of Search using Haystack
- Fixed posting data to views.article.Preview
- Paginator used to show the number of results
- fixed _clear_ancestor_cache call
- Update README.md
- use self.stdout in django_notify management script logging (see django docs: https://docs.djangoproject.com/en/dev/howto/custom-management-commands/)
- readme changed
- start of translations
- start of translations
- initial translation done (without the plugins)
- Compilation of german locale
- german locale
- fixes to the manifest
- right names
- Plugins are a WIP
- compiled recent version
- complete set of languages
- reset readme and removed mo ignorance from gitignore, since it is needed
- Adding translation for pt_BR
- Fix Python Requirements Update #125 - missing redirect call
- Bump to 0.0.18
- Update README.md
- Fixed typo in admin - Article revision list columns
- Update to Bootstrap 2.3.1 and simplify LESS import statements
- clean up block tags to be prefixed 'wiki_*'
- fix Python Requirements Update #130 - display disabled dropdown when no assignment permission
- add clearfix for article tocs and indexes
- adding PIL pre-req documentation
- changing apt-get to use python-imaging
- Permissions bare implementation
- Fix Python Requirements Update #136
- JSON view can return HttpResponseRedirect
- fix imporerror for HttpResponseRedirectBase
- Do not use HttpResponseRedirectBase anyways, just check status_code
- adding PIL pre-req documentation
- changing apt-get to use python-imaging
- JSON view can return HttpResponseRedirect
- fix imporerror for HttpResponseRedirectBase
- Do not use HttpResponseRedirectBase anyways, just check status_code
- Spanish translations added.
- More clear PIL instructions.
- fix wrong form target on clicking 'Switch to selected version' + modal window height
- Python Requirements Update #137 place permission logic ONLY in core.permissions and make article.can_read and article.can_write configurable
- Do not use kwargs for permission methods
- Do not use kwargs for permission methods
- Added recursion test for the current bug in preview.
- Revert "Fixed posting data to views.article.Preview"
- pull Python Requirements Update #139 - form data from args or kwargs
- pull Python Requirements Update #139 - form data from args or kwargs
- pull Python Requirements Update #139 - form data from args or kwargs
- French translation - changed msg id (att. pull Python Requirements Update #138)
- Python Requirements Update #140 - Markdown 2.2/2.3 API change - do not rely on markdown.extensions.headerid.unique
- Fixed RuntimeWarning by replacing naive datetime by utc
- Added more tests and refactored the the first one.
- Fixed on_article_delete if the article has children.
- Added tests for clearing cache and for updating article_list
- Fixed on_article_delete_clear_cache. Some articles in the cache were not cleared and tests failed.
- pull Python Requirements Update #141 - add manage.py test + Django 1.5 to Travis config
- pull Python Requirements Update #141 - remove old test mechanism, try adding Warning failure
- Respected changes, reformatted the lines
- Added translations for django_notify
- version fix
- version fix
- Fixed wrong icon when deleting article
- Fixed wrong icon when deleting article
- fix SimplePlugin constructor - pull Fix github url strings (org edx -> openedx) #144
- remove pip --use-mirrors
- less blahblah on the contribution stuff
- Markdown needs to be >2.2.0 due to 2.1.1 headerid extension tested broken with newer ElemenTree versions
- Add attr_list to allow e.g. custom Header ids for custom references to header sections
- lock main article in the test project
- font size in blockquotes
- add back anon read access to test main article
- Make the urlize parser more strict
- Version bump
- Update README.md
- Added wrapSelection to editor.js
- Slug stays fixed if the article already has a initial slug
- Remove space from urlify.js path
- Python Requirements Update #151 - missing translation calls
- Issue Tcril/revert changes #145 - Add support for settings.AUTH_USER_MODEL both in model ForeignKey fields and South migrations. Backwards-compatible.
- BaseRevisionMixin.previous_revision: Allow deletion of Revisions by setting back-referenced revisions to NULL such that future revisions are not cascade deleted.
- Remember to call parent UserCreationForm.clean - fix username not tested for uniqueness in account handling
- vacuum sqlite test database and add new migrations
- Remove revisions to shrink prepopulated test db
- Update TEMPLATE_CONTEXT_PROCESSORS instructions
- Tcril/revert changes #145 - add compatibility layer for importing users
- Add test suite that supports settings.AUTH_USER_MODEL and testing of South migrations Tcril/revert changes #145
- Remove spaces
- Respect custom models (NB! current django 1.5.1 breaks wiki.views.accounts) Tcril/revert changes #145
- Tcril/revert changes #145 do not break when AUTH_USER_MODEL is set on django<1.5 project
- Updated german translations
- Create django.po
- update locale ru (.po and .mo)
- fix errata (locale ru)
- add russian translation from django-notify
- fix
- filehandler django_notify in daemon mode
- fix notify_settings confuse
- simplify notify_settings
- adding missing manifest information. language files were not included in the build.
- The management command now loads the language see https://docs.djangoproject.com/en/dev/howto/custom-management-commands/ for more details
- Bump to 0.0.20
- Update README.md
- Update README.md
- Fix Python Requirements Update #161 (mark accumulated notifications is_emailed=False) + clean up code + make notification email nicer
- fix missing refactoring on renamed template block wiki_pagetitle
- shorten database settings
- self.request on ArticleMixin view to allow for parent dispatch methods assuming its existence
- undo, only bad inheritance results in need of self.request set here
- Alter plugin API: BasePlugin.urlpatterns is now a dictionary
- Some minor cleanup and same redirect behaviour on anonymous access
- cleanup bootstrap
- Bootstrap 2.3.2 added and compatibility changes for dropdown menu
- get_absolute_path added to Article model
- Add notification interval to Article Settings page + New Notifications Settings page
- pep8 cleanup
- hand empty notifications settings
- Haystack 2.0 broke some stuff (site did not exist). This is fixed now. Furthermore we can use the highlighter by haystack. It does some stuff nicer than django-wikis
- Minor fix
- Fixed: "wiki_footer_prepend block"
- Visitor cannot use admin as a slug (just in case !)
- Cleanup 'admin' slug error message
- fixed non-found absolute wiki urls
- Update README.md
- Fix Django 1.4 incompatibility
- Automatically generate README.rst for PyPi
- cleanup unnecessary file
- make SEARCH_VIEW configurable from conf.settings
- Refactore testproject.settings to accommodate more scenarios
- script to migrate south migrations to a custom auth user model (has already been run on wiki.migrations)
- Add Haystack search plugin (NB! Whoosh backend is broken upstream)
- cleanup
- Updating travis test to use new settings layout
- Trying a new travis configuration since the PYTHON_PATH does not understand testproject.settings
- Travis settings for test project
- make possible for moderators to replace attachments
- make possible for moderators to replace attachments, also fix Python Requirements Update #170, and remove catching all exceptions
- Fix Python Requirements Update #164 by always setting a timeout for notification updates
- Fix Python Requirements Update #162 -- add filter_exclude to notify()
- Fix Python Requirements Update #160 by allowing django-sendfile to be plugged in through settings.USE_SENDFILE
- cleanup
- Fix A11y fixes #23 - move model registration from taking place within wiki.models to wiki.urls -- after all apps and models have been loaded
- Don't be verbose while scanning for plugins
- add setting WIKI_ACCOUNT_SIGNUP_ALLOWED
- Add #django-wiki IRC channel - yay :)
- Remove old settings_local.py
- Add SECRET_KEY to standard settings so testproject runs out of the box
- make init.py always try to import settings.local
- Upgrade to Bootstrap 3 RC1, add font-awesome, lots of refactoring
- refactor bootstrap grid layout
- remove old bootstrap files
- Fix search form on chromium
- responsive search form
- include font files in MANIFEST
- fix Python Requirements Update #182 - bootstrap problem, not html
- Github Markdown broken on multiple comments in one line
- News update
- SHA digest should display as link
- Update README.md
- Init std.out stream handler compatable with Python 2.6
- fix bootstrap btn-default class
- fix btn-default in some other cases
- fix some more btn-default
- strip tags from Haystack searches
- add codehilite CSS to enable syntax highlighting for the codehilite Markdown extension
- add codehilite note in README and a testproject settings module
- fix 404 on respond.js
- bootstrap 3 compat on attachments plugin
- Fix Python Requirements Update #181 and Python Requirements Update #183 -- responsive modals, prepend for form inputs, form controls fixed for horizontal and vertical layouts
- textarea height and edit page button layout
- more issues in bootstrap 3 form widgets
- grid layout on all form-action occurences
- Fix Python Requirements Update #178 - improve urlize regex to accept everything after a domain, except spaces, [, and (
- Fix Python Requirements Update #178 - improve urlize regex to accept everything after a domain, except spaces, [, and (
- Fix chore: Switch from edx-sphinx-theme to sphinx-book-theme #186 -- add empty local.py file
- Update local.py
- urlize also on last-of-line urls + fix icon
- create root as a class-based view
- change revision as a class-based view
- show info about missing root instead of redirect to login (fix Python Requirements Update #174)
- bump translations
- Use a private instance of sorl.thumbnails.
- ignore haystack test indexes
- fix Python Requirements Update #197 - use twitter typeahead
- add codehilite to default markdown extensions and close Python Requirements Update #134
- remove bogus highlight plugin
- Fix [TOC] compatibility with custom ids and add support for [[WikiLink]] Python Requirements Update #179
- fix fix: Add django 4.2 support #193 - only add style to input type=text/password
- Group and owner can be null. The index must support this!
- pagination broke with bootstrap 3. It now works again!
- indentation fixed
- Instruction text for direct pip installation from git
- Become compatible with django-cms 2.4.2 due django-sekizai
- Updated translation. Fixed some minor issues.
- Changing mptt to 0.5.3
- Bugfix request method is not found Django 1.4.7
- Russion translations + some missing label added + problem with transaltions in django_notify.settings.py
- Remove unnecessary lamba function
- Russian translations fixes
- django 1.6 and Python Requirements Update #191 BooleanField now has NULL value
- django 1.6 fix for Python Requirements Update #191 - ArticleRevision.get_latest_by should be single field, not tuple
- Automating version number for sphinx
- Trying out a markdown formatted auto-gererated for new releases CHANGELOG
- automatically generate docs and CHANGELOG.md
- Adding Travis tests for Django 1.6
- Add a screenshot
- Writing a few words on usage
- syntax highlighting for README
- README updated
- Remove tests from plugins that are just stub implementations and not django 1.6 compat
- Fix bug in decorator causing double reverse lookups
- Fix Python Requirements Update #211 by adding a bit more clarity on the context variable handling
- Fix Python Requirements Update #207 and upgrade to jquery 1.10.2
- Fix Python Requirements Update #206 by upgrading markitup to newer version
- Fix Python Requirements Update #191 - introduce DRY in plugins.notifications default_url
- version bump to 0.0.21
- Readme and Changelog update
- make README compatible with the pandoc translation to ReST
- Add PyCharm ignores
- PIL / Pillow related docs
- Ah whatever... just delete everything about PIL!!
- Change requirements to use Pillow instead of PIL
- Python Requirements Update #213 django 1.6 trouble fixed
- bump version number
- Edit french translations
- Add try catch block to test for and use if available new in 1.6 db transaction API
- Add changes suggested by python-modernize
- Missing colon
- Add six as a requirement
- Convert iterator to list to allow extension with + operator
- Stray tab
- Add six to travis requirements.txt
- Try to work around (necessary) absence of force_unicode in Django on python 3
- Replace basestring with six.string_types
- Import only string_types from six
- Start using from future import unicode_literals everywhere Remove u from u"" and u'' Start to remove calls to unicode()
- Correct position of from future import
- Convert filter iterator to list() to allow subscript
- Fix Python Requirements Update #221 - not correctly inheriting some permissions, save() called on URLPath object instead of Article object!
- Bump to 0.0.23
- Beginnings of docs - converted from README
- Added easy way to brand the wiki, avoiding lots of copy and paste.
- Corrected docs for easy branding method
- add rtd conf env
- Update .travis.yml
- Update requirements_1.6.txt
- Add python 3.2 and 3.3 to trigger branch tci build
- travis-ci uses the branch committed to, reverted.
- Switch to Pillow and the dev version of sorl v12
- Remove six
- Switch to python3-style unicode everywhere str()
- Switch to python3-style unicode everywhere str()
- Move to python3-style unicode everywhere str()
- Move to python3-style unicode everywhere str()
- Try change made by benjaoming on django-nyt
- Fix pluginbase incompatibility with django 1.6 Python Requirements Update #213
- do not build docs in build-sdist, it's not needed
- Image plugin: old revisions thumbnail error
- Move from future to the beginning of the file
- Fixed incorrect indentation
- Executable scripts 'setup.py' and 'runtests.py'
- Added method to allow selected tests to be run, instead of running all.
- Fix for issue Python Requirements Update #225 (exception when running with ATOMIC_REQUESTS), and the same applied to deleting subtrees
- Added tox.ini and instructions, for easy running of tests in multiple environments
- Merged wiki.compat into wiki.core.compat
- Replace PIL with Pillow
- Update installation.rst
- Update installation.rst
- Fixing requirements list
- Update installation.rst
- Removed use of unicode_literals in migrations, because it causes many migrations to generate TypeError
- Added python3.3 environment to the envs to test in tox.ini
- Fixed tox.ini dependencies for Python 3 support
- Let us try adding a contribution documentent...
- notes on pull requests
- Fix image upload when IMAGE_PATH_OBSCURIFY setting is enabled
- Specified a version for sorl-thumbnails that is compatible with Python3
- typo
- This line should be removed, as it is removing the hyphen
- fixing mistake made from last commit
- forcing cleanup server side
- added HTML5 pattern checking of lowercase and underscores
- Fix confusing comment
- Only force new slugs to lowercase when not URL_CASE_SENSITIVE
- Update article.py
- replcae ArticleEmptyQuerySet to query_set().none(). Django 1.6 compatibilty
- Add changes suggested by python-modernize
- Missing colon
- Add six as a requirement
- Convert iterator to list to allow extension with + operator
- Stray tab
- Add six to travis requirements.txt
- Try to work around (necessary) absence of force_unicode in Django on python 3
- Replace basestring with six.string_types
- Import only string_types from six
- Start using from future import unicode_literals everywhere Remove u from u"" and u'' Start to remove calls to unicode()
- Correct position of from future import
- Convert filter iterator to list() to allow subscript
- Add python 3.2 and 3.3 to trigger branch tci build
- Switch to Pillow and the dev version of sorl v12
- Switch to python3-style unicode everywhere str()
- Switch to python3-style unicode everywhere str()
- Move to python3-style unicode everywhere str()
- Move to python3-style unicode everywhere str()
- Try change made by benjaoming on django-nyt
- Move from future to the beginning of the file
- Removed use of unicode_literals in migrations, because it causes many migrations to generate TypeError
- Added python3.3 environment to the envs to test in tox.ini
- Fixed tox.ini dependencies for Python 3 support
- Fix image upload when IMAGE_PATH_OBSCURIFY setting is enabled
- Specified a version for sorl-thumbnails that is compatible with Python3
- Fix py3 syntax error, refactor tests to be run with DiscoverRunner
- Make tests run on django<1.6
- Tests should reflect forced lowercase paths.
- south migration and django 1.7 transitional support, remove django_notify and use django_nyt
- Refactor old South migration modules "migrations"->"south_migrations", add AppConfigs for future Django 1.7 (not supported yet), initial release notes, delete odd notifications migration that by mistake deletes the notifications subscriptions tables!
- (Missing from previous commit)
- add release note link
- removing migration testing for now due to unknown erro
- removing migration testing for now due to unknown error
- Adding draft notice to release notes
- Fix broken images.south_migrations (0001_initial), add new .travis requirements
- start testing south migrations again
- Travis requirements to get sorl 11.12.1b and fix django 1.7 beta from tarball instead of pip
- Reconstructing Travis YML to only use selected combinations of django and python versions
- fix travis syntax err
- Add list of known issues and include a note on Dj 1.4 and sorl with that.
- Only Django 1.4.2+ is support because of django-mptt
- Only Django 1.4.2+ is support because of django-mptt
- travis pip syntax err
- once again correcting travis config and adding py3 fixed requirement for django_nyt
- Adding prepopulated DB with front page article
- Fix filter() call in get_content_snippet not working on Python 2.7+
- Fix Python Requirements Update #234 by adding @friedmud's suggestion and a max-height om
- Travis should not test Django 1.4 against Python 3
- Add explanation of current build status.
- Fix testproject instructions
- article settings form compatibility with custom user model
- Rename notify to nyt (https://github.com/benjaoming/django-wiki/issues/224#issuecomment-44047813=
- Typo, nty->nyt
- Also fix in the plugin
- Test the presence of the plugin haystack, not haystack himself
- Import mediawiki: First basic version. * Import page, with history and users
- Better import: Expend templates, better url handeling and internal links
- Fix chore: enable github action auto update in dependabot.yml #262 for attachements
- corrected lists section of help plugin for sub items
- pep8
- add note about django-wiki-project-template
- add missing paragraph
- Fix chore: Upgrade Python requirements #270
- more info on new releases
- do not install django-mptt 0.6.1 it's broken
- Revert "Fix Python Requirements Update #224"
- notifications plugin form to use django-nyt and management command to recreate notifications
- dependency on new django_nyt
- docs change on how to handle notifications for 0.0.24
- Add missing migration for deleted field Image.image - Fixes chore: Upgrade Python requirements #281
- fix wrongly resetting notification badge color at every update
- increase django-nyt version dep
- Update markdown_extensions.py
- Add IRC notifications
- Add a bit more info, and thanks @almereyda for noticing.
- update test database and make front page only editable by admin
- give at least anon ready access to front page
- Updating model chart. Command used:
- Add Simplified Chinese translation.
- Added validation for slugs conflicting with 3rd party URLs, and option to disable with ALLOW_OVERLAPPING_THIRD_PARTY_URL = True
- Updated setting name ALLOW_OVERLAPPING_THIRD_PARTY_URL to CHECK_SLUG_URL_AVAILABLE
- Update .travis.yml
- Update installation.rst
- Python 3 compatibility (or at least correct syntax) for mediawikimport command
- % fix notifications overview
- % fix saving of notification settings
- % fix haystack search query (request.group not set and should be list of all groups)
- Fixed problem with auth.user in the south migrations. Further continuation of e506c09.
- Fixed problem with auth.user in the south migrations for plugin 'images'.
- Change empty markdown config to {} instead of None
- fix css class name
- Fix Travis-CI URL in README
- Fix Travis CI requirements to use django-mptt==0.6.0
- Share common requirements for Travis and distribution (fix Travis requirements should import requirements from the requirements to be distributed django-wiki/django-wiki#319)
- Fix Python 2.6 error caused by Markdown updates
- Fix South handling in requirements
- Refactor dependencies in requirements.txt and setup.py
- Fix South requirement to >=0.8.4
- Remove a debugging message that was left accidentally
- Fix Django v1.7 in Travis file
- add traceback to reveal why errors in the testing framework occurs
- Preliminary Finnish translation
- remove django 1.7 from 0.0.24 travis tests
- python3 compat bug
- update django-nyt requirement because of python3
- initial work on danish translation
- Update travis config, remove django 1.4 stuff
- use python-modernizer to fix migrations and other small issues
- Fix Add __version__ attribute django-wiki/django-wiki#295
- Fix testproject/manage.py to be executable
- Fix issue Bug with search functionality django-wiki/django-wiki#326
- Migrations reset on the rather messed up notifications app
- Fixed runtests.py and setup.py hashbang lines, broken by commit with python-modernizer
- Tests should be run against current version of django-wiki, not old version!
- Updated dependencies in tox.ini to latest supported versions of Django
- Get tests to run under Django 1.4 and 1.5, but without duplication on 1.6 and later
- Pulled out some useful base classes for test cases
- Fixed bug with caching that was causing a test to fail.
- Removed stray debugging print statement
- Fixed uploading of attachments using Python3
- add note on master branch
- Remove Python 3.2 testing because South migrations arent running
- python_2_unicode_compatible decorateur
- Move future import to the top
- pep8
- ignore wiki/attachments for now as it occurs from running tests and should not be distributed
- initial tests for custom queryset methods
- do not call get_empty_query_set, that's deprecated
- add tests of none() and empty queryset functionality
- use gettext_lazy where appropriate, thanks @jluttine for starting work on this
- add more tests of custom managers and add support for django 1.5 and 1.6's patterns for empty querysets
- Fix chore: Upgrade Python requirements #263 and style article list header
- Fix Notification settings UI is acting weird django-wiki/django-wiki#341
- Adding python_2_unicode_compatible from @fsx999, #Fix 282 and Close @python_2_unicode_compatible django-wiki/django-wiki#342
- Fix notification error in settings
- Fix broken markdown output when attachment does not exist
- Fix not being able to add existing attachments to an article
- Fix many issues with attachments caused by attachment-filter not being specifc enough
- Clear cache for article when doing something with attachments
- Better messages when adding attachments
- Fixed problem with cleaning the username when the application is using a custom username field.
- Add use str with python_2_unicode_compatible for plugins too
- Revert "Add use str with python_2_unicode_compatible for plugins too"
- Add use str with python_2_unicode_compatible for plugins too
- docs: Remove repo specific CONTRIBUTING.md
…n URLPath object instead of Article object!
Easy branding + documentation
Add six for Python3 build.
Merge changes to master into python3
Merge changes from master
Simple typo error.
Image plugin: old revisions thumbnail error
Merge changes from master
This also removes the use of the deprecated DjangoTestSuiteRunner class
Move future import to the top of the file
…hould not be distributed
python_2_unicode_compatible decorateur
…1.6's patterns for empty querysets
…jango-wiki#342 Conflicts: wiki/plugins/attachments/models.py
Article subsciptions was missing a .count()
…ions-count Fix notification error in settings
Fix multiple issues in the attachments plugin, especially for reusing attachments in other articles
…g a custom username field.
Fixed problem with cleaning the username when the application is using a...
Add use __str__ with python_2_unicode_compatible for plugins too
…s-unicode Revert "Add use __str__ with python_2_unicode_compatible for plugins too...
We now have a org wide CONTRIBUTING.md that points to our correct general contributing guidelines. We don't need repo specific ones that forward to other contributing docs. This is a fork but its CONTRIBUTING.md is very out of date and our fork has veered of of upstream quite a bit so it doesn't make sense to keep this file.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.