2008-10-29

pylons 0.9.7rc2 간단 help 오류

Using the Helpers 섹션에서
helper 코드가 작동하려면
lib/helpers.py에 다음 코드를 추가해야 함

from routes import url_for
from webhelpers.html.tags import *

그리고 예제도 다음과 같이 바뀌어야 함

${h.form(h.url_for(action='email'), method='get')}
Email Address: ${h.text('email')}
${h.submit('submit', 'Submit')}
${h.end_form()}

pylons에서 config 파일 (ini) 읽기

pylons.config['<항목명>'] 방식으로 접근 가능.

그런데 [server:main] 및 몇몇 필드 들은 읽히지 않는다 (예를 들어 use, full_stack 등)