Home
last modified time | relevance | path

Searched refs:MEDIA_URL (Results 1 – 25 of 131) sorted by relevance

123456

/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/
H A DtestMediaControl.java58 loadUrlAndWait(MEDIA_URL); in testBasicBehaviors()
82 loadUrlAndWait(MEDIA_URL); in testNavigateOutThePage()
102 loadUrlAndWait(MEDIA_URL); in testAudioFocusChanged()
126 loadUrlAndWait(MEDIA_URL); in testSwitchTab()
146 loadUrlAndWait(MEDIA_URL); in testCloseTab()
173 loadUrlAndWait(MEDIA_URL); in testResumeMediaFromPage()
213 loadUrlAndWait(MEDIA_URL); in testAdjustMediaVolumeOrMuted()
255 loadUrlAndWait(MEDIA_URL); in testMediaWithSilentAudioTrack()
288 loadUrlAndWait(MEDIA_URL); in testMediaWithoutAudioTrack()
343 loadUrlAndWait(MEDIA_URL); in testAudioCompetingForMediaWithSilentAudioTrack()
[all …]
H A DtestAudioFocus.java99 final String MEDIA_URL = getAbsoluteUrl(mStringHelper.ROBOCOP_MEDIA_PLAYBACK_LOOP_URL); in testAudioFocusChanged() local
100 loadUrlAndWait(MEDIA_URL); in testAudioFocusChanged()
131 final String MEDIA_URL = getAbsoluteUrl(mStringHelper.ROBOCOP_MEDIA_PLAYBACK_LOOP_URL); in testSwitchTab() local
132 loadUrlAndWait(MEDIA_URL); in testSwitchTab()
161 final String MEDIA_URL = getAbsoluteUrl(mStringHelper.ROBOCOP_MEDIA_PLAYBACK_JS_URL); in testAdjustMediaVolumeOrMuted() local
162 loadUrlAndWait(MEDIA_URL); in testAdjustMediaVolumeOrMuted()
212 final String MEDIA_URL = getAbsoluteUrl(mStringHelper.ROBOCOP_MEDIA_PLAYBACK_JS_URL); in testMediaWithSilentAudioTrack() local
213 loadUrlAndWait(MEDIA_URL); in testMediaWithSilentAudioTrack()
245 final String MEDIA_URL = getAbsoluteUrl(mStringHelper.ROBOCOP_MEDIA_PLAYBACK_JS_URL); in testMediaWithoutAudioTrack() local
246 loadUrlAndWait(MEDIA_URL); in testMediaWithoutAudioTrack()
/dports/graphics/py-django-easy-thumbnails/easy-thumbnails-2.5/easy_thumbnails/tests/
H A Dtest_templatetags.py159 expected_url = ''.join((settings.MEDIA_URL, expected))
167 expected_url = ''.join((settings.MEDIA_URL, expected))
173 expected_url = ''.join((settings.MEDIA_URL, expected))
188 expected_url = ''.join((settings.MEDIA_URL, expected))
201 expected_url = ''.join((settings.MEDIA_URL, expected))
219 expected_url = ''.join((settings.MEDIA_URL, expected))
226 expected_url = ''.join((settings.MEDIA_URL, expected))
271 expected_url = ''.join((settings.MEDIA_URL, expected))
282 expected_url = ''.join((settings.MEDIA_URL, expected))
315 expected_url = ''.join((settings.MEDIA_URL, expected))
[all …]
H A Dsettings.py6 MEDIA_URL = '/media/' variable
/dports/www/py-django-cms/django-cms-3.7.1/cms/tests/
H A Dtest_urlutils.py18 with self.settings(MEDIA_URL='/media/'):
23 with self.settings(MEDIA_URL='http://testserver2.com/'):
26 with self.settings(MEDIA_URL='http://testserver/media/'):
/dports/deskutils/py-paperless/paperless-2.7.0/src/documents/templatetags/
H A Dcustomisation.py19 os.path.join(settings.MEDIA_URL, "overrides.css")
34 os.path.join(settings.MEDIA_URL, "overrides.js")
/dports/www/seahub/seahub-8.0.7-server/seahub/utils/
H A Dmail.py8 from seahub.settings import MEDIA_URL, LOGO_PATH, \
34 'media_url': MEDIA_URL,
/dports/deskutils/virt-manager/virt-manager-3.2.0/virtinst/install/
H A Dinstallertreemedia.py21 MEDIA_URL,
135 self._media_type = MEDIA_URL
140 not self._media_type == MEDIA_URL and
301 if self._media_type in [MEDIA_URL]:
320 if self._media_type in [MEDIA_URL, MEDIA_DIR]:
/dports/www/py-django-mezzanine-filebrowser/filebrowser_safe-0.5.0/filebrowser_safe/
H A Dsettings.py19 MEDIA_URL = getattr(settings, "FILEBROWSER_MEDIA_URL", settings.MEDIA_URL) variable
H A Dfunctions.py56 return url_join(MEDIA_URL, value)
65 mediaurl_re = re.compile(r'^(%s)' % (MEDIA_URL))
155 settings_var['MEDIA_URL'] = MEDIA_URL
H A Dfields.py54 … return render_to_string("filebrowser/custom_field.html", dict(locals(), MEDIA_URL=MEDIA_URL))
/dports/multimedia/streamlink/streamlink-2.1.2/src/streamlink/plugins/
H A Dard_mediathek.py9 MEDIA_URL = "http://www.ardmediathek.de/play/media/{0}" variable
61 res = self.session.http.get(MEDIA_URL.format(media_id))
/dports/www/seahub/seahub-8.0.7-server/seahub/api2/endpoints/admin/
H A Dfavicon.py15 CUSTOM_FAVICON_PATH, MEDIA_URL
77 return Response({'favicon_path': get_service_url() + MEDIA_URL + CUSTOM_FAVICON_PATH})
H A Dlogin_bg_image.py14 from seahub.settings import SEAHUB_DATA_ROOT, MEDIA_ROOT, MEDIA_URL, CUSTOM_LOGIN_BG_PATH
77 … return Response({'login_bg_image_path': get_service_url() + MEDIA_URL + CUSTOM_LOGIN_BG_PATH})
H A Dlogo.py16 CUSTOM_LOGO_PATH, MEDIA_URL
72 return Response({'logo_path': get_service_url() + MEDIA_URL + CUSTOM_LOGO_PATH})
/dports/www/seahub/seahub-8.0.7-server/tests/api/endpoints/admin/
H A Dtest_favicon.py11 from seahub.settings import MEDIA_ROOT, CUSTOM_FAVICON_PATH, MEDIA_URL
41 assert json_resp['favicon_path'] == get_service_url() + MEDIA_URL + CUSTOM_FAVICON_PATH
H A Dtest_login_bg_image.py8 from seahub.settings import MEDIA_ROOT, CUSTOM_LOGIN_BG_PATH, MEDIA_URL
41 … assert json_resp['login_bg_image_path'] == get_service_url() + MEDIA_URL + CUSTOM_LOGIN_BG_PATH
H A Dtest_logo.py8 from seahub.settings import MEDIA_ROOT, CUSTOM_LOGO_PATH, MEDIA_URL
42 assert json_resp['logo_path'] == get_service_url() + MEDIA_URL + CUSTOM_LOGO_PATH
/dports/multimedia/livestreamer/livestreamer-1.12.2/src/livestreamer/plugins/
H A Dard_mediathek.py7 MEDIA_URL = "http://www.ardmediathek.de/play/media/{0}" variable
96 res = http.get(MEDIA_URL.format(media_id))
/dports/www/py-wagtail/wagtail-2.14.2/wagtail/documents/tests/
H A Dtest_views.py268 SENDFILE_URL=settings.MEDIA_URL[:-1]
275 … self.assertEqual(response['Location'], os.path.join(settings.MEDIA_URL, self.document.file.name))
280 SENDFILE_URL=settings.MEDIA_URL[:-1]
287 …self.assertEqual(response['X-Accel-Redirect'], os.path.join(settings.MEDIA_URL, self.document.file…
/dports/www/py-django-storages/django-storages-1.9.1/tests/
H A Dsettings.py1 MEDIA_URL = '/media/' variable
/dports/net/gnu-dico/dico-2.10/dicoweb/templatetags/
H A Dmedia.py28 return settings.MEDIA_URL
/dports/devel/py-gevent/gevent-21.8.0/examples/webchat/
H A Durls.py10 (r'^%s(?P<path>.*)$' % settings.MEDIA_URL.lstrip('/'), 'serve',
/dports/www/py-django-ckeditor-5/django-ckeditor-5-0.0.13/
H A DREADME.rst29 ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
37 MEDIA_URL = '/media/'
/dports/www/py-django-ldapdb/django-ldapdb-1.4.0/examples/
H A Dsettings.py63 MEDIA_URL = '' variable

123456