Drupal Theme 学习心得

theme的一组可覆写列表参考:
http://api.drupal.org/api/drupal/includes--theme.inc/group/themeable/6

page.tpl.php

node.tpl.php

block.tpl.php
For example:
block-modulename-delta.tpl.php
block-modulename.tpl.php
block-region.tpl.php
block.tpl.php

block-user-1.tpl.php
block-user.tpl.php
block-left.tpl.php
block.tpl.php

block-user-3.tpl.php // Target just the Who's online block.
block-user.tpl.php // Target all block output by user module.
block-footer.tpl.php // Target all blocks in the footer region.
block.tpl.php // Target all blocks on any page.

comment.tpl.php

博客分类: 

后台开发人员应该时刻记住的几件事情

General:
 * Always keep quality sense in mind, and pay attention to details
 * Be aware of the importance of communication, teamwork, and responsibility
 * Face problems and handle it proactively, don't wait or even hide for any reason
 * Escalate any conflict or uncertain issue as early as possible, don't make decision by yourself
 * For any English writing, do check its spellings in OpenOffice before submission

博客分类: 

我的人生计划&学习计划

人生计划:

  1. 经营一家自己的公司或企业。性质不限,包括软件公司,网吧,酒吧,牛排厅,咖啡厅。
  2. 携带全家旅行一下。
  3. 创自己的一家带系列的公司或工厂。(如某系列,某型号的电脑桌。可扩展电脑桌套,桌布等。)
  4. 健身房
  5. 自创童装品牌店

学习计划:

  • 系统的学习CSS, JS。
  • Drupal 的theme系统。
  • 部署版本控制软件/Trac。SVN, Git。
  • Linux深入学习。
  • 英语学习
  • C, Objective C
  • Java
  • PHP 调试工具XDebug
  • Android开发

目标方向:

  1. 优雅的代码。
  2. 系统的架构

Good Ideas:

  1. 漂流瓶
博客分类: 

Introduction to myself

Good afternoon, i'm Quentin.

I come from NanTong, JiangSu province, china.

I have graduated from Jiangsu University, my major is Computer science and technology. 

In university, i have passed "CET4 /6". And ,i gain bachelor degree in 2007.

 

And in April 2007, i begin my first job as a PHP programmer at a small private company in Shanghai. 

And because of some personal reason, in the October, i come to Suzhou and find another job as a Software engineer at Itibia(Suzhou).

博客分类: 

适合公司晚会唱的歌

同桌的你

童年

窗外

橄榄树

水晶

龙的传人

明天会更好

乡间的小路

外婆的澎湖湾

小草

踏浪

我是女生

心愿

七子之歌

梦驼铃

轻舞飞扬

似水年华

青春无悔

白桦树

那些花儿

往事

对面的女孩看过来

小芳

青春纪念册

一生有你

朋友(周华健)

朋友(臧天朔)

千千阙歌

月亮代表我的心

一无所有

深呼吸

冷酷到底

恋曲1990

让世界充满爱

玻璃杯

彩虹

完美世界

光辉岁月

最美

海阔天空(Beyond)

海阔天空(信乐团)

三万英尺

有多少爱可以重来

离歌

死了都要爱

水手

征服

女人花

万里长城永不倒

博客分类: 

[转]jquery取得iframe元素的方法

收集利用Jquery取得iframe中元素的几种方法 :

 

Js代码

  1. $(document.getElementById('iframeId').contentWindow.document.body).htm()  

$(document.getElementById('iframeId').contentWindow.document.body).htm()

 

 显示iframe中body元素的内容。

 

Js代码

  1. $("#testId", document.frames("iframename").document).html();  

$("#testId", document.frames("iframename").document).html();

 根据iframename取得其中ID为"testId"元素

 

博客分类: 

页面