Re: [mezzanine-users] Foreign Key to Page Object - Controlling the dropdown text in Admin

2015-02-04 Thread Graham
Practitioner' as expected. The text that displays for each SoulPractitioner is what I want to change (I want it to be only the 'Page title' rather than what I get which in this case is 'Grandparent page title' / 'Parent Page title' / 'Page title') Regards Graham On 05/02/15 06:36, Josh Cartmell wrote

Re: [mezzanine-users] Foreign Key to Page Object - Controlling the dropdown text in Admin

2015-02-04 Thread Graham
://github.com/stephenmcd/mezzanine/blob/master/mezzanine/pages/models.py#L54 On Wed, Feb 4, 2015 at 2:31 PM, Graham greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: Hi Josh Here are the 2 models (simplified to focus on issue) class SoulPractitioner(Page, RichText

Fwd: Re: [mezzanine-users] Foreign Key to Page Object - Controlling the dropdown text in Admin

2015-02-04 Thread Graham
: Re: [mezzanine-users] Foreign Key to Page Object - Controlling the dropdown text in Admin Date: Thu, 05 Feb 2015 11:20:07 +1300 From: Graham greenbay.gra...@gmail.com To: mezzanine-users@googlegroups.com Thanks Josh I think that I am missing something... I have put this code

Re: [mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-06 Thread Graham
(A Practitioner with this name already exists) The database gods can rest easy again :-) Thanks g On 07/02/15 04:41, Josh Cartmell wrote: Hi Graham, why not just check in the clean method if one with the title already exists. Something like: class InheritsFromDisplayable(Displayable

[mezzanine-users] Page title as dropdown?

2015-02-08 Thread Graham
far I have a very cludgy hack which involves duplicating data :-( Could anyone point me in the right direction? TIA Graham -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send

Re: [mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-01 Thread Graham
Hi Eduardo Looking at https://docs.djangoproject.com/en/dev/ref/models/instances/#what-happens-when-you-save and other posts on this issue I think that it has to happen *_/before/_* the pre-save... I just wondered if this problem had a Mezzanine centric solution? g On 02/02/15 16:43, Eduardo

Re: [mezzanine-users] Validating between obejcts when the number of Inline objects = 2

2015-03-07 Thread Graham
ok got started using this technique http://stackoverflow.com/questions/13526792/validation-of-dependant-inlines-in-django-admin g On 07/03/15 17:49, Graham Oliver wrote: Kia Ora (Hello) I have a class 'Happening' that can have one or more 'Spans' In the admin I have the 'Spans' as an Inline

Re: [mezzanine-users] Images, mobile devices and Mezzanine

2015-03-30 Thread Graham
I wouldn't recommend using them as responsive websites seem to be becoming the industry standard c) I would say yes Good luck! On Sun, Mar 29, 2015 at 8:08 PM, Graham Oliver greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: I am confused as to how to go about making

Re: [mezzanine-users] Re: Mezzanine 3.1.10: Can't delete the media files in the admin page

2015-03-26 Thread Graham
can u send a screen shot of the front end error message. Thanks g On 27/03/15 16:49, Wan Hsin Mao wrote: No, I can't. No matter what the type of the file is, the error message is always the same. -- You received this message because you are subscribed to the Google Groups Mezzanine Users

Re: [mezzanine-users] Trying to use 'inline' in Admin with a many to many relationship

2015-03-04 Thread Graham
Thanks Josh I got myself mixed up, your code links were very helpful to me. TabularDynamicInlineAdmin was what I needed Cheers G On 05/03/15 04:45, Josh Cartmell wrote: Hi Graham, M2M don't appear as inlines but appear on the model itself. If you want to go with inlines then you would want

Re: [mezzanine-users] Re: Alternate Fabfile for deploying to VPS

2015-03-04 Thread Graham
Yes I would just like to echo that thanks... Kia Ora as we say in NZ (it can be used to say thanks!) G On 05/03/15 13:08, Stephen McDonald wrote: Hi all, I've just merged this in. Please read back through this thread, as well as the previously mentioned PR for full details. Huge thanks to

Re: [mezzanine-users] Hosted solutions for Mezzanine

2015-03-24 Thread Graham
Hi Luke As far as I know, no such thing exists. The Mezzanine 'friendly' places I have heard of are 1. Webfaction - https://www.webfaction.com/ 2. Digital Ocean - https://www.digitalocean.com/ 3. Python Anywhere - https://www.pythonanywhere.com/ However, 'getting your hands dirty' with things

Re: [mezzanine-users] Mezzazine and tinymce

2015-04-02 Thread Graham
Are you looking to upgrade the version of TinyMCE? g On 03/04/15 08:36, Developer A wrote: Hello together! how can i add more css files for the content in the Tony editor ? tinymce api says : tinymce_css : mycss1.css , mycss2.css The Setting in my tinymce.js is: tinymce_css :

Re: [mezzanine-users] Mezzazine and tinymce

2015-04-03 Thread Graham
mezzanine_tags i18n future staticfiles %} {% block extrahead %} {{ block.super }} link rel=stylesheet href={% static css/my_extra.css %} {% endblock %} Regards Graham On 03/04/15 18:53, Developer A wrote: No I'm trying to integrate multiple stylesheets ! but only for the content of tinymce Editor

Re: [mezzanine-users] Re: Instructions for setting up 4 test environments for the new release (using pyenv)

2015-04-11 Thread Graham
to go back to using 'virtualenv' rather than 'pyenv' for my virtual environments (because I am a bit cautious and virtualenv is the 'standard' product.) and just went with the versions of 2.7.x and 3.4.x versions of Python already installed on Ubuntu Regards Graham On 12/04/15 00:09, Lynoure

[mezzanine-users] Testing note - Moving between Django 1.8 and Django 1.7.7

2015-04-10 Thread Graham
Hi there This from https://docs.djangoproject.com/en/1.8/ref/contrib/contenttypes/#django.contrib.contenttypes.models.ContentType.name Changed in Django 1.8: Before Django 1.8, the name property was a real field on the ContentType model. This can result in a django.db.utils.OperationalError:

Re: [mezzanine-users] Default admin password

2015-04-23 Thread Graham
In a new virtualenv pip install Django==1.7.7 pip install git+https://github.com/stephenmcd/mezzanine.git try that g On 24/04/15 00:16, gspitzlsper...@gmail.com wrote: Hi all, I am new to this list but trying out Mezzanine since a few weeks. I am interested in multi language sites and

Re: [mezzanine-users] Some newbie questions for someone moving from WP to mezzanine

2015-04-29 Thread Graham
. It could be useful to give you a background as to where Mezzanine came from. I have heard that Vimeo may not be super accessible. Let me know if you have problems accessing the video... Take Care Graham On 30/04/15 06:52, Brandon Keith Biggs wrote: Hello, I have been looking around the web

[mezzanine-users] Webfaction fabfile with Django 1.7.7 and development version of Mezzanine

2015-05-04 Thread Graham
, _ = Site.objects.get_or_create(id=settings.SITE_ID);site.domain = 'orotau.webfactional.com';site.save();\ (py27_dj177)graham@graham-laptop:~/Dropbox/mp_soul_whero$ -- T : 021 081 71732 -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group

Re: [mezzanine-users] Re: Webfaction fabfile with Django 1.7.7 and development version of Mezzanine - More detailed info

2015-05-05 Thread Graham
(full_code, show=False) return result On 06/05/15 12:54, Graham Oliver wrote: I have tracked this error to the line https://github.com/jerivas/mezzanine-webf/blob/master/fabfile.py#L446 site, _ = Site.objects.get_or_create(id=settings.SITE_ID);) I tried replacing it with Site.objects.filter(id

Re: [mezzanine-users] Checking for foreign key in clean method - Django 1.77 vs 1.8

2015-04-16 Thread Graham
Yep thanks, have done Cheers g On 17/04/15 12:03, Stephen McDonald wrote: Not sure myself, but it might be a better question for the much wider django-users list. On Thu, Apr 16, 2015 at 12:36 PM, Graham greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: Hi guys I

[mezzanine-users] NZ Python User Group - Presentation - Grappling with Mezzanine

2015-04-12 Thread Graham
Hi there Here is the 'beta' version https://docs.google.com/presentation/d/1-6lalwADM4CcPKmL567WEWbR3vWNIkkeUTawlFnPXrM/edit?usp=sharing Feel free to comment if you wish... Take Care G -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To

Re: [mezzanine-users] Mezzanine is opinionated - It makes choices for you

2015-04-12 Thread Graham
a decision on whether they should source these components from libraries or build them themselves, and often painfully, how they'll all glue together - this is all done for you, inherently in an opinionated way. On Mon, Apr 13, 2015 at 12:28 PM, Graham greenbay.gra...@gmail.com mailto:greenbay.gra

Re: [mezzanine-users] NZ Python User Group - Presentation - Grappling with Mezzanine

2015-04-12 Thread Graham
McDonald wrote: Looks great Graham - good luck with the talk! On Mon, Apr 13, 2015 at 2:59 PM, Graham greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: Hi there Here is the 'beta' version https://docs.google.com/presentation/d/1

Re: [mezzanine-users] PostgreSQL version on terminal

2015-04-17 Thread Graham
: 9.3.6 hth, ken On Fri, Apr 17, 2015 at 9:14 PM, Graham Oliver greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: Just started using PostgreSQL and notice that on the terminal when I execute the runserver command the PostgreSQL version comes up as PostgreSQL

[mezzanine-users] Starting Server for Django 1.7 and 1.8 (testing)

2015-04-06 Thread Graham
Hi there Just wondering what the precise commands should be when I am starting the server for Django 1.7 and 1.8 for the testing Is it still ? $ mezzanine-project myproject $ cd myproject # Create a database $ python manage.py createdb # Run the web server $ python manage.py runserver or

Re: [mezzanine-users] Re: Testing of new release - first 'result'?

2015-04-05 Thread Graham
Yeah could do As this is the first time I have done testing or used pyenv I thought perhaps I had made a mistake in my setup. If you could just check this out. pip install --egg pyenv sudo apt-get build-dep python2.7 pyenv install 2.7.9 pyenv virtualenv 2.7.9 py2.7.9-dj1.7 pyenv activate

Re: [mezzanine-users] Re: Testing of new release - first 'result'?

2015-04-05 Thread Graham
ok thanks your response gave me the clue I was using Django 1.7 not 1.7.7 When I uninstalled Django 1.7 and installed 1.7.7 instead all errors (apart from the expected test runner warning) went away. Thanks g On 06/04/15 14:15, Eduardo Rivas wrote: Hmm, weird, as I'm testing out master with

[mezzanine-users] Testing of new release - first 'result'?

2015-04-05 Thread Graham
file was not being picked up With Python 2.7.9 and Django 1.7 below is what happens Advice on what to do next please Regards G (py2.7.9-dj1.7)graham@graham-laptop:~/mp-py2.79-dj1.7$ python manage.py createdb --settings=settings /home/graham/.pyenv/versions/py2.7.9-dj1.7/lib/python2.7/site

[mezzanine-users] Testing an existing app in the new (Django 1.7 / 1.8 / Mezzanine environment) - seeking guidance

2015-04-07 Thread Graham
Hi there I am already developing a Mezzanine app using the *existing* version of Mezzanine. I would like to be able to test it using the new (Django 1.7 / 1.8 / Mezzanine environment). I have set up a new vanilla Django 1.7 / 1.8 / Mezzanine environment but I can't work out how to move the

Re: [mezzanine-users] Testing an existing app in the new (Django 1.7 / 1.8 / Mezzanine environment) - seeking guidance

2015-04-07 Thread Graham
, Graham greenbay.gra...@gmail.com mailto:greenbay.gra...@gmail.com wrote: Hi there I am already developing a Mezzanine app using the *existing* version of Mezzanine. I would like to be able to test it using the new (Django 1.7 / 1.8 / Mezzanine environment). I have set up

Re: [mezzanine-users] Re: Testing an existing app in the new (Django 1.7 / 1.8 / Mezzanine environment) - seeking guidance

2015-04-07 Thread Graham
Q : Are you using migrations in soulapp2? A : I don't think so. I wasn't using South because I knew that it was going to be rolled into Django... When I did a schema change I just deleted the table and did a syncdb g On 08/04/15 13:54, Eduardo Rivas wrote: I think you meant to post to this

Re: [mezzanine-users] Re: new release?

2015-04-08 Thread Graham
migrate --fake-initial 4. pip uninstall south Thanks g On 08/04/15 20:54, Mathias Ettinger wrote: If you never created migration for south, it might be possible that you won't even have to use the --fake-initial option. But yeah, it is the way to go. Le 08/04/2015 10:50, Graham a écrit

Re: [mezzanine-users] Re: new release? - cannot import name 'find_template_loader'

2015-04-08 Thread Graham
from Github. On 4/9/15, Graham Oliver greenbay.gra...@gmail.com wrote: Django 1.8 Python 3.4.3 Accessing the admin ImportError at /admin/login/ cannot import name 'find_template_loader' Request Method: GET Request URL: http://127.0.0.1:8000/admin/login/?next=/admin/ Django Version: 1.8

Re: [mezzanine-users] PyTexas talk

2015-06-08 Thread Graham
, https://vimeo.com/103614826 and my own experiences. Good luck Graham On 09/06/15 09:02, Micah Yoder wrote: Hi, Any Mezzanine folks planning to be at PyTexas this year and talk about it? I'm thinking of submitting a talk proposal to introduce Mezzanine as the hidden gem of the django

Re: [mezzanine-users] Suggestions for PyCon talk on Mezzanine

2015-06-04 Thread Graham
new things could be worth mentioning such as 'multilingual support'. The other thing I noticed about Mezzanine is that it is independent of any corporate (unlike some of the other well-known Python CMS's). Good luck Graham On 04/06/15 15:22, Stephen McDonald wrote: Those are all great ideas

Re: [mezzanine-users] Theming best practice: Bootstrap or bare-bones?

2015-05-29 Thread Graham
to the error you are getting... g /home/graham/Virtual-Environments/throwaway/bin/pip run on Sat May 30 14:22:48 2015 Downloading/unpacking mezzanine-robotonotebook Getting page https://pypi.python.org/simple/mezzanine-robotonotebook/ URLs

Re: [mezzanine-users] Theming best practice: Bootstrap or bare-bones?

2015-05-29 Thread Graham
Hi Simon I have had a look at this blog post http://peterdowns.com/posts/first-time-with-pypi.html It says that you need a setup.py file which I am not seeing on your repo... cheers g On 30/05/15 13:22, Simon Griffee wrote: Thanks, Mathias. I've gone ahead and tried making something

Re: [mezzanine-users] Re: The Readme on Github - I would like to give it a revamp

2015-05-24 Thread Graham
. thanks, Brandon Keith Biggs http://www.brandonkeithbiggs.com/ On 5/24/2015 11:20 AM, Graham wrote: Hello all... I am also interested in the 'who' and the 'why' and this may help us decide what should go in the README... *Who* are we designing the README for? *Why* would the reader

Re: [mezzanine-users] Re: The Readme on Github - I would like to give it a revamp

2015-05-26 Thread Graham
Thanks Eduardo That fixes it Now I have lots of 'unexpected indentation' errors when parsing README.RST with docutils 0.12 I have had a good Google but this problem remains unsolved. Will return to this in the morning Thanks again g On 26/05/15 19:47, Eduardo Rivas wrote: Rename

[mezzanine-users] Getting hold of the model instance when I save a Blog from the admin

2014-11-12 Thread Graham Oliver
' but they all seem to be classes (I am clearly missing something!) Your help would be most welcome, Regards Graham def save_form(self, request, form, change): Super class ordering is important here - user must get saved first. OwnableAdmin.save_form(self, request, form

Re: [mezzanine-users] Getting hold of the model instance when I save a Blog from the admin

2014-11-12 Thread Graham Oliver
Hi Kenneth Thanks for the guidance I want to use the saved instance to create some other very similar instances. The link looks like the way to go for me Thanks G On Thursday, 13 November 2014 02:07:26 UTC+13, Kenneth Bolton wrote: Hi Graham, Could you explain the goal you are trying

[mezzanine-users] Mezzanine Agenda 'EVENT_SLUG' - trying to change

2014-12-25 Thread Graham Oliver
TIA Graham btw Merry Christmas -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegroups.com. For more options, visit https

[mezzanine-users] Foreign Key to Page Object - Controlling the dropdown text in Admin

2015-02-04 Thread Graham Oliver
a bit stuck on how to do this with Mezzanine Would anyone be able to help me? TIA Graham -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users

Re: [mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-05 Thread Graham Oliver
it b) My coding skills are limited and I get nervous at this stage with 'super' calls Anyway thanks for your help and if and when my coding skills improve I may revisit this hack... g On Monday, 2 February 2015 17:17:00 UTC+13, Eduardo Rivas wrote: Hi Graham. Why do you say this needs to happen

[mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-12 Thread Graham Oliver
The code I posted prevents any editing of existing records :-( To remove this bug it needs to be preceded by if not self.pk: Regards Graham I have a model which inherits from Displayable, giving me a 'title' field. What would be a good strategy to ensure the uniqueness of the 'title' field

[mezzanine-users] Getting started with Git

2015-02-19 Thread Graham Oliver
Hi there I have been attempting to get my head around Git and here is a blog post sharing my learning. Thanks to Stephen McDonald and Ross Laird for the inspiration. Mezzanine rocks! http://gitstarted.blogspot.co.nz/2015/02/git-for-one.html Graham -- You received this message because you

[mezzanine-users] Re: How to use TinyMCE V4?

2015-02-19 Thread Graham Oliver
Hi Daniel You could also look at this https://github.com/AlexHill/tinymezzce4 Note that I hit a road block https://github.com/AlexHill/tinymezzce4/issues/2 Cheers g On Thursday, 19 February 2015 18:51:25 UTC+13, Daniel Herrera wrote: I want to use the TinyMCE WYTIWYG editor at its latest

Re: [mezzanine-users] Re: Site working perfectly in development, but admin and static pages are crashing in production

2015-03-15 Thread Graham Oliver
trapping in this function? g On 15 March 2015 at 22:11, Philip Southwell p...@zoothink.com wrote: Thanks Graham - that's where I was looking but I think I have that covered already. My urls.py is below urls.py from __future__ import unicode_literals from django.conf.urls import patterns

[mezzanine-users] Validating between obejcts when the number of Inline objects = 2

2015-03-06 Thread Graham Oliver
to validate BETWEEN these objects. Can anyone point me in the right direction with this? I have googled around but no luck. Regards Graham -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from

[mezzanine-users] Images, mobile devices and Mezzanine

2015-03-29 Thread Graham Oliver
I am confused as to how to go about making a Mezzanine web site I am developing work well with mobile devices (especially images). Initially I thought that I had to use Mobile templates, but I have noticed that, for example, with a bootstrap Carousel on the home page (with large images), it

Re: [mezzanine-users] Re: Mezzanine 3.1.10: Can't delete the media files in the admin page

2015-03-30 Thread Graham Oliver
properly. Can you modify the error messages of the views.py file of filebrowser_safe so we know which one is occuring? Le vendredi 27 mars 2015 07:47:29 UTC+1, Graham Oliver a écrit : yes I was just wondering if there was anything more helpful with the error message. I have searched the code base

Re: [mezzanine-users] Re: Mezzanine 3.1.10: Can't delete the media files in the admin page

2015-03-27 Thread Graham Oliver
I also found this in the mailing list http://grokbase.com/p/gg/mezzanine-users/1326ek5pna/commenting-gives-me-an-error-when-debug-is-set-to-off On 27 March 2015 at 19:07, Wan Hsin Mao cindy55212...@gmail.com wrote: I use Apache2.2, so there shouldn't be file permission problems if I set my

Re: [mezzanine-users] Re: Mezzanine 3.1.10: Can't delete the media files in the admin page

2015-03-27 Thread Graham Oliver
yes I was just wondering if there was anything more helpful with the error message. I have searched the code base and I can only find the text 'An error occurred' in one place https://github.com/orotau/mezzanine/blob/master/mezzanine/core/static/mezzanine/js/editable.js#L19 I don't know if that

Re: [mezzanine-users] Re: Mezzanine 3.1.10: Can't delete the media files in the admin page

2015-03-26 Thread Graham Oliver
Can you delete an image file ok? Like a jpg or a png? On 27 March 2015 at 16:07, Wan Hsin Mao cindy55212...@gmail.com wrote: I got this message when I run the manage.py runserver command:

Re: [mezzanine-users] Trying to integrate Mezzanine to another project

2015-03-31 Thread Graham Oliver
Perhaps the top answer here can help? http://stackoverflow.com/questions/2606194/django-error-message-add-a-related-name-argument-to-the-definition On 1 April 2015 at 12:27, Melvin Ramos melvin.ramos1...@gmail.com wrote: Hello, I'm tryin to integrate Mezzanine to GeoNode. I added all I needed

[mezzanine-users] Trying to use 'inline' in Admin with a many to many relationship

2015-02-27 Thread Graham Oliver
I have a class 'Happening' with a ManyToMany relationship to 'Span' as follows class Happening(Page, RichText): spans = models.ManyToManyField(Span) class Span(Slugged): start_date = models.DateField() end_date = models.DateField() start_time = models.TimeField end_time =

Re: [mezzanine-users] Re: new release? - TypeError at /search/ unsupported operand type(s) for |=:

2015-04-14 Thread Graham Oliver
Python 3.4 Django 1.8 Request Method: GET Request URL: http://192.168.1.81:8000/search/?q=samoa Django Version: 1.8 Exception Type: TypeError Exception Value: unsupported operand type(s) for |=: 'list' and 'list' Exception Location: /home/graham/Virtual-Environments/test-py3-dj1.8

Re: [mezzanine-users] Re: new release? - TypeError at /search/ unsupported operand type(s) for |=:

2015-04-14 Thread Graham Oliver
'], [], [class 'mezzanine.pages.models.Page'], [class 'mezzanine.pages.models.Page'], [class 'mezzanine.pages.models.Page']] cheers g My best guess is that it is something to do with On Tuesday, 14 April 2015 19:00:18 UTC+12, Graham Oliver wrote: Python 3.4 Django 1.8 Request Method: GET Request

[mezzanine-users] Search synonyms

2015-04-27 Thread Graham Oliver
Hello all Is there a way to add 'search synonyms'? An example, if a user searches for the word 'qi' searches will behave as if the user has searched for 'qi' or 'chi' and similarly if a user searches for the word 'chi' searches will behave as if the user has searched for 'qi' or 'chi' Thanks g

[mezzanine-users] Re: new release?

2015-04-29 Thread Graham Oliver
Hi Gavin My understanding is that it is done on a best-efforts basis, so the short answer to your question is 'no'. Cheers g On Wednesday, 29 April 2015 10:06:51 UTC+12, Gavin Wahl wrote: Is there a timeline for a release that supports Django 1.8? -- You received this message because you

[mezzanine-users] Re: Webfaction fabfile with Django 1.7.7 and development version of Mezzanine - More detailed info

2015-05-05 Thread Graham Oliver
#standalone-scripts http://django.readthedocs.org/en/latest/ref/applications.html#applications-troubleshooting I am wondering if this would be an issue for *all* fabfile use and not just for webfaction. Therefore it may be a 'release blocker'? Cheers g On Tuesday, 5 May 2015 14:16:21 UTC+12, Graham

[mezzanine-users] Re: Introducing Mezzanine's Core Development Team

2015-05-11 Thread Graham Oliver
So awesome! In New Zealand there is a Māori proverb that asks... He aha te mea nui (What is the most important thing?) the answer being... He tāngata, he tāngata, he tāngata (It is people, it is people, it is people!) Glad to be part of this community, with this group of core developers :-) g

[mezzanine-users] moving data from development to production and the twitter model

2015-05-15 Thread Graham Oliver
, I see this comment '[108.59.11.112] out: Creating example.com Site object'. Would it be a good idea to have something similar for the twitter objects that are created? TIA Graham -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe

[mezzanine-users] Re: Using Mezzanine with Python 3: package compatibility

2015-05-15 Thread Graham Oliver
Hi Christian In terms of MySQL vs PostgreSQL have a look at https://docs.djangoproject.com/en/1.7/topics/migrations When I read 'PostgreSQL is the most capable of all the databases here in terms of schema support' and 'MySQL lacks support for transactions around schema alteration operations,

Re: [mezzanine-users] Re: new release? - TypeError at /search/ unsupported operand type(s) for |=:

2015-04-15 Thread Graham Oliver
ok retested on Django 1.77 and 1.8 - all is good On Wednesday, 15 April 2015 09:48:34 UTC+12, Stephen McDonald wrote: Good find Graham, thanks a lot for tracking it down. That's fixed now: https://github.com/stephenmcd/mezzanine/commit/3ad1a6a9ce049e14fe9d120be1226844ad201baf On Tue, Apr

[mezzanine-users] PostgreSQL version on terminal

2015-04-17 Thread Graham Oliver
Just started using PostgreSQL and notice that on the terminal when I execute the runserver command the PostgreSQL version comes up as PostgreSQL 9.0306.3.06.6 When I run psql --version I get 9.3.6 Not sure if they should match or not g -- You received this message because you are

[mezzanine-users] Re: new release?

2015-04-07 Thread Graham Oliver
Django 1.7.7, Python 3.4.3 python manage.py runserver Performing system checks... System check identified some issues: WARNINGS: ?: (1_6.W001) Some project unittests may not execute as expected. HINT: Django 1.6 introduced a new default test runner. It looks like this project was

[mezzanine-users] Re: new release?

2015-04-07 Thread Graham Oliver
Same results on Python 2.7.9 I notice that all of the 4 tests except the first one had this text 'You have unapplied migrations; your app may not work properly until they are applied. Run 'python manage.py migrate' to apply them.' -- You received this message because you are subscribed to

Re: [mezzanine-users] Re: new release? - cannot import name 'find_template_loader'

2015-04-08 Thread Graham Oliver
'find_template_loader' Exception Location: /home/graham/.pyenv/versions/py3.4.3-dj1.8/lib/python3.4/site-packages/mezzanine/template/loader_tags.py in find_template, line 62 Python Executable: /home/graham/.pyenv/versions/py3.4.3-dj1.8/bin/python Python Version: 3.4.3 Python Path: ['/home

Re: [mezzanine-users] After deploy I have empty database :(

2015-05-16 Thread Graham Oliver
Yes this took me quite a while to understand :-) I have gone through this process on webfaction recently Happy to answer any questions that you have. g On 17 May 2015 at 11:54, Ken Bolton kenbol...@gmail.com wrote: Hi Taedori, Mezzanine does not move your data! Migrations with the `migrate`

Re: [mezzanine-users] Misc script: Fix for re-adding the django_content_type.name column in Django 1.7

2015-06-04 Thread Graham Oliver
Hi Sam Useful for me, thanks! I came across this problem when testing the dev version of Mezzanine in April https://groups.google.com/forum/#!searchin/mezzanine-users/testing$201.7$201.8/mezzanine-users/fuocmjotHWs/X8t36Nc3uwYJ I was just keeping 2 versions of the data. Your solution is way

Re: [mezzanine-users] Theming best practice: Bootstrap or bare-bones?

2015-06-03 Thread Graham Oliver
on your computer - At a guess, the project's showing up on PyPI as you did the register step, but possibly you forgot the upload step. On Fri, May 29, 2015 at 8:26 PM, Simon Griffee si...@hypertexthero.com javascript: wrote: Hi Graham, Those are the instructions I

[mezzanine-users] Re: TinyMCE 4

2015-06-26 Thread Graham Oliver
Thanks Steve and all others who contributed to integrating TinyMCE 4 Awesome! g On Saturday, 27 June 2015 10:21:32 UTC+12, Stephen McDonald wrote: Hi all, I've just merged into Mezzanine the work Alex Hill has done on upgrading TinyMCE to version 4 - it looks a lot better! Please help

[mezzanine-users] Re: new release? - Possible Mezzanine Bug in relation to mezzanine.jupo.org install

2015-05-27 Thread Graham Oliver
Hello everyone Using PostgreSQL in a virtual environment When I go through the install process for the mezzanine.jupo.org web site I am encountering a problem with the latest Django version 1.8.2 Note the problem does *not* occur with 1.7.8 Here is a description and stack trace of the problem

Re: [mezzanine-users] Mezzanine 4.0 is released

2015-07-09 Thread Graham Oliver
Awesome, thanks Stephen ! g On 10 July 2015 at 11:04, Stephen McDonald st...@jupo.org wrote: Hi all, The new 4.0 release of Mezzanine is finally up on PyPI after 10 months since the last release - a lot has happened! The project site ( mezzanine.jupo.org) hasn't been upgraded yet, that will