Re: GUI for network interface

2012-05-16 Thread Tanveer Ali Sha
EXAMPLE COMPONENT DESIGN:

---

COMPONENT --> PHYSCIAL NETWORK INTERFACE

COMPONENT_KEY --> INTERFACE NUMBER

START_COMPONENT_SCRIPT --> Bringup_interface 

SYNC_COMPONENT_SCRIPT --> Setup_interface 



On Wed, May 16, 2012 at 10:46 PM, Tanveer Ali Sha wrote:

> Thank you for your mail's
>
> actually am fresher ,just now only I started working ,from last two months
> I worked on python and linux.now TL told me to implement this GUISo
> am in bit confuse ...:(
>
>
> On Wed, May 16, 2012 at 10:41 PM, Dennis Lee Bieber  > wrote:
>
>> On Wed, 16 May 2012 07:59:50 -0700 (PDT), Ali Shaikh
>>  declaimed the following in
>> gmane.comp.python.django.user:
>>
>> > hi Django...!!
>> >
>> > I want to implement GUI for ma projectusing Django.
>> >
>> > Like in network different host are connected ,for that need to proved
>> > components like connect,disconnect ,status n all related staff
>> >
>> > Please help me to develop this GUI using Django..
>> >
>> >
>> > Thank You
>>
>> You have basically asked this question four times this week.
>>
>>In none of those have you shown any example of what you are having
>> trouble creating, or where you are getting stuck.
>>
>>If you don't know how to obtain network status you'll have to ask
>> in
>> a group related to your operating system -- those are not Django
>> functions.
>>
>>If you don't know how to start a Django project, you should study
>> the documentation for Django. If you need graphical placement of data
>> (lines connecting boxes) that is probably not Django either -- and
>> probably not even HTML, more likely you'll have to use a graphics
>> package to create GIF/PNG files that can be displayed by a web-page.
>>
>>So far, your posts come across as:
>>
>> I want something that does XYZ
>> I don't know how to do anything that makes XYZ
>> Please write XYZ for me
>> --
>>Wulfraed Dennis Lee Bieber AF6VN
>>wlfr...@ix.netcom.comHTTP://wlfraed.home.netcom.com/
>>
>> --
>> 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.



Re: GUI for network interface

2012-05-16 Thread Tanveer Ali Sha
Thank you for your mail's

actually am fresher ,just now only I started working ,from last two months
I worked on python and linux.now TL told me to implement this GUISo
am in bit confuse ...:(

On Wed, May 16, 2012 at 10:41 PM, Dennis Lee Bieber
wrote:

> On Wed, 16 May 2012 07:59:50 -0700 (PDT), Ali Shaikh
>  declaimed the following in
> gmane.comp.python.django.user:
>
> > hi Django...!!
> >
> > I want to implement GUI for ma projectusing Django.
> >
> > Like in network different host are connected ,for that need to proved
> > components like connect,disconnect ,status n all related staff
> >
> > Please help me to develop this GUI using Django..
> >
> >
> > Thank You
>
> You have basically asked this question four times this week.
>
>In none of those have you shown any example of what you are having
> trouble creating, or where you are getting stuck.
>
>If you don't know how to obtain network status you'll have to ask in
> a group related to your operating system -- those are not Django
> functions.
>
>If you don't know how to start a Django project, you should study
> the documentation for Django. If you need graphical placement of data
> (lines connecting boxes) that is probably not Django either -- and
> probably not even HTML, more likely you'll have to use a graphics
> package to create GIF/PNG files that can be displayed by a web-page.
>
>So far, your posts come across as:
>
> I want something that does XYZ
> I don't know how to do anything that makes XYZ
> Please write XYZ for me
> --
>Wulfraed Dennis Lee Bieber AF6VN
>wlfr...@ix.netcom.comHTTP://wlfraed.home.netcom.com/
>
> --
> 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.



Re: GUI for network interface

2012-05-16 Thread Eugène Ngontang
Hi!
Design your model with host entities. From What you wrote i can see only
one entity right now : "host"
But you can create other entities and define relationship between them
(your entities).
And give attributes to your entities. Attributes will depend on what
information you want to store in an entity, for exemple a host.
After your model is described, use the django admin tutorial to implement
your interface.
It will be sufficient for your case.
Le 16 mai 2012 17:00, "Ali Shaikh"  a écrit :

> hi Django...!!
>
> I want to implement GUI for ma projectusing Django.
>
> Like in network different host are connected ,for that need to proved
> components like connect,disconnect ,status n all related staff
>
> Please help me to develop this GUI using Django..
>
>
> Thank You
>
> --
> 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.



GUI for network interface

2012-05-16 Thread Ali Shaikh
hi Django...!!

I want to implement GUI for ma projectusing Django.

Like in network different host are connected ,for that need to proved
components like connect,disconnect ,status n all related staff

Please help me to develop this GUI using Django..


Thank You

-- 
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.