Home
last modified time | relevance | path

Searched refs:content_types (Results 1 – 25 of 664) sorted by relevance

12345678910>>...27

/dports/www/joomla3/joomla3-3.9.24/administrator/components/com_admin/sql/updates/mysql/
H A D3.1.2.sql1 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__content","key":"id","type":"Cont…
2 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__contact_details","key":"id","typ…
3 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__newsfeeds","key":"id","type":"Ne…
4 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__users","key":"id","type":"User",…
5 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
6 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
7 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
8 UPDATE `#__content_types` SET `table` = '{"special":{"dbtable":"#__tags","key":"tag_id","type":"Tag…
9 UPDATE `#__content_types` SET `field_mappings` = '{"common":{"core_content_item_id":"id","core_titl…
11 UPDATE `#__content_types` SET `field_mappings` = '{"common":{"core_content_item_id":"id","core_titl…
[all …]
H A D3.2.0.sql3 ALTER TABLE `#__content_types` ADD COLUMN `content_history_options` VARCHAR(5120) NOT NULL COMMENT …
5 UPDATE `#__content_types` SET `content_history_options` = '{"formFile":"administrator\\/components\…
6 UPDATE `#__content_types` SET `content_history_options` = '{"formFile":"administrator\\/components\…
7 UPDATE `#__content_types` SET `content_history_options` = '{"formFile":"administrator\\/components\…
8 UPDATE `#__content_types` SET `content_history_options` = '{"formFile":"administrator\\/components\…
9 UPDATE `#__content_types` SET `content_history_options` = '{"formFile":"administrator\\/components\…
11 INSERT INTO `#__content_types` (`type_title`, `type_alias`, `table`, `rules`, `field_mappings`, `ro…
/dports/www/joomla3/joomla3-3.9.24/administrator/components/com_admin/sql/updates/sqlazure/
H A D3.1.2.sql1 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__content","key":"id","type":"Cont…
2 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__contact_details","key":"id","typ…
3 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__newsfeeds","key":"id","type":"Ne…
4 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__users","key":"id","type":"User",…
5 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
6 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
7 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__categories","key":"id","type":"C…
8 UPDATE [#__content_types] SET [table] = '{"special":{"dbtable":"#__tags","key":"tag_id","type":"Tag…
9 UPDATE [#__content_types] SET [field_mappings] = '{"common":{"core_content_item_id":"id","core_titl…
11 UPDATE [#__content_types] SET [field_mappings] = '{"common":{"core_content_item_id":"id","core_titl…
[all …]
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/src/
H A Dcontent_types.c35 STAILQ_INIT(content_types->default_types); in lxw_content_types_new()
39 STAILQ_INIT(content_types->overrides); in lxw_content_types_new()
41 lxw_ct_add_default(content_types, "rels", in lxw_content_types_new()
54 return content_types; in lxw_content_types_new()
57 lxw_content_types_free(content_types); in lxw_content_types_new()
70 if (!content_types) in lxw_content_types_free()
73 if (content_types->default_types) { in lxw_content_types_free()
81 free(content_types->default_types); in lxw_content_types_free()
84 if (content_types->overrides) { in lxw_content_types_free()
92 free(content_types->overrides); in lxw_content_types_free()
[all …]
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/include/xlsxwriter/
H A Dcontent_types.h42 void lxw_content_types_free(lxw_content_types *content_types);
48 void lxw_ct_add_worksheet_name(lxw_content_types *content_types,
50 void lxw_ct_add_chartsheet_name(lxw_content_types *content_types,
52 void lxw_ct_add_chart_name(lxw_content_types *content_types,
54 void lxw_ct_add_drawing_name(lxw_content_types *content_types,
56 void lxw_ct_add_table_name(lxw_content_types *content_types,
58 void lxw_ct_add_comment_name(lxw_content_types *content_types,
60 void lxw_ct_add_vml_name(lxw_content_types *content_types);
62 void lxw_ct_add_shared_strings(lxw_content_types *content_types);
63 void lxw_ct_add_calc_chain(lxw_content_types *content_types);
[all …]
/dports/www/p5-Dancer/Dancer-1.3513/lib/Dancer/Serializer/
H A DMutable.pm52 my @content_types;
57 push @content_types, $request->{content_type}
60 push @content_types, $params->{content_type}
63 push @content_types, 'application/json';
67 return [ grep { not $seen{$_}++ } @content_types ];
72 my @content_types;
74 push @content_types, $request->{accept}
77 push @content_types, $request->{accept_type}
84 push @content_types, $_;
119 my ($self, $request, $content_types) = @_;
[all …]
/dports/math/libxlsxwriter/libxlsxwriter-RELEASE_1.1.4/test/unit/content_types/
H A Dtest_content_types.c14 CTEST(content_types, content_types01) { in CTEST() argument
37 lxw_content_types *content_types = lxw_content_types_new(); in CTEST() local
38 content_types->file = testfile; in CTEST()
40 lxw_ct_add_override(content_types, "/xl/workbook.xml", in CTEST()
42 lxw_ct_add_worksheet_name(content_types, "/xl/worksheets/sheet1.xml"); in CTEST()
43 lxw_ct_add_default(content_types, "jpeg", "image/jpeg"); in CTEST()
44 lxw_ct_add_shared_strings(content_types); in CTEST()
45 lxw_ct_add_calc_chain(content_types); in CTEST()
47 lxw_content_types_assemble_xml_file(content_types); in CTEST()
51 lxw_content_types_free(content_types); in CTEST()
H A Dtest_content_types_write_default.c14 CTEST(content_types, write_default) { in CTEST() argument
20 lxw_content_types *content_types = lxw_content_types_new(); in CTEST() local
21 content_types->file = testfile; in CTEST()
23 _write_default(content_types, "xml", "application/xml"); in CTEST()
27 lxw_content_types_free(content_types); in CTEST()
H A Dtest_content_types_write_override.c14 CTEST(content_types, write_override) { in CTEST() argument
20 lxw_content_types *content_types = lxw_content_types_new(); in CTEST() local
21 content_types->file = testfile; in CTEST()
23 _write_override(content_types, "/docProps/core.xml", "app..."); in CTEST()
27 lxw_content_types_free(content_types); in CTEST()
H A Dtest_content_types_xml_declaration.c14 CTEST(content_types, xml_declaration) { in CTEST() argument
20 lxw_content_types *content_types = lxw_content_types_new(); in CTEST() local
21 content_types->file = testfile; in CTEST()
23 _content_types_xml_declaration(content_types); in CTEST()
27 lxw_content_types_free(content_types); in CTEST()
/dports/deskutils/egroupware/egroupware/admin/inc/
H A Dclass.admin_customfields.inc.php52 var $content_types,$fields;
149 if(count($this->content_types) == 0)
153 if (count($this->content_types)==0)
159 …es']['types'] : (array_key_exists(0,$this->content_types) ? $this->content_types[0] : key($this->c…
229 $entry = $this->content_types[$type];
244 if ($this->content_types['']['no_add'])
477 if(count($this->content_types) == 0)
481 if (count($this->content_types)==0)
626 foreach($this->content_types as $type)
637 if (!$this->content_types[chr($i)] &&
[all …]
/dports/devel/fstrm/fstrm-0.6.1/fstrm/
H A Dwriter.c37 fs_bufvec *content_types; member
42 fs_bufvec *content_types; member
63 if ((*wopt)->content_types != NULL) { in fstrm_writer_options_destroy()
68 fs_bufvec_destroy(&(*wopt)->content_types); in fstrm_writer_options_destroy()
82 if (wopt->content_types == NULL) in fstrm_writer_options_add_content_type()
83 wopt->content_types = fs_bufvec_init(1); in fstrm_writer_options_add_content_type()
89 fs_bufvec_add(wopt->content_types, ctype); in fstrm_writer_options_add_content_type()
104 w->content_types = fs_bufvec_init(1); in fstrm_writer_init()
115 fs_bufvec_add(w->content_types, ctype_copy); in fstrm_writer_init()
143 fs_bufvec_destroy(&(*w)->content_types); in fstrm_writer_destroy()
[all …]
H A Dreader.c38 fs_bufvec *content_types; member
50 fs_bufvec *content_types; member
71 if ((*ropt)->content_types != NULL) { in fstrm_reader_options_destroy()
76 fs_bufvec_destroy(&(*ropt)->content_types); in fstrm_reader_options_destroy()
90 if (ropt->content_types == NULL) in fstrm_reader_options_add_content_type()
91 ropt->content_types = fs_bufvec_init(1); in fstrm_reader_options_add_content_type()
97 fs_bufvec_add(ropt->content_types, ctype); in fstrm_reader_options_add_content_type()
129 r->content_types = fs_bufvec_init(1); in fstrm_reader_init()
134 if (ropt->content_types != NULL) { in fstrm_reader_init()
142 fs_bufvec_add(r->content_types, ctype_copy); in fstrm_reader_init()
[all …]
H A Dcontrol.c28 fs_bufvec *content_types; member
66 c->content_types = fs_bufvec_init(1); in fstrm_control_init()
75 fs_bufvec_destroy(&(*c)->content_types); in fstrm_control_destroy()
84 fs_buf buf = fs_bufvec_value(c->content_types, i); in fstrm_control_reset()
87 fs_bufvec_reset(c->content_types); in fstrm_control_reset()
127 *n_content_type = fs_bufvec_size(c->content_types); in fstrm_control_get_num_field_content_type()
155 if (idx < fs_bufvec_size(c->content_types)) { in fstrm_control_get_field_content_type()
156 fs_buf buf = fs_bufvec_value(c->content_types, idx); in fstrm_control_get_field_content_type()
173 fs_bufvec_add(c->content_types, ctype); in fstrm_control_add_field_content_type()
329 fs_bufvec_add(c->content_types, c_type); in fstrm_control_decode()
[all …]
/dports/www/flexget/Flexget-3.2.18/flexget/components/ftp/
H A Dftp_list.py81 def get_content(self, path, recursion, recursion_depth, content_types): argument
95 if 'files' in content_types or 'symlinks' in content_types:
100 and 'files' in content_types
102 and 'symlinks' in content_types
109 if 'dirs' in content_types or 'symlinks' in content_types:
114 and 'dirs' in content_types
116 and 'symlinks' in content_types
127 ('files' in content_types and ftp.path.isfile(content))
128 or ('dirs' in content_types and ftp.path.isdir(content))
129 or ('symlinks' in content_types and ftp.path.islink(content))
[all …]
/dports/archivers/thunar-archive-plugin/thunar-archive-plugin-0.4.0/thunar-archive-plugin/
H A Dtap-backend.c184 tap_backend_mime_applications (GList *content_types) in tap_backend_mime_applications() argument
194 for (lp = content_types; lp != NULL; lp = lp->next) in tap_backend_mime_applications()
388 GList *content_types, in tap_backend_run() argument
404 if (G_LIKELY (content_types == NULL)) in tap_backend_run()
410 content_types = g_list_append (content_types, g_content_type_from_mime_type (mime_type)); in tap_backend_run()
463 g_list_free (content_types); in tap_backend_run()
501 GList *content_types = NULL; in tap_backend_create_archive() local
509content_types = g_list_append (content_types, g_content_type_from_mime_type ("application/x-compre… in tap_backend_create_archive()
510content_types = g_list_append (content_types, g_content_type_from_mime_type ("application/x-tar")); in tap_backend_create_archive()
511content_types = g_list_append (content_types, g_content_type_from_mime_type ("application/x-zip")); in tap_backend_create_archive()
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/drupal/sites/default/boinc/modules/contrib/cck/translations/
H A Dincludes-panels-content_types.pot3 # LANGUAGE translation of Drupal (includes-panels-content_types)
20 #: includes/panels/content_types/content_field.inc:14
24 #: includes/panels/content_types/content_field.inc:37
28 #: includes/panels/content_types/content_field.inc:44
32 #: includes/panels/content_types/content_field.inc:100
36 #: includes/panels/content_types/content_field.inc:103
40 #: includes/panels/content_types/content_field.inc:105
44 #: includes/panels/content_types/content_field.inc:128
48 #: includes/panels/content_types/content_field.inc:131
52 #: includes/panels/content_types/content_field.inc:147
H A Dincludes-panels-content_types.de.po31 #: includes/panels/content_types/content_field.inc:14
35 #: includes/panels/content_types/content_field.inc:37
39 #: includes/panels/content_types/content_field.inc:44
43 #: includes/panels/content_types/content_field.inc:100
47 #: includes/panels/content_types/content_field.inc:103
51 #: includes/panels/content_types/content_field.inc:105
55 #: includes/panels/content_types/content_field.inc:128
59 #: includes/panels/content_types/content_field.inc:131
63 #: includes/panels/content_types/content_field.inc:147
/dports/www/flexget/Flexget-3.2.18/flexget/components/imdb/
H A Dfrom_imdb.py65 content_types = [ variable in FromIMDB
141 config.setdefault('content_types', [self.content_types[0]])
201 self, entity_type, entity_object, content_types, job_types, match_type argument
232 def filtered_items(self, unfiltered_items, content_types, match_type): argument
241 if item['kind'] in content_types:
253 def items_by_person(self, person, job_types, content_types, match_type): argument
262 return self.filtered_items(unfiltered_items, content_types, match_type)
271 def items_by_job_type(self, person, job_type, content_types): argument
281 for content_type in content_types
286 def items_by_character(self, character, content_types, match_type): argument
[all …]
/dports/audio/liboggz/liboggz-1.1.1/src/tools/
H A Doggz-known-codecs.c77 const char * content_types[OGGZ_CONTENT_UNKNOWN]; in main() local
106 content_types[content] = NULL; in main()
109 content_types[content] = oggz_content_type (content); in main()
115 qsort (content_types, OGGZ_CONTENT_UNKNOWN, sizeof (char *), in main()
120 if (content_types[content]) in main()
121 puts (content_types[content]); in main()
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/extras/tests/
H A Dtest_forms.py18 cf_text.content_types.set([obj_type])
21 cf_integer.content_types.set([obj_type])
24 cf_boolean.content_types.set([obj_type])
27 cf_date.content_types.set([obj_type])
30 cf_url.content_types.set([obj_type])
33 cf_select.content_types.set([obj_type])
37 cf_multiselect.content_types.set([obj_type])
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/webshare/chromeos/
H A Dsharesheet_client_browsertest.cc76 std::vector<std::string> content_types, in IN_PROC_BROWSER_TEST_F()
82 EXPECT_EQ(content_types.size(), 2U); in IN_PROC_BROWSER_TEST_F()
83 EXPECT_EQ(content_types[0], "audio/mp3"); in IN_PROC_BROWSER_TEST_F()
84 EXPECT_EQ(content_types[1], "video/mp4"); in IN_PROC_BROWSER_TEST_F()
111 std::vector<std::string> content_types, in IN_PROC_BROWSER_TEST_F()
117 EXPECT_EQ(content_types.size(), 1U); in IN_PROC_BROWSER_TEST_F()
118 EXPECT_EQ(content_types[0], "image/webp"); in IN_PROC_BROWSER_TEST_F()
140 std::vector<std::string> content_types, in IN_PROC_BROWSER_TEST_F()
/dports/www/mybb/mybb-mybb_1829/admin/modules/config/
H A Dreport_reasons.php21 $content_types = $plugins->run_hooks("report_content_types", $content_types); variable
48 asort($content_types);
49 foreach($content_types as $content)
160 asort($content_types);
161 foreach($content_types as $content)
424 global $mybb, $lang, $form, $content_types;
426 asort($content_types);
429 foreach($content_types as $content)
440 global $mybb, $content_types;
442 asort($content_types);
[all …]
/dports/graphics/zathura/zathura-0.4.5/zathura/
H A Dplugin.c18 girara_list_t* content_types; /**< List of supported content types */ member
60 plugin_manager->content_types = girara_list_new2(g_free); in zathura_plugin_manager_new()
65 || plugin_manager->content_types == NULL) { in zathura_plugin_manager_new()
159 plugin->content_types = girara_list_new2(g_free); in load_plugin()
244 return plugin_manager->content_types; in zathura_plugin_manager_get_content_types()
254 girara_list_free(plugin_manager->content_types); in zathura_plugin_manager_free()
266 || plugin->content_types == NULL in register_plugin()
274 GIRARA_LIST_FOREACH_BODY(plugin->content_types, gchar*, type, in register_plugin()
317 girara_list_append(plugin_manager->content_types, g_strdup(type)); in plugin_mapping_new()
345 girara_list_free(plugin->content_types); in zathura_plugin_free()
[all …]
/dports/www/py-slumber/slumber-0.7.1/slumber/
H A Dserialize.py21 content_types = None variable in BaseSerializer
25 if self.content_types is None:
27 return self.content_types[0]
38 content_types = [ variable in JsonSerializer
56 content_types = ["text/yaml"] variable in YamlSerializer
94 for ctype in x.content_types:

12345678910>>...27