SlideShare ist ein Scribd-Unternehmen logo
1 von 34
Downloaden Sie, um offline zu lesen
BE NICE TO YOUR DESIGNERS:
  USEFUL TIPS FOR RAILS DEVELOPERS

          TaopaiC @ Ruby Tuesday
                2010/12/28
ABOUT ME

• Blog: http://pctao.org

• Twitter: TaopaiC
RAILS           !
           .
        .....
Designer               ,   ?




,   ?          Developer
Designer




  Developer
-
Designer
                  •         .
                  •RD   ,
                   .            .




  Developer
Designer




    Developer

?
-
Designer




    Developer
•       html/css    rails       ,   html   rails   ?

•               ,           .

•           ,                                  .



    •                                      .
•                  ,                       ,       model, method

    •                                                    ,         ,
                       .                             .

    •                                  ,       :

        •   : article, post, essay, words...

        •   : comment, response, reply...
CONTROLLER
class ArticlesController < ApplicationController
  def index
    @articles = Articles.paginate(:page => params[:page])
    @latest_comments = Comments.latest
  end
end




<h1>    </h1>
<div class="posts">
  <div class="post">
     <h2 class="post-name">      </h2>
     <p class="text">       Lorem...</p>
  </div>
</div>

<div class="new_responses">
<h2>        </h2>
  <div class="response">
     <h3>       </h3>
     <p class="reply">      Lorem...</p>
  </div>
</div>
<h1>    </h1>               article
<div class="posts">
<% @articles.each do |article| %>     post
  <div class="post">
     <h2 class="post-name"><%= article.title %></h2>
     <p class="text"><%= article.content %></p>
  </div>
<% end %>
</div>

<div class="new_responses">     comment
<h2>        </h2>
                                    response
<% @latest_comments.each do |comment| %>
  <div class="response">
     <h3><%= comment.title %></h3>
     <p class="reply"><%= comment.content %></p>
  </div>
<% end %>
</div>
•                                   .
                        ,       ?

    • CSS           .

    • image   tag           .

    •          ,                        .
(TABLE)
        html ...
,   Photoshop
       html ....
Photoshop   Slice   ,
HEADER (CSS            ):
      header.png

      LOGO (image tag             ):
      logo.jpg

                       :
      example_pic.png




CSS              image tag    ?
                      ...
•   ,       !!

•       .
,   ,CSS,JS
PHP
RAILS                                               ?

•       Rails   :

    • stylesheet_link_tag          public/stylesheets

        • CSS                      public/stylesheets/images

    • javascript_include_tag          public/javascripts

    • image_tag       public/images

    •                          ,             public/examples
CSS
•   Rails                   CSS                                   ,        HTTP
    request          .

•          :        css                               .
Rails
 <%= stylesheet_link_tag “reset.min.css”, “main.css”, “page.css”, :cache => "main-cache" %>



 <link href="/stylesheets/reset.min.css?1293518248" media="screen" rel="stylesheet"
 type="text/css" />
 <link href="/stylesheets/main.css?1293518252" media="screen" rel="stylesheet"
 type="text/css" />
 <link href="/stylesheets/page.css?1293518257" media="screen" rel="stylesheet"
 type="text/css" />



    <link href="/stylesheets/main-cache.css?1293518257" media="screen" rel="stylesheet"
    type="text/css" />
CSS -


•            ,   CSS                .

    :               css         ,
        ,                 ...
CSS (3)
/* homepage.css */
.header {
  background-image: "images/homepage_header.png"
}


/* post.css */
.header {
  background-image: "images/post_header.png"
}

•        CSS       ,                           ,
    .

•       CSS            ,                ,          ...
,
HANDICRAFT_HELPER                                ...
<body class="welcome-controller index-action">




     Controller              Action

 .welcome-controller.index-action
                           .
IE HACKS

• IE                            .

•                           :

    • Conditional   comment         Body class

    • Conditional   comment                CSS

    • CSS   HACKS...

•                       ,                        .
IE HACKS
• Conditional    comment                Body class
   <!--[if lt IE 7 ]>
   <body class="welcome-controller index-action ie6"><![endif]-->
   <!--[if gte IE 7 ]>
   <body class="welcome-controller index-action ie"><![endif]-->
   <!--[if !IE]>-->
   <body class="welcome-controller index-action">
   <!--<![endif]-->
                                               handicraft_helper


• Conditional     comment                          CSS
   <!--[if lt IE 7 ]>
   <link href="/stylesheets/ie6.css?1293518248" media="screen"
   rel="stylesheet" type="text/css" /><![endif]-->
   <!--[if gte IE 7 ]>
   <link href="/stylesheets/ie.css?1293518248" media="screen" rel="stylesheet"
   type="text/css" /><![endif]-->
•    ( handicraft_helper   list )

•    ( will_paginate )

•   ...
HANDICRAFT_HELPER                                            LIST


<ul>
  <li class="first current"><a href="#TODO">     </a></li>
  <li><a href=”#TODO”>     </a></li>
  <li class=”last”><a href="#TODO”>       </a></li>
</ul>
WILL_PAGINATE
                       disabled
<div>
    <span class="disabled prev_page">&laquo; Previous</span>
    <span class="current">1</span>
    <a href="./?page=2" rel="next">2</a>
    <a href="./?page=3">3</a>
    <span class="gap">&hellip;</span>
    <a href="./?page=29">29</a>
    <a href="./?page=30">30</a>
    <a href="./?page=2" rel="next" class="next_page">Next &raquo;</a>
</div>
•

    •

    •

    • CSS

    •

Weitere ähnliche Inhalte

Was ist angesagt?

Bootstrap: the full overview
Bootstrap: the full overviewBootstrap: the full overview
Bootstrap: the full overviewGill Cleeren
 
Bootstrap for Extension Developers JWC 2012
Bootstrap for Extension Developers  JWC 2012Bootstrap for Extension Developers  JWC 2012
Bootstrap for Extension Developers JWC 2012Andrea Tarr
 
Css best practices style guide and tips
Css best practices style guide and tipsCss best practices style guide and tips
Css best practices style guide and tipsChris Love
 
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan ShroyerJoomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan ShroyerSteven Pignataro
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateInventis Web Architects
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4Amanda Case
 
WordPress Theme Development: Part 2
WordPress Theme Development: Part 2WordPress Theme Development: Part 2
WordPress Theme Development: Part 2Josh Lee
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS WorkshopShay Howe
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopShay Howe
 
Efficient, maintainable CSS
Efficient, maintainable CSSEfficient, maintainable CSS
Efficient, maintainable CSSRuss Weakley
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12ucbdrupal
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development BasicsTahir Shahzad
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampJames Mills
 

Was ist angesagt? (20)

Bootstrap: the full overview
Bootstrap: the full overviewBootstrap: the full overview
Bootstrap: the full overview
 
Bootstrap for Extension Developers JWC 2012
Bootstrap for Extension Developers  JWC 2012Bootstrap for Extension Developers  JWC 2012
Bootstrap for Extension Developers JWC 2012
 
CSS Best practice
CSS Best practiceCSS Best practice
CSS Best practice
 
HTML News Packages Lesson
HTML News Packages LessonHTML News Packages Lesson
HTML News Packages Lesson
 
Css best practices style guide and tips
Css best practices style guide and tipsCss best practices style guide and tips
Css best practices style guide and tips
 
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan ShroyerJoomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
Team styles
Team stylesTeam styles
Team styles
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
 
WordPress Theme Development: Part 2
WordPress Theme Development: Part 2WordPress Theme Development: Part 2
WordPress Theme Development: Part 2
 
Yuicss R7
Yuicss R7Yuicss R7
Yuicss R7
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS Workshop
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo Workshop
 
Efficient, maintainable CSS
Efficient, maintainable CSSEfficient, maintainable CSS
Efficient, maintainable CSS
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12
 
CSS Reset
CSS ResetCSS Reset
CSS Reset
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development Basics
 
Efficient theming in Drupal
Efficient theming in DrupalEfficient theming in Drupal
Efficient theming in Drupal
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
 

Ähnlich wie Be nice to your designers

2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is nowGonzalo Cordero
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)François Massart
 
Diazo: Bridging Designers and Programmers
Diazo: Bridging Designers and ProgrammersDiazo: Bridging Designers and Programmers
Diazo: Bridging Designers and ProgrammersTsungWei Hu
 
Css for Development
Css for DevelopmentCss for Development
Css for Developmenttsengsite
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSSShay Howe
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSZoe Gillenwater
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic templatevathur
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Terry Ryan
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)christopherfross
 
Theme Development: From an idea to getting approved to wordpress.org
Theme Development: From an idea to getting approved to wordpress.orgTheme Development: From an idea to getting approved to wordpress.org
Theme Development: From an idea to getting approved to wordpress.orgThemeHorse
 
HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010alanburke
 

Ähnlich wie Be nice to your designers (20)

Web
WebWeb
Web
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
The web context
The web contextThe web context
The web context
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)
 
Diazo: Bridging Designers and Programmers
Diazo: Bridging Designers and ProgrammersDiazo: Bridging Designers and Programmers
Diazo: Bridging Designers and Programmers
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 
Css for Development
Css for DevelopmentCss for Development
Css for Development
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSS
 
Death of a Themer
Death of a ThemerDeath of a Themer
Death of a Themer
 
Highly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSSHighly Maintainable, Efficient, and Optimized CSS
Highly Maintainable, Efficient, and Optimized CSS
 
How to create a basic template
How to create a basic templateHow to create a basic template
How to create a basic template
 
Artdm171 Week4 Tags
Artdm171 Week4 TagsArtdm171 Week4 Tags
Artdm171 Week4 Tags
 
Artdm171 Week5 Css
Artdm171 Week5 CssArtdm171 Week5 Css
Artdm171 Week5 Css
 
Html5
Html5Html5
Html5
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
 
Theme Development: From an idea to getting approved to wordpress.org
Theme Development: From an idea to getting approved to wordpress.orgTheme Development: From an idea to getting approved to wordpress.org
Theme Development: From an idea to getting approved to wordpress.org
 
ARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSSARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSS
 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
 
HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010
 

Kürzlich hochgeladen

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 

Kürzlich hochgeladen (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Be nice to your designers

  • 1. BE NICE TO YOUR DESIGNERS: USEFUL TIPS FOR RAILS DEVELOPERS TaopaiC @ Ruby Tuesday 2010/12/28
  • 2. ABOUT ME • Blog: http://pctao.org • Twitter: TaopaiC
  • 3. RAILS ! . .....
  • 4. Designer , ? , ? Developer
  • 6. - Designer • . •RD , . . Developer
  • 7. Designer Developer ?
  • 8. - Designer Developer
  • 9. html/css rails , html rails ? • , . • , . • .
  • 10.
  • 11. , , model, method • , , . . • , : • : article, post, essay, words... • : comment, response, reply...
  • 12. CONTROLLER class ArticlesController < ApplicationController def index @articles = Articles.paginate(:page => params[:page]) @latest_comments = Comments.latest end end <h1> </h1> <div class="posts"> <div class="post"> <h2 class="post-name"> </h2> <p class="text"> Lorem...</p> </div> </div> <div class="new_responses"> <h2> </h2> <div class="response"> <h3> </h3> <p class="reply"> Lorem...</p> </div> </div>
  • 13. <h1> </h1> article <div class="posts"> <% @articles.each do |article| %> post <div class="post"> <h2 class="post-name"><%= article.title %></h2> <p class="text"><%= article.content %></p> </div> <% end %> </div> <div class="new_responses"> comment <h2> </h2> response <% @latest_comments.each do |comment| %> <div class="response"> <h3><%= comment.title %></h3> <p class="reply"><%= comment.content %></p> </div> <% end %> </div>
  • 14. . , ? • CSS . • image tag . • , .
  • 15. (TABLE) html ... , Photoshop html ....
  • 16. Photoshop Slice ,
  • 17. HEADER (CSS ): header.png LOGO (image tag ): logo.jpg : example_pic.png CSS image tag ? ...
  • 18.
  • 19. , !! • .
  • 20. , ,CSS,JS
  • 21. PHP
  • 22. RAILS ? • Rails : • stylesheet_link_tag public/stylesheets • CSS public/stylesheets/images • javascript_include_tag public/javascripts • image_tag public/images • , public/examples
  • 23.
  • 24.
  • 25. CSS • Rails CSS , HTTP request . • : css . Rails <%= stylesheet_link_tag “reset.min.css”, “main.css”, “page.css”, :cache => "main-cache" %> <link href="/stylesheets/reset.min.css?1293518248" media="screen" rel="stylesheet" type="text/css" /> <link href="/stylesheets/main.css?1293518252" media="screen" rel="stylesheet" type="text/css" /> <link href="/stylesheets/page.css?1293518257" media="screen" rel="stylesheet" type="text/css" /> <link href="/stylesheets/main-cache.css?1293518257" media="screen" rel="stylesheet" type="text/css" />
  • 26. CSS - • , CSS . : css , , ...
  • 27. CSS (3) /* homepage.css */ .header { background-image: "images/homepage_header.png" } /* post.css */ .header { background-image: "images/post_header.png" } • CSS , , . • CSS , , ...
  • 28. , HANDICRAFT_HELPER ... <body class="welcome-controller index-action"> Controller Action .welcome-controller.index-action .
  • 29. IE HACKS • IE . • : • Conditional comment Body class • Conditional comment CSS • CSS HACKS... • , .
  • 30. IE HACKS • Conditional comment Body class <!--[if lt IE 7 ]> <body class="welcome-controller index-action ie6"><![endif]--> <!--[if gte IE 7 ]> <body class="welcome-controller index-action ie"><![endif]--> <!--[if !IE]>--> <body class="welcome-controller index-action"> <!--<![endif]--> handicraft_helper • Conditional comment CSS <!--[if lt IE 7 ]> <link href="/stylesheets/ie6.css?1293518248" media="screen" rel="stylesheet" type="text/css" /><![endif]--> <!--[if gte IE 7 ]> <link href="/stylesheets/ie.css?1293518248" media="screen" rel="stylesheet" type="text/css" /><![endif]-->
  • 31. ( handicraft_helper list ) • ( will_paginate ) • ...
  • 32. HANDICRAFT_HELPER LIST <ul> <li class="first current"><a href="#TODO"> </a></li> <li><a href=”#TODO”> </a></li> <li class=”last”><a href="#TODO”> </a></li> </ul>
  • 33. WILL_PAGINATE disabled <div>     <span class="disabled prev_page">&laquo; Previous</span> <span class="current">1</span> <a href="./?page=2" rel="next">2</a> <a href="./?page=3">3</a> <span class="gap">&hellip;</span> <a href="./?page=29">29</a> <a href="./?page=30">30</a> <a href="./?page=2" rel="next" class="next_page">Next &raquo;</a> </div>
  • 34. • • • CSS •