Web Designer

2011-09-25 Thread christian.posta
I do most of the html code for my django templates in PyCharm and just
write the code by hand. I've been evaluating WYSIWYG html/web
designers recently (Dreamweaver). But, I find myself using the 'split'
mode of Dreamweaver where I write the code and watch the auto-updating
visual editor. But i don't want to switch to a different code editor
since i'm very comfortable with the keyboard shortcuts and
autocompletion I get in PyCharm.

Do most people who write the templates/html code for django apps
primarily write some code, jump to a browser and refresh? Or write the
static content using a full-blown designer and then break it up into
django templates? I would be grateful for any ideas
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: Web Designer

2011-09-26 Thread Markus Gattol
I'd say most people us a simple text editor such as Vim, Emacs... If you use 
runserver and and your browsers auto-reload for that tab then that's all you 
need. If you want to be a bit speedier then you can use things like 
Sass/Compass for your CSS and maybe HamlPy for your HTML. Both have "watch" 
commands that watch your .sass/.haml files and automatically create the 
.css/.html which would then be picked up be runserver which in turn gets 
reloaded by your browser's tab for which you set the autoload toggle.

for HTML
 - https://github.com/jessemiller/HamlPy

for CSS
 - https://github.com/chriseppstein/compass (is written in Sass)
 - https://github.com/nex3/sass

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/TeaOlJLTbK0J.
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: Web Designer

2011-09-26 Thread Sushirod
For Mac I use coda and for Windows I realy like Notepad++.

As far as WYSIWYG editors go I`ve never seen one that`s better than
Dreamweaver, wich I`d say it`s not that wysiwyg at all. To be honest
there's no such thing as a WYSIWYG, I think its just a marketing term
that propose a software with a very junky visualization of what your
are doing.

The real deal it's to experience the code rendered in browser (try to
use all of then for production purpose). That`s how your user will
experience it.

I`d also say that vi (or vim) are realy good to work "in server" via
the SSH, I use it sometimes before going to production.

Make good use of plugins such as firebug (firefox) and the google
chrome code inspector.

On 25 set, 21:05, "christian.posta"  wrote:
> I do most of the html code for my django templates in PyCharm and just
> write the code by hand. I've been evaluating WYSIWYG html/web
> designers recently (Dreamweaver). But, I find myself using the 'split'
> mode of Dreamweaver where I write the code and watch the auto-updating
> visual editor. But i don't want to switch to a different code editor
> since i'm very comfortable with the keyboard shortcuts and
> autocompletion I get in PyCharm.
>
> Do most people who write the templates/html code for django apps
> primarily write some code, jump to a browser and refresh? Or write the
> static content using a full-blown designer and then break it up into
> django templates? I would be grateful for any ideas
> 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: Web Designer

2011-09-26 Thread Sushirod

Good sugestions, I`ll take a look at this!

On 26 set, 04:32, Markus Gattol  wrote:
> I'd say most people us a simple text editor such as Vim, Emacs... If you use
> runserver and and your browsers auto-reload for that tab then that's all you
> need. If you want to be a bit speedier then you can use things like
> Sass/Compass for your CSS and maybe HamlPy for your HTML. Both have "watch"
> commands that watch your .sass/.haml files and automatically create the
> .css/.html which would then be picked up be runserver which in turn gets
> reloaded by your browser's tab for which you set the autoload toggle.
>
> for HTML
>  -https://github.com/jessemiller/HamlPy
>
> for CSS
>  -https://github.com/chriseppstein/compass(is written in Sass)
>  -https://github.com/nex3/sass

-- 
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: Web Designer

2011-09-26 Thread Andre Terra
Please refer to our recent thread with suggestions for development
environments. There's enough there already to get anyone started.

On the web:
https://groups.google.com/forum/#!msg/django-users/ZwVHa0jBRrY/Fq-jCVxrK7AJ


Cheers,
AT



On Mon, Sep 26, 2011 at 1:25 PM, Sushirod  wrote:

>
> Good sugestions, I`ll take a look at this!
>
> On 26 set, 04:32, Markus Gattol  wrote:
> > I'd say most people us a simple text editor such as Vim, Emacs... If you
> use
> > runserver and and your browsers auto-reload for that tab then that's all
> you
> > need. If you want to be a bit speedier then you can use things like
> > Sass/Compass for your CSS and maybe HamlPy for your HTML. Both have
> "watch"
> > commands that watch your .sass/.haml files and automatically create the
> > .css/.html which would then be picked up be runserver which in turn gets
> > reloaded by your browser's tab for which you set the autoload toggle.
> >
> > for HTML
> >  -https://github.com/jessemiller/HamlPy
> >
> > for CSS
> >  -https://github.com/chriseppstein/compass(is written in Sass)
> >  -https://github.com/nex3/sass
>
> --
> 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: Web Designer

2011-09-26 Thread Joseph Slone
What!!! Nobody is using vigor anymore?

On Mon, Sep 26, 2011 at 12:25 PM, Sushirod  wrote:

> For Mac I use coda and for Windows I realy like Notepad++.
>
> As far as WYSIWYG editors go I`ve never seen one that`s better than
> Dreamweaver, wich I`d say it`s not that wysiwyg at all. To be honest
> there's no such thing as a WYSIWYG, I think its just a marketing term
> that propose a software with a very junky visualization of what your
> are doing.
>
> The real deal it's to experience the code rendered in browser (try to
> use all of then for production purpose). That`s how your user will
> experience it.
>
> I`d also say that vi (or vim) are realy good to work "in server" via
> the SSH, I use it sometimes before going to production.
>
> Make good use of plugins such as firebug (firefox) and the google
> chrome code inspector.
>
> On 25 set, 21:05, "christian.posta"  wrote:
> > I do most of the html code for my django templates in PyCharm and just
> > write the code by hand. I've been evaluating WYSIWYG html/web
> > designers recently (Dreamweaver). But, I find myself using the 'split'
> > mode of Dreamweaver where I write the code and watch the auto-updating
> > visual editor. But i don't want to switch to a different code editor
> > since i'm very comfortable with the keyboard shortcuts and
> > autocompletion I get in PyCharm.
> >
> > Do most people who write the templates/html code for django apps
> > primarily write some code, jump to a browser and refresh? Or write the
> > static content using a full-blown designer and then break it up into
> > django templates? I would be grateful for any ideas
> > 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.
>
>


-- 
Joseph Slone

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



The job of a django web designer

2009-11-15 Thread gnoze5
Hello,

I am new to django and I am having a little issue in understanding the
expected role of a designer during the development a django website.
Is the point of the django template system to allow a designer to not
have to worry about any code, and only need to deliver let's say, a
pure html+css template to a coder who in turn will input the whole
blocks and logic into that template? or is the designer expected to
learn the django template system?


Thanks for your advice in advance,

David.

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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=.




Re: The job of a django web designer

2009-11-15 Thread Antoni Aloy
2009/11/15 gnoze5 :
> Hello,
>
> I am new to django and I am having a little issue in understanding the
> expected role of a designer during the development a django website.
> Is the point of the django template system to allow a designer to not
> have to worry about any code, and only need to deliver let's say, a
> pure html+css template to a coder who in turn will input the whole
> blocks and logic into that template? or is the designer expected to
> learn the django template system?
>
Learning django template does not going to hurt you :)

In the team I lead the designer sometimes creates the design and
sometimes just converts it to html+css. But she's able to work
understand and work with inheritance and filters.

The whole team is much more productive when everyone uses subversion,
can run the project application in their own computers and understands
the underlying technology. The designer can fine tune the final aspect
of the site, understands about compression and subversion diff. I have
heard that this is quite uncommon but in my opinion it's the right
way.

I'm proud to have the designers as a true member of the development
team and for that she must understand the django template system as
well as subversion and to be able to code without Dreamweaver.


-- 
Antoni Aloy López
Blog: http://trespams.com
Site: http://apsl.net

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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=.




Re: The job of a django web designer

2009-11-15 Thread Christophe Pettus

On Nov 15, 2009, at 2:56 PM, gnoze5 wrote:
> I am new to django and I am having a little issue in understanding the
> expected role of a designer during the development a django website.
> Is the point of the django template system to allow a designer to not
> have to worry about any code, and only need to deliver let's say, a
> pure html+css template to a coder who in turn will input the whole
> blocks and logic into that template? or is the designer expected to
> learn the django template system?

That's really a function of the designer's skill set.  Just like with  
PHP+Smarty, some designers are comfortable adding template-system  
tagging to their templates, while some deliver pure HTML+CSS dummies  
and a separate person (sometimes called a "front-end engineer/ 
technologist" or something like that) marks up the HTML+CSS using the  
tagging system.
--
-- Christophe Pettus
x...@thebuild.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-us...@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=.




Re: The job of a django web designer

2009-11-15 Thread Kenneth Gonsalves
On Monday 16 Nov 2009 5:00:06 am Antoni Aloy wrote:
> Learning django template does not going to hurt you :)
> 
> In the team I lead the designer sometimes creates the design and
> sometimes just converts it to html+css. But she's able to work
> understand and work with inheritance and filters.
> 
> The whole team is much more productive when everyone uses subversion,
> can run the project application in their own computers and understands
> the underlying technology. The designer can fine tune the final aspect
> of the site, understands about compression and subversion diff. I have
> heard that this is quite uncommon but in my opinion it's the right
> way.
> 
> I'm proud to have the designers as a true member of the development
> team and for that she must understand the django template system as
> well as subversion and to be able to code without Dreamweaver.
> 

perfect answer - especially the last point
-- 
regards
Kenneth Gonsalves
Senior Project Officer
NRC-FOSS
http://nrcfosshelpline.in/web/

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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=.




Freelance Web Designer in Hyderabad,Rumenia,Turkey,Afganisthan,Turkisthan

2014-10-31 Thread Freelancer Web Designer
My Self Raheem Pasha, Freelance Hyderabad based Freelance Website Designer 
and Developer with Five years experience in Internet, offering high-end 
expertise solution at freelance . Offering Web designing,Seo Services,Web 
Hosting,Template designing,Logo Designing,Banner Advertisement,Flash 
Animation,Website Marketing,Graphic Designing, Ecommerce Website 
development and much More services at affordable cost

For more Details:

*Freelance Web Designer in Hyderabad 
<http://www.freelancerwebdesignerhyderabad.com/>*

Contact : +91 (0) 8897931177

E-mail : rhmpash...@gmail.com

Web:http://www.freelancerwebdesignerhyderabad.com/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/bdfd1a3f-60d1-470a-9e9b-4b4a1457f3c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Direct Client-Web Designer/Web Architect-Bay Area,CA

2007-07-19 Thread Kan

Hello,

We have requirement for Web Designer/Web Architect in bay area CA. The
person needs to have experience in building Commerce Site where Actual
Shopping has been done. If your skills and experience matches with the
same, send me your resume asap with contact # and rate to
'[EMAIL PROTECTED]'.

Title = Contract Information Architect/User Experience Designer
6 month contract
Location: Redwood city

Requirements:

The person needs to have experience in building Commerce Site where
Actual Shopping has been done
Strong knowledge of site design; mastery in principles of Web design
(HCI, HTML, CSS)
Strong knowledge of user interface design processes and methodology
Working knowledge of User Centered Design Principles and Practices
Knowledge of architecture-related software (Illustrator, Visio,
Photoshop, SQL Server, MS Office, Acrobat, Dreamweaver)
Strong Preference given to those with::
Experience with digital media commerce sites

Kan
BTech Inc
Recruiter
510-438-6834
[EMAIL PROTECTED]
www.tbiinc.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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---