當前位置: 首頁>>代碼示例>>Python>>正文


Python html.SCRIPT屬性代碼示例

本文整理匯總了Python中gluon.html.SCRIPT屬性的典型用法代碼示例。如果您正苦於以下問題:Python html.SCRIPT屬性的具體用法?Python html.SCRIPT怎麽用?Python html.SCRIPT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在gluon.html的用法示例。


在下文中一共展示了html.SCRIPT屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: fast_tz_detector

# 需要導入模塊: from gluon import html [as 別名]
# 或者: from gluon.html import SCRIPT [as 別名]
def fast_tz_detector():
    current.response.files.append(URL('static', 'plugin_timezone/jstz.min.js'))
    ##//cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js
    script = """
jQuery(document).on('plugin_timezone.fast_tz_detector', function (e) {
    var tz = jstz.determine();
    if (typeof (tz) !== 'undefined') {
        var name = tz.name()
        jQuery.post('%s', {timezone : name});
    }
});
jQuery(document).ready(function () {
    jQuery(this).trigger('plugin_timezone.fast_tz_detector');
});
""" % URL()
    if current.request.post_vars.timezone:
        if current.request.post_vars.timezone in TZDICT:
            if not current.session.plugin_timezone_tz:
                current.session.plugin_timezone_tz = current.request.post_vars.timezone

    return SCRIPT(script) 
開發者ID:lucadealfaro,項目名稱:true_review,代碼行數:23,代碼來源:__init__.py

示例2: test_SCRIPT

# 需要導入模塊: from gluon import html [as 別名]
# 或者: from gluon.html import SCRIPT [as 別名]
def test_SCRIPT(self):
        self.assertEqual(SCRIPT('<>', _a='1', _b='2').xml(),
                         '''<script a="1" b="2"><!--
<>
//--></script>''')
        self.assertEqual(SCRIPT('<>').xml(),
                         '''<script><!--
<>
//--></script>''')
        self.assertEqual(SCRIPT().xml(), b'<script></script>') 
開發者ID:HackPucBemobi,項目名稱:touch-pay-client,代碼行數:12,代碼來源:test_html.py

示例3: tz_nice_detector_widget

# 需要導入模塊: from gluon import html [as 別名]
# 或者: from gluon.html import SCRIPT [as 別名]
def tz_nice_detector_widget(field, value, **attributes):
    options = []
    value_missing = True
    for tzn in TZSETS:
        #retrieve offset
        localized = datetime.datetime.now(pytz.timezone(tzn[0]))
        if value == tzn[0]:
            # This is the preselected value.
            value_missing = False
            options.append(
                OPTION(tzn[1], _value=tzn[0], _selected="selected",
                       data=dict(localized=localized.strftime('%Y-%m-%d %H:%M'))))
        else:
            options.append(
                OPTION(tzn[1], _value=tzn[0],
                       data=dict(localized=localized.strftime('%Y-%m-%d %H:%M'))))


    _id = '%s_%s' % (field._tablename, field.name)
    _name = field.name
    
    if value_missing and 'autodetect' in attributes and attributes.pop('autodetect') is True:
        current.response.files.append(URL('static', 'plugin_timezone/jstz.min.js'))
        script = """
jQuery(document).ready(function () {
  var tz = jstz.determine();
  var nice_tz_select = jQuery('#%(_id)s');
  nice_tz_select.on('change.plugin_timezone', function(e, data) {
      var localized = jQuery('#%(_id)s option:selected').data('localized');
      var placeholder = '#plugin_timezone_localized';
      if (!jQuery(placeholder).length) nice_tz_select.after('<span id="plugin_timezone_localized" style="display: block" />');
      if (typeof (data) !== 'undefined') {
        localized = 'auto: ' + localized;
      }
      else {
        manual = 'auto: ' + localized;
      }
      // jQuery(placeholder).html(localized);
  });
  if (typeof (tz) !== 'undefined') {
      var name = tz.name();
      nice_tz_select.val(name).trigger('change.plugin_timezone', [name]);
  }
});
    """ % dict(_id=_id)
        return CAT(SELECT(*options, _id=_id, _name=_name, **attributes), SCRIPT(script))
    return SELECT(*options, _id=_id, _name=_name, **attributes) 
開發者ID:lucadealfaro,項目名稱:true_review,代碼行數:49,代碼來源:__init__.py


注:本文中的gluon.html.SCRIPT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。