First time here? Check out the FAQ!
1

How does followit module work?
 

I installed the followit module as per the documentation, restarted my server, but still don't see any option to follow a user. Has this feature truly been implemented? Am I doing something wrong or overlooking something?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
NoahY's avatar
303
NoahY
asked 13 years ago

Comments

see more comments

1 Answer

0

After the "followit" is added to the list of INSTALLED_APPS, and you run syncdb, in the output you should see info on newly created tables for following users.

If it does not tell that the tables were created, then something is wrong. The feature works here and on my development server.

Also a line must be added to your project's top level urls.py.

The app should allow to install the "bridge" tables after registering the models to follow anywhere in the models module. In askbot it is done

try:
    import followit
    followit.register(User) #allow users to follow other users
except ImportError:
    #don't do anything if followit app is not installed on the system.
    pass

This app creates a bridge model programmatically when calling followit.register(some_model_to_follow).

When you run syncdb it will also install any missing tables (but will not remove any unused tables) It is possible to register other models later and run syncdb again.

At the same time it adds methods:

To User (where x is the lowercased name of the model to follow):

  • get_followed_x()
  • is_following() (not sure, maybe it would be better to name it is_following_x() for consistency)
  • follow_x()
  • unfollow_x()

To the followed model - get_followers().

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago, answered 13 years ago
link

Comments

something must be wrong... I added 'followit' to settings.py, and the pattern to urlpatterns in urls.py, then ran `python manage.py syncdb`. It says it synced followit, but I don't see any tables in the database for following... what are the table names that it creates?
NoahY's avatar NoahY (13 years ago)
Noah, could you describe your environment? The table name is "followit_followuser"
Evgeny's avatar Evgeny (13 years ago)
Do you have "followit.register()" call in your askbot/models/__init__.py ?
Evgeny's avatar Evgeny (13 years ago)
I don't have a reference for followit in any of the files in the askbot directory... grep -R "followit" * brings up nothing :(
NoahY's avatar NoahY (13 years ago)
I'm using MySQL, no table that starts with followit exists.
NoahY's avatar NoahY (13 years ago)
see more comments