Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pkolt/quickpaste
Plug-in to TinyMCE for loading of files
https://github.com/pkolt/quickpaste
Last synced: 7 days ago
JSON representation
Plug-in to TinyMCE for loading of files
- Host: GitHub
- URL: https://github.com/pkolt/quickpaste
- Owner: pkolt
- Created: 2011-04-18T10:03:20.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-23T04:25:15.000Z (over 12 years ago)
- Last Synced: 2024-10-15T12:10:43.999Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 449 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
==============================================
QuickPaste. TinyMCE plugin for uploading files
==============================================Features
========- fast downloading files
- auto resayzing images
- automatic transliteration of the names of files
- insert a link to the editor by the end of the boot processDepending
=========- PIL
- Django >= 1.3
- django-tinymce (http://code.google.com/p/django-tinymce/)
- trans (http://pypi.python.org/pypi/trans/1.3)Installation
============1. Add ``quickpaste`` in INSTALLED_APPS
2. Add ``(r'^quickpaste/', include('quickpaste.urls'))`` in urlpatterns
3. Connect plugin quickpaste and add ``quickpaste`` button in configuration file TinyMCESettings
========settings.py ::
# Url timy mce folder
QUICKPASTE_TINYMCE_URL = settings.STATIC_URL + 'tiny_mce/'# Customize button `Select the file`
# Size 120x30 pixels
QUICKPASTE_BUTTON_IMG_URL = None# Change the size of the original image
QUICKPASTE_IMG_SIZE = (1024, 768)# Resize thumbnail picture
QUICKPASTE_IMG_SIZE_THUMB = (600, 600)# Download directory of files, relative MEDIA_ROOT
QUICKPASTE_UPLOAD_DIR_NAME = 'uploads/users'Changelog
=========01.03.2012 - version 1.2.0, fix bug, remove application ``uploadtools``. Added support for German language.
18.04.2011 - version 1.0.0 first version.
Acknowledgments
===============The draft was used by Flash-loader Uploadify.
http://www.uploadify.com/documentation/