معرفی شرکت ها


feincms-gallery-1.3.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A gallery for FeinCMS
ویژگی مقدار
سیستم عامل -
نام فایل feincms-gallery-1.3.1
نام feincms-gallery
نسخه کتابخانه 1.3.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Simon Baechler
ایمیل نویسنده dev@feinheit.ch
آدرس صفحه اصلی https://github.com/feinheit/feincms_gallery
آدرس اینترنتی https://pypi.org/project/feincms-gallery/
مجوز BSD License
=============== FeinCMS Gallery =============== Introduction ------------ This is a gallery app and contenttype for Feincms. It allows for several gallery 'types', each with its own tempate, css and javascript files. It comes packed with several pretty types ready for use: * The classic grid type, with caption, lightbox image and pagination. * Image carousel: a single line scrollable strip * Slideshow: A simple slideshow * Fancy panel: A fancyer slideshow with lots of different transitions * Product gallery: One large image with smaller thumbnails. The CSS and Javascript files for the galleries are only loaded on demand using the form media class. The admin frontend has thumbnail view for the gallery images and drag and drop functionality for image sorting. Installation ------------ At this time, there is no prebundled installation file to install via pip or easy_install. So get the source at: https://github.com/feinheit/feincms_gallery * Make sure to add the ``gallery`` to your Python path. * Add ``gallery`` to your ``INSTALLED_APPS`` in your ``settings.py`` * Add ``url(r'^gallery/', include('gallery.urls')),`` to your ``urls.py`` In your ``application/models.py`` create the content type:: from gallery.models import GalleryContent Page.create_content_type(GalleryContent) * run ``python manage.py syncdb`` * add ``{{ feincms_page.content.media }}`` (or media.js and media.css) to the ``<head>`` of your template. Usage ----- For each type, there is a gallery template, a JavaScript and CSS. They are in the folder templates/content/gallery, or static/content/gallery. For the types carousel, panel and product there is a link to the document page as a comment in the JS file. To customize the gallery to your site, it's best to copy the CSS and JS in your own media folder and edit it there. The configurations are stored in separate files. To be able to adjust fancybox.init(), the gallery.js file from the gallery/media folder must be copied to the project media folder. It is possible to define a template fallback, if a gallery contains only one image. E.g. product.html has the fallback template image_product.html. You can use standard types or define your own gallery types like this:: from gallery import specs from gallery.models import GalleryContent GALLERY_TYPES = [ specs.ClassicLightbox(), # standard type specs.Type( verbose_name=_('Fancy paginated gallery'), paginated=True, paginate_by=12, orphans=4, template_name='fancy_gallery.html', media={'css' : {'all' : ('gallery/gallery.css', 'lib/fancybox/jquery.fancybox-1.3.1.css'),}, 'js' : ('gallery/gallery.js', 'lib/fancybox/jquery.fancybox-1.3.1.pack.js') } ) ] Page.create_content_type(GalleryContent, regions=('main',), types=GALLERY_TYPES) When replacing an image file in the admin frontend, you have to save the page for the thumbnail to update itself. Release History --------------- - 1.2.3: Rename popup parameter to be consisten with newer Django versions. - 1.2.2: The latest version compatible with Django 1.5


نیازمندی

مقدار نام
>=3.2 Django
- django-admin-ordering
>=22.2.0 FeinCMS


نحوه نصب


نصب پکیج whl feincms-gallery-1.3.1:

    pip install feincms-gallery-1.3.1.whl


نصب پکیج tar.gz feincms-gallery-1.3.1:

    pip install feincms-gallery-1.3.1.tar.gz