Giter Club home page Giter Club logo

django-organice's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

django-organice's Issues

pip install broken with pip > 1.4.1 (Could not find a version that satisfies the requirement django-cms==2.4.3-support)

When installing django-organice with pip 1.5.4 from PyPI pip complains about not being able to find an appropriate version of django-cms:

Downloading/unpacking django-cms==2.4.3-support (from django-organice)
  Could not find a version that satisfies the requirement django-cms==2.4.3-support (from django-organice) (from versions: 2.4.3, 3.0, 3.0.1, 3.0.2, 2.0.1, 2.0.2, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 2.1.5, 2.2.1, 2.2, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 3.0.1, 3.0.2, 3.0)
Cleaning up...
No distributions matching the version for django-cms==2.4.3-support (from django-organice)

This problem is related to changes of pip default behavior in version 1.5, which only allows resources from PyPI, and verified for security reasons. See also: pypa/pip#1428

"OSError: [WinError 193] %1 is not a valid Win32 application" when calling organice-setup

Following the documentation and calling "organice-setup example", I get:

(env) U:\organice\intranet>organice-setup example
Generating project example ...
Traceback (most recent call last):
  File "U:\organice\env\Scripts\organice-setup-script.py", line 9, in <module>
    load_entry_point('django-organice==0.3.dev1', 'console_scripts', 'organice-setup')()
  File "u:\organice\env\lib\site-packages\organice\bin\organice_setup.py", line 577, in startproject
    _create_project()
  File "u:\organice\env\lib\site-packages\organice\bin\organice_setup.py", line 123, in _create_project
    code = call(['django-admin.py', 'startproject', projectname, '.'])
  File "c:\users\mkane\appdata\local\programs\python\python35-32\Lib\subprocess.py", line 560, in call
    with Popen(*popenargs, **kwargs) as p:
  File "c:\users\mkane\appdata\local\programs\python\python35-32\Lib\subprocess.py", line 950, in __init__
    restore_signals, start_new_session)
  File "c:\users\mkane\appdata\local\programs\python\python35-32\Lib\subprocess.py", line 1220, in _execute_child
    startupinfo)
OSError: [WinError 193] %1 is not a valid Win32 application

I'm on Windows 10 and using Python 3.5

'NoneType' object has no attribute '_base_manager' (django-tagging)

With the Organice v0.3, Django 1.8.8, django-tagging 0.4, when I go into the Admin > Tagging > Tagged items the following error occurs both under Python 2.7.6 and Python 3.4.3:

'NoneType' object has no attribute '_base_manager'

Request Method:     GET
Request URL:        http://127.0.0.1:8000/admin/tagging/taggeditem/
Django Version:     1.8.8
Exception Type:     AttributeError
Exception Value:    'NoneType' object has no attribute '_base_manager'
Exception Location: /home/username/.virtualenvs/django-organice/local/lib/python2.7/site-packages/django/contrib/contenttypes/models.py in get_object_for_this_type, line 194

Error during template rendering

In template /home/username/.virtualenvs/django-organice/local/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list.html, error at line 91

'NoneType' object has no attribute '_base_manager'

89        {% block result_list %}
90            {% if action_form and actions_on_top and cl.show_admin_actions %}{% admin_actions %}{% endif %}
91        {% result_list cl %}     
92            {% if action_form and actions_on_bottom and cl.show_admin_actions %}{% admin_actions %}{% endif %}
93        {% endblock %}

Add inventory management

Everybody needs to keep track of their belongings, one day or the other. This is true for individuals, families, sports clubs, and corporate organizations alike. It's called inventory management.

Django Organice should include an app like that to allow any user to track their belongings.

Design Notes

  • The users should be able to track their belongings themselves. It should not be a solution that is made for central administration by a few select in power (aka "backoffice").
  • It might be worth clarifying how this would integration with a "Shop" component that Django Organice has or needs to have (for selling or giving away stuff); maybe that can be reused, but the "simple integration" into the user profile needs to be thought of.

Use Cases

  1. As a company / development or design agency / etc.
    I want my employees to be able to easily note down details about the computers and peripherals they own
    so that they can keep track of their stuff themselves
    and update the list of things (hardware) they hold themselves.
  2. As a sports club
    I want to assign sports material, balls, team shirts, swimming caps (not yet sold), tables, coffee machine (for events), etc. to either a "role", "group" or "person" of my club
    so that it's easy to keep track of who (which team, which people) has/have what.
  3. As an accountant, head of family, "responsible for everything", etc.
    I want to be able to list all inventory items, optionally filter or sort them, print them out, etc.
    so that I can help keeping things under control
    and I should be allowed to pass that privilege on to others
    (if it's not enabled for everyone by default, which maybe is a good idea!).

Potentially Useful Apps

organice-setup, version conflict issue : installs Django1.5.12 but requires Django>=1.6

First, please know that I tried to post this issue on the StackOverflow but the tag django-organice is not working. So I used the tags proposed by default*.

I have installed Django-organice (version 0.2) as described in the installation docs (http://docs.organice.io/en/latest/installation.html). All packages were installed but when I execute it $ organice-setup myexample
it gives the following error message

Traceback (most recent call last):
File "/pathtomyvirtualenvs/bin/organice-setup", line 5, in <module>
    from pkg_resources import load_entry_point
File "/pathtomyvirtualenvs/local/lib/python2.7/site-packages/pkg_resources.py", line 2720, in <module>
    parse_requirements(_requires_), Environment()
File "/pathtomyvirtualenvs/local/lib/python2.7/site-packages/pkg_resources.py", line 592, in resolve
    raise VersionConflict(dist,req) # XXX put more info here
pkg_resources.VersionConflict: (Django 1.5.12 (/pathtomyvirtualenvs/lib/python2.7/site-packages), Requirement.parse('Django>=1.6'))

Thank you for your help (I am a newbie, please let me know if additional log information is needed)

*http://stackoverflow.com/questions/32047547/organice-setup-version-conflict-issue-installs-django1-5-12-but-requires-djan

Another Install Issue

djangocms_picture.Picture.picture: (fields.E300) Field defines a relation with model 'Image', which is either not installed, or is abstract.
djangocms_picture.Picture.thumbnail_options: (fields.E300) Field defines a relation with model 'ThumbnailOption', which is either not installed, or is abstract.

Install Instructions fail

I've followed the Readme and Docs install instructions but they end with errors.

raise ImproperlyConfigured('%s cannot be imported' % model_path)
django.core.exceptions.ImproperlyConfigured: cmsplugin_zinnia.placeholder.EntryPlaceholder cannot be imported

There seems to be problems with the zinnia and django-cms versions. Ideas?

project is not running via apache

I have installed organice and I am able to set it up. When I try to run the it via apache using wsgi getting the internal server error. Even I use the debug mode the error stays same and I am not able to find the error. There is nothing on the log even after I enabled the debug mode in the apache. I am using. apache, mod_wsgi with virtualenv . is there any way to debug it. The site.wsgi is given below. I have using the same but when it comes to organice its showing the error. I need some one's help to resolve this issue
'#'!/home/organice/virtual/bin/python
import os
import sys
sys.stdout = sys.stderr
sys.path.append('/home/organice')
sys.path.append('/home/organice/virtual')
sys.path.append('/home/organice/virtual/bin')
sys.path.append('/home/organice/organice')
from django.conf import settings
os.environ["DJANGO_SETTINGS_MODULE"] = "organice.project.develop"
os.environ['PYTHON_EGG_CACHE'] = '/home/organice/.python-eggs'

How far is the mailing list component?

How far is the mailing list component? That's something I would very much like to see.

Will you use any packages from pypi or will you build your own?

If you use packages from pypi: which one?

Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.