the db
and those tables were not in there.
Thanks
Christoph
On Thursday, October 22, 2015 at 11:31:11 PM UTC+2, Mike Dewhirst wrote:
>
> On 22/10/2015 10:40 PM, Christoph Knapp wrote:
> > Hi,
> > I have a legacy database and used "python manage.py inspectdb >
the
auth_group table is below.
class AuthGroup(models.Model):
name = models.CharField(unique=True, max_length=80)
class Meta:
db_table = 'auth_group'
I just started with django, so let me know whether you need anything else.
Regards
Christoph
--
You received this mess
Key(AuthPermission)
class Meta:
db_table = 'auth_user_user_permissions'
unique_together = ['user_id', 'permission_id']
For some reason when the code for the django tables is generated it does
not use the correct field names.
Only the other errors le
mission_id = models.ForeignKey(AuthPermission)
class Meta:
db_table = 'auth_user_user_permissions'
unique_together = ['user_id', 'permission_id']
[code]
On Wednesday, October 21, 2015 at 1:11:40 PM UTC+2, Christoph Knapp wrote:
>
> Hi,
> I have
| Tabelle | christoph_knapp
public | protein_information| Tabelle | christoph_knapp
public | protein_sequences | Tabelle | christoph_knapp
public | substrate | Tabelle | christoph_knapp
(17 Zeilen)
If anyone could help with the errors from the django tables (maybe
p you search and navigate the
documentation available on https://docs.djangoproject.com/en/dev/. By the
end of our project, we hope to develop a search interface to make it easier
and more efficient to navigate the Django documentation.
Thank you!
Christoph
--
Christoph Treude, Prin
Thanks, this helped me too 2 years later.. :-)
On Thursday, October 14, 2010 6:23:37 PM UTC+2, reduxionist wrote:
>
> On 14 ต.ค. 2010, at 22:24, glob...@iamsandiego.com wrote:
>
> > Hi Folks,
> >
> > After updating a postgres db for my django app Iam getting this error
> > when I try and save ne
Thanks,
I tracked it down. Nothing to do with WSGI, it's just that SQLite
doesn't support REGEXP on the target platform.
best regards,
Christoph
On Feb 24, 12:22 pm, Tom Evans wrote:
>
> You get a 500 if your view raises an exception. Since you aren't
> showing the
em could be?
django 1.2.5, apache2.
TIA,
best regards,
Christoph
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-us
Hi Diogo,
I had the same problem (and so did others as I found out). As far as I
am aware, there isn't a decent solution. Roberto's approach would
work, alternatively I always ended up creating an app "test" in my
project where I then write the tests in.
Best regards,
Christ
Hi Rene,
I tried to replicate your problem. I selected the 10th of October
2010, 2010-10-10 is set in the field and I can also safe it as such.
So, try again and see if the problem is still there.
Best regards,
Christoph
On Oct 9, 12:46 pm, Rene Vielma wrote:
> Hello
>
> I'
st whether a download was
completed or dropped or the like.)
Comments welcome!
Best regards,
Christoph
On 27 Jul., 22:55, Artem wrote:
> Is there any painless way to make Django able to serve files with one-
> time urls, like in RapidShare?
> First thought - use django.views.static.serve
eople on
this mailing list have no idea what you are doing and probably don't
even care unless it is either interesting or they can help you. I am
happy to help if I can but I don't want to spend time deciphering your
mail.
Best regards,
Christoph
PS: http://www.catb.org/~esr/faqs/smart-questio
uld
> reconfigure the server to have fewer threads and add delays into the
> calculations to make it easier to test.
>
I am writing exams right now but I should test this sometime. Thanks
for pointing it out.
Cheers,
Christoph
--
You received this message because you are sub
y GPL'ed. It would be for people like me, who have
lots of data and want to make them available interactively.
Regards,
Christoph
On Mon, Jun 14, 2010 at 12:13 PM, Ian McDowall wrote:
> As the other posters say, this is not possible with standard HTTP and
> certainly not with Django.
>
send_json(do_something(item)) # send_json() is the crucial
(non-existing) function that I am looking for
return None # or maybe return Done or something like it
Best regards,
Christoph
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
T
) very
much.
I tried it meanwhile and stumbled over the filename myself :),
additionally I omitted the MEDIA_ROOT part as it seems to be done
automatically. If I use it, the img.url output is wrong (shows the
absolute path instead of the relative one).
Christoph
--~--~-~--~~--
s not yet available).
Nevertheless, I'm sure I can use the foreign key id for albums somehow
as part of the path, but how?
Any hint will be appreciated.
Thanks,
Christoph
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
On 8 Mrz., 18:54, Daniel Roseman
wrote:
> On Mar 8, 3:50 pm, Christoph Wegscheider
>
>
>
> wrote:
> > Hi,
> > I have the following model:
> > class Message(models.Model):
> > student = models.ForeignKey(Student, blank=True, null=True)
> >
Hi,
I have the following model:
class Message(models.Model):
student = models.ForeignKey(Student, blank=True, null=True)
message = models.CharField(max_length=200)
I want to filter for:
message_list = Message.objects.filter(student=1)
OR
message_list = Message.objects.filter(student=Non
initially known server side? I could come up with some
handcrafted solution, but I'm looking for best practices here to
avoid unnecessary trouble.
best regards,
Christoph
--~--~-~--~~~---~--~~
You received this message because you are subscribed to th
Theres still a problem with this :(
Request.objects.filter(parameters=1, parameters=2)
is not the same as
Request.objects.filter(parameters=2, parameters=1)
However the following two queries seem to be working as expected now
(i'm pretty sure they didnt work when I tried it the last time - or I
h
Hi,
just did an svn update, your code works. I tried that before but it
wasnt implemented in my older version. Thanks a lot :)
chris
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to t
Hi django-users :)
I'm currently working on my first real django project and got stuck
using the DB API: I defined these models:
---snip---
class RequestParameters(models.Model):
parameter = models.CharField(max_length=64)
value = models.CharField(max_length=64)
class Request(models.Model):
Anton P. Linevich wrote:
> Greeting, Christoph! Mon, Jan 28, 2008 at 08:46:38PM +0100, Christoph.Egger
> wrote:
>> Invalid Command 'SetEnv', perhapes misspelled or defines by a module
>> not included in the server configuration.
>
> Maybe you need
All I found on the net is an forum at
<http://www.experts-exchange.com/Software/Server_Software/Web_Servers/Apache/Q_22010802.html?qid=22010802>
which unfortunately doesn't view anythin unless you pay.
Any advice for me?
Christoph
signature.asc
Description: OpenPGP digital signature
Christoph Egger wrote:
> Christoph Egger wrote:
[..]
>
> Well sorry for asking to early. These things seem to be solved by
> creating a File templatetags.py in the appropriate app and adding a
> __str__() Function to the models.
>
> But now there is an
>
> Attribute
Christoph Egger wrote:
> Hi
>
> I've two problems I can't solve with the documentation.
>
> 1. I was adviced to use Inclusion-Tags for my Menu but I can't work out
>how to load the library. {% load proj.app %} doesn't work nor
>{% load proj.app.m
e object« for all my movies. I looked across the
models reference but couldn't make up where to set the title that
should be used for referencing in admin-backend
Thanks
Christoph
--
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: h
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
Christoph Egger wrote:
> Hi
>
> I'm trying to use TinyMCE within flatpages. I followed the instructions
> given on code.djangoproject.com
>
> http://code.djangoproject.com/wiki/AddWYSIWYGEditor
>
> but TinyMCE won
el(Firefox)). Currently I'm serving TinyMCE from my apache and my
Django Project from the test-server but serving both from apache doesn't
change anything.
I could not make the site available as for now the production webserver
isn't set up for django.
Christoph
-BEGIN PGP SIGNATURE--
te-system.
Christoph
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFHh8tpy7PXBwNyJ10RCqQtAJ0Tq4d2LPorDki213jLqGpkw0W8XQCeLhxP
jgmBGZ6+c+vaWyVxmDhDswk=
=0YaO
-END PGP
to some resources for this kind of django webiste
coding and/or give me some advice for it?
Christoph
signature.asc
Description: OpenPGP digital signature
x domain sockets. Domain sockets are great, because you can
restrict access to it with basic filesystem rights.
Christoph
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post
cture,
psychology, physics, cognitive scienence.
If you'd like to look at the current implementation: http://
www.christoph-pingel.de/paragon/objectpage/George_Lakoff
Comments, proposals, criticism are welcome. I'm quite new to django,
so perhaps I'm missing some things to make
Hi there
I tried to install mod_python according to this installation guide:
http://www.djangoproject.com/documentation/modpython/
However, I get a "Internal Server Error (500)" when calling my url. I
do _not_ get any feedback in _any_ apache log file! What could be the
cause?
My System: Debi
ents. Or is PostgreSQL an uncommon DBMS to use with
Django? (btw, is there a reason to prefer psycopg over psycopg2?) I can of
course restrain myself to the "public" schema but my application would
benefit from different schemas.
Kindly
Christoph
--~--~-~--~~~-
37 matches
Mail list logo