当前位置: 首页>>代码示例>>Python>>正文


Python DrupyPHP.htmlspecialchars方法代码示例

本文整理汇总了Python中lib.drupy.DrupyPHP.htmlspecialchars方法的典型用法代码示例。如果您正苦于以下问题:Python DrupyPHP.htmlspecialchars方法的具体用法?Python DrupyPHP.htmlspecialchars怎么用?Python DrupyPHP.htmlspecialchars使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lib.drupy.DrupyPHP的用法示例。


在下文中一共展示了DrupyPHP.htmlspecialchars方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: check_plain

# 需要导入模块: from lib.drupy import DrupyPHP [as 别名]
# 或者: from lib.drupy.DrupyPHP import htmlspecialchars [as 别名]
def check_plain(text):
    """
   Encode special characters in a plain-text string for display as HTML.
  
   Uses drupal_validate_utf8 to prevent cross site scripting attacks on
   Internet Explorer 6.
  """
    return php.htmlspecialchars(text, php.ENT_QUOTES) if drupal_validate_utf8(text) else ""
开发者ID:sabren,项目名称:drupy,代码行数:10,代码来源:bootstrap.py

示例2:

# 需要导入模块: from lib.drupy import DrupyPHP [as 别名]
# 或者: from lib.drupy.DrupyPHP import htmlspecialchars [as 别名]
  (lib_bootstrap.DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE, \
   'DRUPAL_BOOTSTRAP_LATE_PAGE_CACHE'),
  (lib_bootstrap.DRUPAL_BOOTSTRAP_LANGUAGE, \
   'DRUPAL_BOOTSTRAP_LANGUAGE'),
  (lib_bootstrap.DRUPAL_BOOTSTRAP_PATH, \
   'DRUPAL_BOOTSTRAP_PATH'),
  (lib_bootstrap.DRUPAL_BOOTSTRAP_FULL, \
   'DRUPAL_BOOTSTRAP_FULL')
);

which_phase = phases[8];
lib_bootstrap.drupal_bootstrap(which_phase[0]);
stamp, revised = time.strftime("%c GMT||%m/%d/%Y", time.gmtime()).split('||')

out_plugins = php.print_r(lib_plugin.plugins, True)
out_plugins_html = php.htmlspecialchars(out_plugins)

out_themes = php.print_r(lib_theme.processors, True)
out_themes_html = php.htmlspecialchars(out_themes)

out_users = php.print_r(lib_database.query(\
  'SELECT * FROM users WHERE users.uid > 0'), True)
out_users_html = php.htmlspecialchars(out_users)

out_vars = php.print_r(vars(), True)
out_vars = re.sub('[a-zA-Z0-9_\.-][email protected]+?\.[a-zA-Z]+', '********', out_vars)
out_vars = re.sub('[a-zA-Z0-9]{32}', \
                  '********************************', out_vars)
out_vars = php.htmlspecialchars(out_vars)

out_mods = php.print_r(DrupyImport.modules(), True)
开发者ID:brendoncrawford,项目名称:drupy,代码行数:33,代码来源:drupy.py


注:本文中的lib.drupy.DrupyPHP.htmlspecialchars方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。