How to create django custom login page?

2011-04-01 Thread Nge Nge
Hi All

I saved the registered user data into my postgresql database.
Now I have to create login page. I have to check the requested user
name and password are in my database. If user name and password are in
my database, redirect to success.html.  How should I do? Pls advise
me.

Thanks
nge

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: How to disable default authentication/messaging system?

2011-04-01 Thread sanderkrause
I'm not sure whether it's accepted to bump a topic, but does anyone
have any idea as to what my problem could be, or how to fix it?

Kind regards,

Sander

On 31 mrt, 14:51, sanderkrause  wrote:
> In addition to my last message, I have also tried specifying the apps
> with the project name in front of it:
>
> 'uninspiring.auth'
>
> instead of just 'auth' in order to prevent confusion that the
> specified 'auth' module is in fact my own. I don't really want to go
> through the process of renaming the module just because of this issue,
> as it is the most appropriate name that I can think of. Any solutions,
> anyone?
>
> On 31 mrt, 13:57, sanderkrause  wrote:
>
> > My INSTALLED_APPS looks like this currently.
>
> > Note that I did not have this same problem before, when I was using
> > Django 1.2. I recently upgraded to Django 1.3. Could this be part of
> > the problem?
>
> > The only other difference between now and then is that I used to have
> > the entries for contrib.auth and such in the INSTALLED_APPS, but
> > commented out. I don't see how this could affect my current situation
> > though, so my guess is, something changed in Django 1.3. Can anyone
> > confirm or deny this? I didn't see anything different in the
> > documentation.
>
> > INSTALLED_APPS = (
> >     'django.contrib.sessions',
> >     'form_utils',
> >     'org',
> >     'auth',
> >     'entities',
> > )
>
> > On 31 mrt, 13:07, Daniel Roseman  wrote:
>
> > > On Thursday, March 31, 2011 10:10:27 AM UTC+1, sanderkrause wrote:
>
> > > > Because I'm using my own authentication and authorization system, I
> > > > would like to completely disable these standard apps from Django.
>
> > > > I've tried removing the relevant lines from MIDDLEWARE_CLASSES and
> > > > INSTALLED_APPS, but when I use the syncdb command, the default tables
> > > > that come with the default authentication system are still being
> > > > created. Is there a way to prevent this from happening?
>
> > > > Is there maybe another setting that I'm overlooking? Other possible
> > > > variables that could cause these standard apps to be enabled despite
> > > > my efforts?
>
> > > > I also don't use the built-in admin system, so I don't think that
> > > > could be a problem.
>
> > > > Any hints?
>
> > > The only reason syncdb would create the user tables is if contrib.auth is 
> > > in
> > > INSTALLED_APPS. Can you post that?
> > > --
> > > DR.
>
>

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Error: No module named mysql.base when trying to sync.db

2011-04-01 Thread nai
I posted the same question on stackoverflow here:
http://stackoverflow.com/questions/5509755/problem-with-django-syncdb-on-amazon-ec2

Reproduced

Hi all, I'm trying to deploy my project on my EC2 instance. When I run
python manage.py validate I get this error Error: No module named
mysql.base .

I have already installed MySQL-python using yum install MySQL-python.
I can import MySQLdb successfully from the Python interpreter.

I can't seem to figure out what's wrong?

I am using Django 1.3 and Python 2.6 and MySQLdb 1.2.3c1

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread cha
Im waiting 

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread Robbington
Wow thats rude,

poll_votes = the amount of votes for option a/b/c/d etc.

On Apr 1, 9:00 am, cha  wrote:
> Im waiting

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: WxPython and django

2011-04-01 Thread Mike Ramirez
On Thursday, March 31, 2011 07:28:15 pm you wrote:

> You'll need to rewrite the gui code.
> 

You should be able to use the basic html, if it's html and not xml. But you'll 
have to strip all calls to wx to make it work.

Mike

-- 
The final delusion is the belief that one has lost all delusions.
-- Maurice Chapelain, "Main courante"

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread Kenneth Gonsalves
On Fri, 2011-04-01 at 01:00 -0700, cha wrote:
> Im waiting 

for what?
-- 
regards
KG
http://lawgon.livejournal.com
Coimbatore LUG rox
http://ilugcbe.techstud.org/

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Payment Gateways

2011-04-01 Thread Venkatraman S
On Wed, Mar 30, 2011 at 12:19 AM, Micah Carrick wrote:

> I have used Authorize.Net for years and don't have a single complaint.
> For Python/Django interfacing to Authorize.Net, Quantam, or PsiGate I
> use quix.pay, which I also wrote: http://pypi.python.org/pypi/quix.pay/
>

Thanks Micah for this :
http://www.micahcarrick.com/authorize.net-credit-card-form-django.html ;)

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Payment Gateways

2011-04-01 Thread Micah Carrick
No problem. ;)

On Fri, Apr 1, 2011 at 4:17 AM, Venkatraman S  wrote:

>
> On Wed, Mar 30, 2011 at 12:19 AM, Micah Carrick wrote:
>
>> I have used Authorize.Net for years and don't have a single complaint.
>> For Python/Django interfacing to Authorize.Net, Quantam, or PsiGate I
>> use quix.pay, which I also wrote: http://pypi.python.org/pypi/quix.pay/
>>
>
> Thanks Micah for this :
> http://www.micahcarrick.com/authorize.net-credit-card-form-django.html ;)
>
> --
> 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-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
*Green Tackle* - *Environmentally Friendly Fishing Tackle*
www.GreenTackle.com 

 Email: mi...@greentackle.com
 Phone: 971.270.2206
 Toll Free: 877.580.9165
 Fax: 503.946.3106

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread cha

ok .. i know it's the amount of votes for option
how can I get it in python

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: WxPython and django

2011-04-01 Thread Aref
Thank you Mike. This is what I was looking for before wasting time
going down a dead-end road.

On Mar 31, 8:28 pm, Mike Ramirez  wrote:
> On Thursday, March 31, 2011 06:34:42 pm Aref Nammari wrote:
>
> > Hi Calvin,  I think that there is some misunderstanding about what my
> > question was about. Let me try to clarify. Wxpython is a module which is
> > run just like any other python module. It is great for rendering forms,
> > widgets, frames etc...and it has within it an html module. You can embed
> > wxpython within html code.
> > Since wxpython is a python module and if you can run python code in django
> > apps then you should be able to run wxpython code provided the right
> > modules are imported--just like any other python module. What I was
> > thinking of doing is either embed some wxpython code within html to render
> > the different pages of the django app or call wxpython functions from the
> > html template. All the code resides on the server of course. The user
> > interacts with the app through the web page. So the forms would be
> > rendered by wxpython instead of html. I don't know if this is clearer or
> > if what I am thinking of is feasible at all.
>
> It's not feasable at all. Thing is, wxPython is a python bindings to
> wxwidgets, which is a c++ gui framework.  The browser will not know how to
> handle them, this is on purpose.  The browser itself does all the actual
> rendering of widgets from within its html engine, the browser should not know
> about wxwidgets, even if it itself is written in wx, this way.
>
> Don't let how the code is written fool you. wxpython is not going to work the
> way you think it is.  Browsers for security reasons do not execute random code
> and you can not send the widgets over the network that way, You'll need to
> rewrite the gui code.
>
> Mike
>
> --
> * LG loves czech girls.
>  LG: do they have additional interesting "features" other girls don't
> have? ;)
>         -- #Debian

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: How to create django custom login page?

2011-04-01 Thread gladys
I assume you are saving your user data into a
django.contrib.auth.models.User object?

I recommend using django's authentication framework,
http://docs.djangoproject.com/en/dev/topics/auth/ with all its
predefined views for logging in, etc, you will just need to provide
the html pages.

Now, if you want a custom login page, you will need the following:
 * login url in urls.py
 * login view for handling authentication

And your view can have something like this:
def user_login(request):
try:
# you might want to get user and pass from an html POST
# authenticate here using django.contrib's authentication
functions
from django.contrib.auth import authenticate, login
user = authenticate(username=user,password=pass)
if user is not None:
login(request,user)
# redirect to success.html
except MyUser.DoesNotExist:
pass
# render the login page

For more info, 
http://docs.djangoproject.com/en/dev/topics/auth/#authentication-in-web-requests


On Apr 1, 3:03 pm, Nge Nge  wrote:
> Hi All
>
> I saved the registered user data into my postgresql database.
> Now I have to create login page. I have to check the requested user
> name and password are in my database. If user name and password are in
> my database, redirect to success.html.  How should I do? Pls advise
> me.
>
> Thanks
> nge

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread creecode
April Fools joke right? :-) HA HA LOL!

On Apr 1, 1:00 am, cha  wrote:

> Im waiting

Toodle-l..
creecode

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread gladys
For easy reference, models are pasted below.

from django.db import models

class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')

class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice = models.CharField(max_length=200)
votes = models.IntegerField()


# views.py
def results(request, poll_id):
p = get_object_or_404(Poll, pk=poll_id)
choices = p.choice_set.all()
total_poll_votes = sum(c.votes for c in choices)  # total votes
for all choices in this poll
# If i get it correctly, you want the percentage of votes for each
choice?
percentage = {}
for choice in choices:
vote = choice.votes
vote_percentage = (vote/total_poll_votes)*100
# then create a mapping here
percentage[choice.id] = vote_percentage

As the end result, percentage will look like this:
{'1':23, '2':35}


--
Gladys
http://bixly.com


On Apr 1, 7:39 pm, cha  wrote:
> ok .. i know it's the amount of votes for option
> how can I get it in python

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Serve a tracking pixel via Django

2011-04-01 Thread Adam Nelson

On Thursday, March 31, 2011 10:56:44 PM UTC-4, Javier Guerra wrote:
>
> On Thu, Mar 31, 2011 at 7:18 PM, Russell Keith-Magee
>  wrote:
> > Sure. Write a view that returns the content. It's 3 lines of code (a
> > couple more if you count imports and whitespace). Added bonus -- it's
> > actually more efficient than serve(), because it doesn't impose a disk
> > access overhead every time it gets called.
>
> even better, use nginx empty_gif and get the tracking data from the logs.
>
>
> I should have been more exact.  This is an actual image even though it 
serves the purpose of being our tracking pixel.  It looks like the three 
options are:

1. Use serve() with insecure=True 
2. Open the file and return via HttpResponse() - effectively the same as 
serve() with insecure=True.
3. Use nginx and parse the logs
4. Use nginx with Drizzle 
to 
log to MySQL in real time
5. Use Amazon CloudFront and parse the logs

We currently do #1 - but will probably move to #2.  Another option is an 
extension of RKM's suggestion of using a string representation of the image. 
 For us that would be a 30KB string.  I have the sense that Linux optimizes 
away any cost of opening a static file repeatedly so I'm not so concerned 
about this.  serve() is implicitly doing this and we're serving that file 
100k+ times a day with minimal effort. #5 seems like the best solution for 
1MM+ requests/day.
 
Thanks,
Adam

>

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: best way to define a many-to-one relationship using FreeRadius' existing DB schema

2011-04-01 Thread yolabingo
Solved - you do it like this:

class WifiUser(models.Model):
username =  models.CharField( max_length=64, unique=True)
--snip--

class RadiusAccounting(models.Model):
radacctid = models.BigIntegerField(primary_key=True,
editable=False)
username = models.CharField(max_length=192)
wifi_user = models.ForeignKey('WifiUser',
 
db_column='username',
 
to_field='username',
 
related_name='radius_accounting')
--snip--


-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



admin cannot edit records with 'add' as primary key

2011-04-01 Thread Marwan Al-Sabbagh
Hi,
   just wanted to confirm that this is a bug before posting it on
tracker. Any comments are welcome it will be my first bug report on
django :)

Problem

  If you have a model with a primary key field that has the value
'add' you won't be able to edit it in the admin screens. the admin
will take you to the add page instead of the change page for that
record. this is a problem with the design of the urls in the admin
module.

admin.py
=
from polls.models import poll
from django.contrib import admin

admin.site.register(poll)

model.py
=
from django.db import models

class poll(models.Model):
id = models.CharField(max_length=200, primary_key=True)
question = models.CharField(max_length=200)

Reproducing

 1. Create project and app, enable admin, add the above files and syncdb.
 2. Go to the admin interface and select Add poll
 3. specify 'add' as the id and 'test' as question
 4. Save
 5. Go back to the list
 6. Open the same object
 7. you will be taken to the add poll screen instead of the change
poll screen for the selected object


cheers,
Marwan

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: I want Develop django poll app tuturial

2011-04-01 Thread cha
thank you very much mr-gladys for this effort 


this is view 
def results(request, poll_id):
p = get_object_or_404(Poll, pk=poll_id)
choices = p.choice_set.all()
total_poll_votes = sum(c.votes for c in choices)
percentage = {}
for choice in choices:
vote = choice.votes
vote_percentage = int((choice.votes)/(total_poll_votes)) * 100
# then create a mapping here
percentage[choice.id] = vote_percentage
return render_to_response('polls/results.html', {'poll': 
p,'total':total_poll_votes , 'percentage':percentage},
context_instance=RequestContext(request))

and this result.html template


{% for choice in poll.choice_set.all %}

{% endfor %}


total {{total}}

but the problem with result its will be like this

   - 601 -- {1: 0, 2: 0}
   - 71 -- {1: 0, 2: 0}


-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Accessing object ID in override of model save()

2011-04-01 Thread Nick
Is there a way to access what the ID of a new object being created in
the admin?

so if you wanted to ovveride the save and then do a get_or_create on
another object in another model with a foreignkey back to the object
you are creating you would have that ID at your disposal.

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: DjangoCon US 2011

2011-04-01 Thread Vinicius Mendes
Thanks for the information.

Atenciosamente,
Vinicius Mendes
Engenheiro de Computação
Globo.com



On Fri, Apr 1, 2011 at 1:48 AM, Shawn Milochik  wrote:

> The event will definitely take place in Portland, Oregon in September.
>
> On Apr 1, 2011 12:15 AM, "Vinicius Mendes"  wrote:
> >
> > I work for a company that assist employees to go to events to learn about
> technologies they use. They always plan wich events their employees will
> attend in the begining of the year. I am trying to go to DjangoCon US with
> their help so I need to know if the event will take place or not.
> >
> > Atenciosamente,
> > Vinicius Mendes
> > Engenheiro de Computação
> > Globo.com
> >
> >
> >
> > On Thu, Mar 31, 2011 at 8:49 PM, Steve Holden 
> wrote:
> >>
> >> I have already started nagging people about this. It's only just over
> five months to go, and it's definitely time the CfP went out. Expect to see
> movement in the next two weeks.
> >>
> >> Regards
> >> Steve
> >>
> >> On Mar 31, 2011 6:19 PM, "Shawn Milochik"  wrote:
> >> > It's a bit early, in the year, but I'd expect something in the next
> >> > couple of months here:
> >> >
> >> > http://djangocon.us/
> >> >
> >> > Since it's not till September there's still plenty of time.
> >> >
> >> > That said, if @holdenweb is reading this -- any updates? ^_^
> >> >
> >> > Shawn
> >> >
> >> > --
> >> > 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-users+unsubscr...@googlegroups.com.
> >> > For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
> >> >
> >>
> >> --
> >> 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-users+unsubscr...@googlegroups.com.
> >> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
> >
> >
> > --
> > 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-users+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
> --
> 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-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Versioning an app and displaying in template

2011-04-01 Thread christian.posta
I would like to get some feedback on how others display the version of
their apps to the users of the app.

I tag each build/version of the app in SVN when I deploy to my
clients, but i'm trying to figure out a good way to report that tag
name. I could manually try to put it into the settings.py module and
put it into a template, but was wondering what other suggestions or
options people have done. I guess I could do a full-blown checkout
(right now it's basically an svn export) and write some python code to
run an 'svn status' and parse out the tag name. Any other options?

Thanks

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Rendering only a portion of the page

2011-04-01 Thread LJ
I am building a django web app that has a control panel with various
icons.  Right now, the icons have href tags that load a new page when
the user clicks the icon.  I want to change this to instead call a
jQuery function that will use ajax, or dajaxice, to render only the
content part of the page.
Does this sound possible?
Would this be easier to do with Dajaxice, or with jQuery functions?
Could I still use django templates for the content that corresponds
with each icon?

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: DjangoCon US 2011

2011-04-01 Thread Shawn Milochik
http://www.djangoproject.com/weblog/2010/nov/22/djangocon-us-2011/

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



.Net Developer Job Opening - Valencia, CA

2011-04-01 Thread Makro Tech
Hi

This is Vignesh with Makro Technologies, Inc.
We have been in business for over 10 years and we are one of the Fast 500
National IT staffing and Solution firms in USA. Our clients include
country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
Telecom,Government and other industries.

Staying current with technology, finding great consultants and exceeding our
clients' expectations are our primary objectives.

Thanks for your time and attention to this e-mail.  Please let me know if
you have any candidates available, please find the Job description as
mentioned below.

*Title : .Net Developer
Location : Valencia, CA
Duration :6 Months*
*Responsibilities:*
• Work closely with business representatives and other team members to
understand business requirements that drive the analysis, design and
development of quality technical solutions that align with business and IT
strategies and comply with corporate and regulatory standards
• Direct and participate in the full software development lifecycle
• Make recommendations towards the development of new systems or reuse of
existing systems
• Work on medium to large, varied and complex projects that require skill in
multiple technical environments and knowledge in various business areas
• Work on multiple simultaneous projects as a project team member and/or as
a project lead
• Coach and/or mentor more junior technical staff
*
Required Skills*
• Bachelor degree in Computer Science or a related area
• 7+ years of programming/systems analysis experience
• Waterfall SDLC experience
• Ability to be a self-starter in a dynamic and fast paced environment
• Microsoft technologies, including .Net, C#, VB.Net, ASP.Net, XML, HTML,
JavaScript.
• Tools: Visual Studio .Net 2008, SQL Server 2000-2008, SVN
• Database technologies: Microsoft SQL, Oracle PL/SQL
• Reporting systems: Crystal Reports Server 2008
• Regulatory software validation experience a plus

Thanks
*Vignesh
*Sr Talent Acquisation Consultant
Tel: 973-481-0100  Ext: 3069
Fax: 973 883 1488
*E mail:* vignesh.renik...@makrohealth.com
Linkedin: 
*http://www.linkedin.com/in/vignesh1*
(Accept
All Invitations to your's and My Professional Network)
http://www.twitter.com/Makro_Tech (follow me get Followed back)

For current openings please visit
http://jobs.makrotech.com/searchjobs.aspx

Candidate HelpDesk: 973-679-5005
*
Makro Technologies Inc.*
www.makrotech.com
Corporate Headquarters: New Jersey
One Washington Park, Suite 1502, Newark, NJ 07102
*Other Offices:* Pennsylvania, Illinois, California
** Makro is a 3-time INC 5000 company for 2007/2008/2009
** Makro is a 3-time FAST 50 firm in NJ for 2005/2006/2007 (by Deloitte)
** Makro is a 3-time FAST 500 firm in USA for 2005/2006/2007 (by
Deloitte)

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: .Net Developer Job Opening - Valencia, CA

2011-04-01 Thread Russell Keith-Magee
On Saturday, April 2, 2011, Makro Tech  wrote:
> Hi
> This is Vignesh with Makro Technologies, Inc.
> We have been in business for over 10 years and we are one of the Fast 500 
> National IT staffing and Solution firms in USA. Our clients include country’s 
> top-notch IT, Healthcare, Pharmaceutical, Financial, Telecom,Government and 
> other industries.
>
> Staying current with technology, finding great consultants and exceeding our 
> clients' expectations are our primary objectives.
>
> Thanks for your time and attention to this e-mail.  Please let me know if you 
> have any candidates available, please find the Job description as mentioned 
> below.
>
> Title : .Net Developer

Hi Vignesh,

I fail to see anything in this job description that makes it
appropriate for this forum.

I have no objection to people with genuine Django opportunities
posting to this forum, but I'm not going to let it descend into a
free-for-all spamming space for recruiters.

If you post another job without an obvious Django connection, you will
be banned from posting to this group.

Yours,
Russ Magee %-)

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: .Net Developer Job Opening - Valencia, CA

2011-04-01 Thread CLIFFORD ILKAY

On 04/01/2011 06:41 PM, Makro Tech wrote:

Hi

This is Vignesh with Makro Technologies, Inc.

We have been in business for over 10 years and we are one of the Fast
500 National IT staffing and Solution firms in USA. Our clients include
country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
Telecom,Government and other industries.

[snip]

Thanks
*Vignesh
*Sr Talent Acquisation Consultant


"Acquisation"... Did you mean accusation? Inquisition? Acquisition? :)
--
Regards,

Clifford Ilkay
Dinamis
1419-3266 Yonge St.
Toronto, ON
Canada  M4N 3P6


+1 416-410-3326

--
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: .Net Developer Job Opening - Valencia, CA

2011-04-01 Thread Ovnicraft
On Fri, Apr 1, 2011 at 10:00 PM, Russell Keith-Magee <
russ...@keith-magee.com> wrote:

> On Saturday, April 2, 2011, Makro Tech  wrote:
> > Hi
> > This is Vignesh with Makro Technologies, Inc.
> > We have been in business for over 10 years and we are one of the Fast 500
> National IT staffing and Solution firms in USA. Our clients include
> country’s top-notch IT, Healthcare, Pharmaceutical, Financial,
> Telecom,Government and other industries.
> >
> > Staying current with technology, finding great consultants and exceeding
> our clients' expectations are our primary objectives.
> >
> > Thanks for your time and attention to this e-mail.  Please let me know if
> you have any candidates available, please find the Job description as
> mentioned below.
> >
> > Title : .Net Developer
>
> Hi Vignesh,
>
> I fail to see anything in this job description that makes it
> appropriate for this forum.
>
> I have no objection to people with genuine Django opportunities
> posting to this forum, but I'm not going to let it descend into a
> free-for-all spamming space for recruiters.
>
> If you post another job without an obvious Django connection, you will
> be banned from posting to this group.
>
>
for the love of django god banned him please.

Regards,


> Yours,
> Russ Magee %-)
>
> --
> 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-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>


-- 
Cristian Salamea
@ovnicraft

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Read write config from a file. How?

2011-04-01 Thread hollando
Hi, some of my config store in a file not in settings.py. Are there
any build in library doing that? Thanks

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Read write config from a file. How?

2011-04-01 Thread Addy Yeow
Have you tried http://docs.python.org/library/configparser.html?

On Sat, Apr 2, 2011 at 2:34 PM, hollando  wrote:
> Hi, some of my config store in a file not in settings.py. Are there
> any build in library doing that? Thanks
>
> --
> 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-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>



-- 
http://www.dazzlepod.com . http://twitter.com/dazzlepod
We write elegant and minimal apps that works. We develop web apps with
Django framework.

-- 
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-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.