it/itf
2012-03-12 13:41:38 +05:30
..
api resolved conflicts 2011-10-08 03:03:05 -04:00
app sponsor template + minor css 2012-03-09 19:39:12 +05:30
bestpractices add formfield_overrides to bestpractice stories 2011-11-08 09:31:44 +05:30
boxes resolved conflicts 2011-10-08 03:03:05 -04:00
emailer add fts_fields for emailer 2012-02-18 17:07:42 +05:30
erang resolved conflicts 2011-10-08 03:03:05 -04:00
erang_organised resolved conflicts 2011-10-08 03:03:05 -04:00
festival order 2012-03-10 07:26:50 +05:30
frontpage box_titles, erang images, etc 2012-02-14 12:35:20 +05:30
insidepages object_id weirdoness fixed. 2012-01-13 01:33:41 +05:30
itfcore resolved conflicts 2011-10-08 03:03:05 -04:00
itfprofiles added itfprofiles app 2012-02-02 16:13:34 +05:30
newsfeed resolved conflicts 2011-10-08 03:03:05 -04:00
pages coming soon for events 2011-12-30 18:54:28 +05:30
profiles resolved conflicts 2011-10-08 03:03:05 -04:00
quotes resolved conflicts 2011-10-08 03:03:05 -04:00
scriptbank emailer changes 2011-12-08 09:49:39 -05:00
static sponsor template + minor css 2012-03-09 19:39:12 +05:30
templates some space between sponsor logos 2012-03-12 13:41:38 +05:30
tmp box_titles, erang images, etc 2012-02-14 12:35:20 +05:30
user resolved conflicts 2011-10-08 03:03:05 -04:00
__init__.py added stuff to tree 2010-03-03 19:58:00 +05:30
aldensNotes.txt resolved conflicts 2011-10-08 03:03:05 -04:00
dropandcreatedb.py added stuff to tree 2010-03-03 19:58:00 +05:30
manage.py added stuff to tree 2010-03-03 19:58:00 +05:30
meetingdata.json resolved conflicts 2011-10-08 03:03:05 -04:00
monitor.py added stuff to tree 2010-03-03 19:58:00 +05:30
README.txt resolved conflicts 2011-10-08 03:03:05 -04:00
search_sites.py resolved conflicts 2011-10-08 03:03:05 -04:00
settings.py remove south from installed apps 2012-02-02 16:29:18 +05:30
sqldiff011111.sql emailer changes 2011-12-08 09:49:39 -05:00
TODO resolved conflicts 2011-10-08 03:03:05 -04:00
urls.py created, modified changes + erang css + script to update meeting dates 2012-02-02 15:49:45 +05:30

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

db name = 'theatre' - change if different.

Install Solango:
  svn checkout http://django-solr-search.googlecode.com/svn/trunk/ django-solr-search
  cd django-solr-search
  sudo python setup.py install

  You will also need to install Solr, follow instructions here:
    http://www.screeley.com/djangosolr/install.html#install

Install Django-Multilingual:
  svn checkout http://django-multilingual.googlecode.com/svn/trunk/ django-multilingual
  cd django-multilingual
  sudo python setup.py install

Install Djangologging for debugging (svn checkout http://django-logging.googlecode.com/svn/trunk/ django-logging-read-only):
  svn checkout http://django-logging.googlecode.com/svn/trunk/ django-logging-read-only djangologging
  sudo mv djangologging/ /var/lib/python-support/python2.6/

For Django-Extensions and Graphing Tool:
  sudo apt-get install graphviz graphviz-dev
  sudo easy_install pygraphviz
  Download and install django_extensions: http://code.google.com/p/django-command-extensions/downloads/list
  Add django_extensions to your INSTALLED_APPS in settings.py
  Command to generate PNG visualization of your models: ./manage.py graph_models -a -g -o my_project_visualized.png  
  



 mysqld --verbose --help | grep character-set

Youll probably see:

character-set-server              latin1

You want this to be uft8. To modify it, edit your my.conf file ( /etc/mysql/my.conf on ubuntu ), adding the following lines to the appropriate sections:

[client]
…
default-character-set = utf8

[mysqld]
…
character-set-server=utf8
collation-server=utf8_unicode_ci
init_connect=set collation_connection = utf8_unicode_ci;

Now restart mysql:


sudo /etc/init.d/mysql restart

And alter your existing tables to use the utf8 encoding:


mysql your_db_name

alter table your_table_name convert to character set utf8;

And that should do it.