Home
last modified time | relevance | path

Searched refs:img_tag (Results 1 – 25 of 45) sorted by relevance

12

/dports/www/searx/searx-1.0.0/searx/engines/
H A Ddeviantart.py63 img_tag = noscript_tag[0].xpath('.//img')
65 img_tag = a_tag.xpath('.//img')
66 if not img_tag:
68 img_tag = img_tag[0]
73 'img_src': img_tag.attrib.get('src'),
74 'title': img_tag.attrib.get('alt'),
/dports/deskutils/calibre/calibre-src-5.34.0/recipes/
H A Dgazeta-prawna-calibre-v1.recipe79 for img_tag in Img.findAll(name='img', attrs={'data-src': True}):
80 img_tag['src'] = img_tag['data-src']
81 del img_tag['data-src']
96 img_tag = Img.find(name='img', attrs={'src': True})
97 if img_tag:
98 self.add_toc_thumbnail(article, img_tag['src'])
99 self.log(_('adding thumbnail: %s to Article') % (img_tag['src']))
H A Dbuckmasters.recipe35 for img_tag in soup.findAll('img'):
36 parent_tag = img_tag.parent
39 ntag.insert(0, img_tag)
45 ntag.insert(0, img_tag)
H A Drevista_muy.recipe32 for img_tag in soup.findAll('img'):
33 imagen = img_tag
35 img_tag.replaceWith(nt)
/dports/science/hdf/hdf-4.2.15/hdf/src/
H A Dmfgr.c454 uint16 img_tag, in Store_imginfo() argument
459 imginfo->img_tag=(uint16)img_tag; in Store_imginfo()
660 if(img_tag==DFTAG_RI || img_tag==DFTAG_CI) in GRIget_image_list()
847 …if(img_info[j].img_tag!=DFTAG_RI8 && img_info[j].img_tag!=DFTAG_CI8 && img_info[j].img_tag!=DFTAG_… in GRIget_image_list()
919 new_image->img_tag=(uint16)img_tag; in GRIget_image_list()
928 new_image->img_tag=(uint16)img_tag; in GRIget_image_list()
1275 new_image->img_tag=img_info[i].img_tag; in GRIget_image_list()
4214 ri_ptr->img_tag=DFTAG_RI; in GRsetexternalfile()
6601 img_tag = ri_ptr->img_tag; in GR2bmapped()
6607 if (img_tag == DFTAG_RI8 || img_tag == DFTAG_CI8) in GR2bmapped()
[all …]
H A Dhdatainfo.c898 if(ri_ptr->img_tag==DFTAG_NULL || ri_ptr->img_tag==DFREF_WILDCARD in GRgetdatainfo()
909 length = Hlength(hdf_file_id, ri_ptr->img_tag, ri_ptr->img_ref); in GRgetdatainfo()
920 …count = HDgetdatainfo(hdf_file_id, ri_ptr->img_tag, ri_ptr->img_ref, NULL, start_block, 0, NULL, N… in GRgetdatainfo()
928 …count = HDgetdatainfo(hdf_file_id, ri_ptr->img_tag, ri_ptr->img_ref, NULL, start_block, info_count… in GRgetdatainfo()
H A Dmfgr.h105 uint16 img_tag,img_ref; /* tag & ref of the image data */ member
/dports/games/py-mnemosyne/Mnemosyne-2.7.3/mnemosyne/libmnemosyne/filters/
H A Dlatex.py135 img_tag = self.process_latex_img_tag(match.group(1))
136 text = text.replace(match.group(), img_tag)
139 img_tag = self.process_latex_img_tag("$" + match.group(1) + "$")
140 text = text.replace(match.group(), img_tag)
143 img_tag = self.process_latex_img_tag("\\begin{displaymath}" \
146 + img_tag + "</center>")
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/banzai/filter/
H A Dplantuml_filter.rb17 img_tag = Nokogiri::HTML::DocumentFragment.parse(
19 node.parent.replace(img_tag)
H A Dkroki_filter.rb24img_tag = Nokogiri::HTML::DocumentFragment.parse(%(<img src="#{create_image_src(diagram_type, diag…
25 node.parent.replace(img_tag)
/dports/www/horde-ansel/ansel-3.0.10/img/
H A Decard.php57 $img_tag = '<img src="cid:' . $imgpart->setContentID() . '" /><p />'; variable
62 $htmlpart->setContents('<html>' . $img_tag . $comments . '</html>');
/dports/www/seahub/seahub-8.0.7-server/seahub/notifications/management/commands/
H A Dsend_file_updates.py72 img_tag = avatar(username, default_size)
75 return re.sub(pattern, repl, img_tag)
87 img_tag = """<img src="%s" width="%s" height="%s" class="avatar" alt="" />""" % \
91 return re.sub(pattern, repl, img_tag)
H A Dsend_notices.py43 img_tag = avatar(username, default_size)
46 return re.sub(pattern, repl, img_tag)
58 img_tag = """<img src="%s" width="%s" height="%s" class="avatar" alt="" />""" % \
62 return re.sub(pattern, repl, img_tag)
/dports/www/bluefish/bluefish-2.2.12/src/plugin_zencoding/zencoding/actions/
H A Dtoken.py120 def _replace_or_append(img_tag, attr_name, attr_value): argument
127 if attr_name in img_tag.lower():
130 …n re.sub(re_attr, lambda m: '%s=%s%s%s' % (attr_name, m.group(1), attr_value, m.group(1)), img_tag)
132 return re.sub(r'\s*(\/?>)$', ' %s="%s" \\1' % (attr_name, attr_value), img_tag)
/dports/www/elixir-phoenix_html/phoenix_html-2.11.2/test/phoenix_html/
H A Dtag_test.exs90 test "img_tag" do test
91 assert img_tag("user.png") |> safe_to_string() == ~s(<img src="user.png">)
93 assert img_tag("user.png", class: "big") |> safe_to_string() ==
/dports/www/elixir-phoenix_html/phoenix_html-2.11.2/lib/phoenix_html/
H A Dtag.ex301 img_tag(user.photo_path)
304 img_tag(user.photo, class: "image")
310 img_tag(static_path("logo.png"))
317 img_tag(static_path(@conn, "/images/logo.png"))
321 def img_tag(src, opts \\ []) do function
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/images/
H A Djinja2tags.py26 return rendition.img_tag(attrs)
H A Dblocks.py35 return get_rendition_or_not_found(value, 'original').img_tag()
H A Dformats.py48 return rendition.img_tag(extra_attributes)
/dports/www/p5-IMDB-Film/IMDB-Film-0.53/lib/IMDB/
H A DFilm.pm705 while(my $img_tag = $parser->get_tag('img')) {
706 $img_tag->[1]{alt} ||= '';
708 last if $img_tag->[1]{alt} =~ /^poster not submitted/i;
710 if($img_tag->[1]{alt} =~ /Poster$/) {
711 $cover = $img_tag->[1]{src};
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/base/tests/
H A Dtest_mail.py285 img_tag = '<img src="@">'
286 sanitized = html_sanitize(img_tag, sanitize_tags=False, strip_classes=True)
287 …self.assertEqual(img_tag, sanitized, "img with can have cid containing @ and shouldn't be escaped")
/dports/deskutils/calibre/calibre-src-5.34.0/src/pyj/read_book/
H A Dpaged_mode.pyj105 for img_tag in img_tags:
106 bounding_rects.push(img_tag.getBoundingClientRect())
136 for img_tag, max_inline_size in inline_limited_images:
138 img_tag.style.setProperty('max-height', max_inline_size+'px')
140 img_tag.style.setProperty('max-width', max_inline_size+'px')
141 set_elem_data(img_tag, 'inline-limited', True)
143 for img_tag in block_limited_images:
145 set_css(img_tag, break_before='always', max_width='100vw')
147 set_css(img_tag, break_before='always', max_height='100vh')
148 set_elem_data(img_tag, 'block-limited', True)
/dports/www/punbb/punbb-1.4.6/include/
H A Dparser.php698 $img_tag = '<a href="'.$url.'">&lt;'.$lang_common['Image link'].'&gt;</a>';
701 $img_tag = '<img class="sigimage" src="'.$url.'" alt="'.forum_htmlencode($alt).'" />';
703 $img_tag = '<span class="postimg"><img src="'.$url.'" alt="'.forum_htmlencode($alt).'" /></span>';
709 return $img_tag;
/dports/www/drupal7/drupal-7.82/modules/image/
H A Dimage.test1268 $img_tag = theme_image_style($variables);
1289 $img_tag = theme_image_style($variables);
1311 $img_tag = theme_image_style($variables);
1333 $img_tag = theme_image_style($variables);
1351 $img_tag = theme_image_style($variables);
1372 $img_tag = theme_image_style($variables);
1373 …$this->assertEqual($img_tag, '<img typeof="foaf:Image" src="' . check_plain($url) . '" alt="" />',…
1392 $img_tag = theme_image_style($variables);
1413 $img_tag = theme_image_style($variables);
1414 …$this->assertEqual($img_tag, '<img typeof="foaf:Image" src="' . check_plain($url) . '" alt="" />',…
[all …]
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/images/templatetags/
H A Dwagtailimages_tags.py118 return rendition.img_tag(resolved_attrs)

12