Re: Copyright issues for an application developed using django, python and mySQL

2008-07-05 Thread Nagu

Thank you again. I will start a discussion with our company lawyers
regarding this.

On Jul 4, 7:21 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Fri, 2008-07-04 at 19:03 -0700, Nagu wrote:
> > Thank you very much for your explanations. From the above
> > explanations, I can infer that I do not have to worry about any
> > copyright or licensing issues. Please correct me if I am wrong.
>
> Well, you have to respect them and know what the valid licensing issues
> are. But they probably don't interfere with what you're trying to do.
> With all due respect, if your company is worried about this, the only
> correct answer is "talk to a lawyer". Open Source licenses aren't
> particularly hard to understand, but when they are also interacting with
> distributed proprietary stuff and when a corporation is worried about
> their liabilities, taking advice solely from an internet mailing list is
> probably not a good idea.
>
> But Open Source software is designed to be used. Freely and without
> onerous restrictions. So the sort of stuff you're talking about is
> exactly in line with those goals.
>
> Regards,
> Malcolm
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Copyright issues for an application developed using django, python and mySQL

2008-07-04 Thread Nagu

Thank you very much for your explanations. From the above
explanations, I can infer that I do not have to worry about any
copyright or licensing issues. Please correct me if I am wrong.

A little context may help here. Our company is a reseller. We sell
computer products. I make mathematical models for our company. Our
sales force already have CRM (Customer Relationship Management) typish
thing to interact with the customers in driving business.  This new
toy, recommendation engine, can help them attaching more items to the
current order.

All I want to do is to help the sales force with this new
recommendation system while they are interacting with customers over
the phone. They are going type an internal web address, and enter a
customer id in a search box on the webpage to get recommendations of
numerous products to cross-sell and up-sell.

We are not going to sell this application to anyone, as the underlying
the data would be meaningless to others and no distribution involved
here too.

Thank you again.
Nagu

On Jul 3, 6:36 pm, Dan Ellis <[EMAIL PROTECTED]> wrote:
> There are no licensing issues with either Python or Django, which are
> both distributed under very liberal licenses (Python Software
> Foundation License and the BSD license respectively).
>
> http://www.python.org/psf/license/http://www.opensource.org/licenses/PythonSoftFoundation.phphttp://code.djangoproject.com/browser/django/trunk/LICENSE
>
> MySQL licensing is complicated, largely because it's gone through a
> few changes over the years. Check the MySQL web site and the Wikipedia
> article (http://en.wikipedia.org/wiki/MySQL#Support_and_licensing),
> but you won't have any problem if all you want to do is to deliver a
> web site that uses MySQL in its back end.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Copyright issues for an application developed using django, python and mySQL

2008-07-03 Thread Nagu

Hi,

I made a small recommendation engine for our company using python,
django, and mySQL. My supervisor and the senior management are worried
about the copyright and licensing issues. They want to find out the
details on how to go about start using it, like quoting python/django/
mySQL specifically on the bottom of the web page or some other thing.

I would like our sales force to start using this new toy to recommend
products to customers. They are going to type an intranet page in
their browser, and enter the customer ID to get the product
recommendations.

How do I go about addressing the copyright and licensing issues? (I do
not know if licensing is the right word here).

Please advice.

Thank you,
Nagu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Support for MS SQL Server

2008-06-24 Thread Nagu

Hi,

After doing some search on Google, Django has some kind of backend
support for MS SQL server. But when I type ado_mssql in my setting.py
file while creating a simple application, it says ad_mssql is not an
avaliable option. Do I need any special patch or something to enable
this? Please advice.

Thank you,
Nagu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django - Apache - mod_python setup

2008-06-24 Thread Nagu

Karen:

Thank you a million Karen. I changed the curly quotes to ordinary
quotes and restarted Apache. It works fine.

I was elated when I accessed the http://cobra.mycompany.com/petview
and saw it working from another machine. This is my first toy with web
application.

Karen, thank you very much again. Is there way I can buy a beer for
you? Or, please buy yourself a beer and please send me the bill. I
will happy to pay for it. Or if you know another way, please let me
know.

Thank you again.
Nagu


On Jun 24, 10:30 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> On Tue, Jun 24, 2008 at 12:38 PM, Nagu <[EMAIL PROTECTED]> wrote:
>
> > Karen:
>
> > I followed the instructions at
> >http://www.djangoproject.com/documentation/modpython/
> > .
>
> > Here are the settings I added to the httpd.conf file:
>
> > 
> >    SetHandler python-program
> >    PythonHandler django.core.handlers.modpython
> >    SetEnv DJANGO_SETTINGS_MODULE petinfosite.settings
> >    PythonDebug On
> >    PythonPath "['C:/django/petinfosite','C:/django/petinfosite/
> > petinfostore']+sys.path"
> > 
>
> I assume you restarted Apache after making this change?
>
> The project (settings.py) is in c:/django/petinfosite/ and the
>
> > application (view.py) is in C:/django/petinfosite/petinfostore/.
>
> You're not getting this far yet, but unless C:/django is already in the
> sys.path, your settings file won't be found with what you've placed in
> PythonPath, since you've included 'petinfosite' in both the settings module
> spec and the PythonPath elements.
>
> > When I accesshttp://cobra.mycompany.com/petview, I get a 404 with the
> > following error:
> > The requested URL /petview was not found on this server.
>
> This is the Apache standard 404 error page, meaning your Location directive
> isn't being used.  First question is did you restart Apache?  Assuming yes,
> I tried cut-and-paste of your  block into an Apache config and
> found that all the quotes (both single and double) in that block are
> "curly", not regular straight quotes.  You want typewriter quotes in your
> Apache config, it's not going to understand the others.  So, if the curly
> variety is really what you have in your config, you either need to configure
> the editor you are using to use regular quotes or find another editor and
> fix the quotes.
>
> Karen
>
> > When I accesshttp://localhost:8000/petview/, it works fine.
>
> > Please help.
>
> > Thank you,
> > Nagu
>
> > On Jun 23, 8:37 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> > > On Mon, Jun 23, 2008 at 7:38 PM, Nagu <[EMAIL PROTECTED]> wrote:
>
> > > > Hi,
>
> > > > I am very new to programming in general. I start to teach myself some
> > > > python and django stuff.
>
> > > > I followed the instructions in the chapter 3 of the book Professional
> > > > Python Frameworks by Moore, Budd, and Wright. Just to give some idea,
> > > > it is a simple pet owner site, select the owner and it displays their
> > > > pets in the browser.
>
> > > > It is working fine from a localhost, i.e. when I type
> > > >http://127.0.0.1:8000/petview.
> > > > Now I want to set it up on a local area network so that I can access
> > > > it from other machine, for example,http://cobra.mycompany.com/petview.
> > > > Here Cobra is the my machine name and mycompany.com is my company
> > > > domain. I do not have access to tinker with mycompany.com. Cobra is a
> > > > windows xp machine attached to the mycompany.com
>
> > > > I installed postgresSQL and Apache and mod_python on the machine
> > > > cobra. Apache is running OK by default. I ranhttp://
> > cobra.mycompany.com
> > > > from another machine, and it displays OK. But when I type
> > > >http://cobra.mycompany.com/petview, I get a 404. I am sure that I am
> > > > doing wrong. I want to learn how to set this kind of settings. Please
> > > > advice.
>
> > > Did you follow the instructions here:
>
> > >http://www.djangoproject.com/documentation/modpython/
>
> > > for how to configure Apache/mod_python to forward requests to your Django
> > > code?
>
> > > Karen
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Django - Apache - mod_python setup

2008-06-24 Thread Nagu

Karen:

I followed the instructions at  
http://www.djangoproject.com/documentation/modpython/
.

Here are the settings I added to the httpd.conf file:


SetHandler python-program
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE petinfosite.settings
PythonDebug On
PythonPath “[‘C:/django/petinfosite’,‘C:/django/petinfosite/
petinfostore’]+sys.path”


The project (settings.py) is in c:/django/petinfosite/ and the
application (view.py) is in C:/django/petinfosite/petinfostore/.

When I access http://cobra.mycompany.com/petview, I get a 404 with the
following error:
The requested URL /petview was not found on this server.

When I access http://localhost:8000/petview/, it works fine.

Please help.

Thank you,
Nagu

On Jun 23, 8:37 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> On Mon, Jun 23, 2008 at 7:38 PM, Nagu <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > I am very new to programming in general. I start to teach myself some
> > python and django stuff.
>
> > I followed the instructions in the chapter 3 of the book Professional
> > Python Frameworks by Moore, Budd, and Wright. Just to give some idea,
> > it is a simple pet owner site, select the owner and it displays their
> > pets in the browser.
>
> > It is working fine from a localhost, i.e. when I type
> >http://127.0.0.1:8000/petview.
> > Now I want to set it up on a local area network so that I can access
> > it from other machine, for example,http://cobra.mycompany.com/petview.
> > Here Cobra is the my machine name and mycompany.com is my company
> > domain. I do not have access to tinker with mycompany.com. Cobra is a
> > windows xp machine attached to the mycompany.com
>
> > I installed postgresSQL and Apache and mod_python on the machine
> > cobra. Apache is running OK by default. I ranhttp://cobra.mycompany.com
> > from another machine, and it displays OK. But when I type
> >http://cobra.mycompany.com/petview, I get a 404. I am sure that I am
> > doing wrong. I want to learn how to set this kind of settings. Please
> > advice.
>
> Did you follow the instructions here:
>
> http://www.djangoproject.com/documentation/modpython/
>
> for how to configure Apache/mod_python to forward requests to your Django
> code?
>
> Karen
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Django - Apache - mod_python setup

2008-06-23 Thread Nagu

Hi,

I am very new to programming in general. I start to teach myself some
python and django stuff.

I followed the instructions in the chapter 3 of the book Professional
Python Frameworks by Moore, Budd, and Wright. Just to give some idea,
it is a simple pet owner site, select the owner and it displays their
pets in the browser.

It is working fine from a localhost, i.e. when I type 
http://127.0.0.1:8000/petview.
Now I want to set it up on a local area network so that I can access
it from other machine, for example, http://cobra.mycompany.com/petview.
Here Cobra is the my machine name and mycompany.com is my company
domain. I do not have access to tinker with mycompany.com. Cobra is a
windows xp machine attached to the mycompany.com

I installed postgresSQL and Apache and mod_python on the machine
cobra. Apache is running OK by default. I ran http://cobra.mycompany.com
from another machine, and it displays OK. But when I type
http://cobra.mycompany.com/petview, I get a 404. I am sure that I am
doing wrong. I want to learn how to set this kind of settings. Please
advice.

Thank you,
Nagu

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---