La description :-- dakwamine random stuff mémo [unity3d] .hgignore & .gitignore + .gitattributes présentation du site productions musicales travaux level design à loadinc level design à titre personnel test des b...
Geo IP vous fournit comme la latitude, la longitude et l'ISP (Internet Service Provider) etc. informations.
Notre service GeoIP a trouvé l'hôte dakwamine.fr.Actuellement, hébergé dans France et son fournisseur de services est O2Switch Datacenter IP-Range .
Les informations d'en-tête HTTP font partie du protocole HTTP que le navigateur d'un utilisateur envoie à appelé o2switch PowerBoost contenant les détails de ce que le navigateur veut et acceptera de nouveau du serveur Web.
-- dakwamine random stuff mémo [unity3d] .hgignore & .gitignore + .gitattributes présentation du site productions musicales travaux level design à loadinc level design à titre personnel test des balises <audio> et <video> de html5 moi, dakwamine… [drupal] perfect views block configuration for multilingual node support drupal no responses » jul 22 2018 objectives we want to add on a node page layout a block which uses a field from the currently rendered content (node). we want this block to be translated the same as the currently rendered entity. as a anonymous user, we want it to respect the published settings of the currently rendered entity. as an admin, we want to be able to see this block if the content is unpublished. we want to support cases when a content is not translated. the default drupal behaviour is to use the default translation. configuration configuration screenshot. do not use published (= yes) setting. views will remove itself results on which you don’t have permission. also, as an admin, you will still be able to see the block if the content is unpublished. set default translation (= true) . views will retrieve the default translation, which is the default result when you attempt to go on a node page which has no translation. set rendering language to interface text language selected for page . views will attempt to translate the content. if no content translation is found, default translation will be used. contextual filter set to content: id with content id from url as default value. hide block if the view output is empty. no need to keep this block if there is no output (or keep it if you need it anyway). additional information tested on drupal 8.5.5 on simplytest.me. posted by dakwamine at 10:11 tagged with: d8 , drupal , drupal 8 , language , translation [drupal] custom scrollbars with overlay scrollbars library drupal no responses » may 11 2018 the road to custom scrollbars reminiscing. i am currently working on a website for a video game reviews project i have had with an old friend of mine (fuudoh). obviously, i have switched to drupal to get a result quicker than what i would get with the php only solution i have been working on a few years ago (it was fun though). one of the main problems i have came across while theming was to give a consistent look across various web browsers (and now devices—mobile and tablets were not as much a concern as nowadays). bootstrap was not as popular as it is now and it saved a lot of my time for my current project. but it did not fix one of the other problems i am still experiencing today: scrollbars. i hate how they cannot be themed natively. in an overflow: auto setting, they push all the content by their width when they appear, potentially changing the height of the content; which is not very elegant in my opinion. you cannot change their size, nor their color. with the big grow in the recent years in the js scene, we have now good enough js libraries which gives developers means to achieve better, cross-browser, cross-platform scrollbars. i have checked a drupal 8 module, scrollbar , which unfortunately does not work well (or was misconfigured). the bars were not refreshing when the browser window is resized. maybe i’ll post an issue on the drupal module tracker, but it does not seem to be the fault of the module. but there was one big drawback with the library used by this module (jscrollpane): the scroll behaviour is not the native browser’s scroll behaviour. you will not get any ease in the scroll animation (or maybe you could have it by configuring the library). then i have searched a little and found two candidates: simplebar: https://grsmto.github.io/simplebar/ overlayscrollbars: https://kingsora.github.io/overlayscrollbars/ both are js libraries which use native browser’s capabilities to scroll the content; you will not feel anything different between normal scrollbars and those custom ones, which is perfect! the first library is currently (may 2018) used on twitch.tv. i have not tested it, but it claims to be cross browser. but it also claims that there may be some performance impact when used on the body element. that is why i chose overlayscrollbars, which is recommended by simplebar in its documentation by the way. relieved. after having spent some time trying to figure out why it did not work, i have finally got it working nicely with the bootstrap+sass theme! the implementation is in fact trivial for a drupal themer but here are the steps to achieve it. steps download the overlayscrollbars library ( link to releases ) and extract the files to the themes/custom/themename/libraries/overlayscrollbars directory (create necessary directories). this overlayscrollbars folder must contain the css and js directories which came from the zip (remove any wrapping directory). create a file named trigger.js at this location: themes/custom/themename/js/overlayscrollbars/trigger.js add this to the file: trigger.js javascript (function ($) { //the passed argument has to be at least a empty object or a object with your desired options $('body').overlayscrollbars({ }); // .overlayscrollbars({ }) must be appended on any single element you want a scrollbar. $('nav.article-list').overlayscrollbars({ }); }(jquery)); 1 2 3 4 5 6 ( function ( $ ) { //the passed argument has to be at least a empty object or a object with your desired options $ ( 'body' ) . overlayscrollbars ( { } ) ; // .overlayscrollbars({ }) must be appended on any single element you want a scrollbar. $ ( 'nav.article-list' ) . overlayscrollbars ( { } ) ; } ( jquery ) ) ; the themename.libraries.yml of your subtheme may look like this (the overlayscrollbars is what we care about): themename.libraries.yml yaml framework: css: theme: css/style.css: {} js: bootstrap/assets/javascripts/bootstrap/affix.js: {} bootstrap/assets/javascripts/bootstrap/alert.js: {} bootstrap/assets/javascripts/bootstrap/button.js: {} bootstrap/assets/javascripts/bootstrap/carousel.js: {} bootstrap/assets/javascripts/bootstrap/collapse.js: {} bootstrap/assets/javascripts/bootstrap/dropdown.js: {} bootstrap/assets/javascripts/bootstrap/modal.js: {} bootstrap/assets/javascripts/bootstrap/tooltip.js: {} bootstrap/assets/javascripts/bootstrap/popover.js: {} bootstrap/assets/javascripts/bootstrap/scrollspy.js: {} bootstrap/assets/javascripts/bootstrap/tab.js: {} bootstrap/assets/javascripts/bootstrap/transition.js: {} overlayscrollbars: js: libraries/overlayscrollbars/js/jquery.overlayscrollbars.js: {} js/overlayscrollbars/trigger.js: {} dependencies: - core/jquery 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 framework : css : theme : css/style . css : { } js : bootstrap/assets/javascripts/bootstrap/affix . js : { } bootstrap/assets/javascripts/bootstrap/alert . js : { } bootstrap/assets/javascripts/bootstrap/button . js : { } bootstrap/assets/javascripts/bootstrap/carousel . js : { } bootstrap/assets/javascripts/bootstrap/collapse . js : { } bootstrap/assets/javascripts/bootstrap/dropdown . js : { } bootstrap/assets/javascripts/bootstrap/modal . js : { } bootstrap/assets/javascripts/bootstrap/tooltip . js : { } bootstrap/assets/javascripts/bootstrap/popover . js : { } bootstrap/assets/javascripts/bootstrap/scrollspy . js : { } bootstrap/assets/javascripts/bootstrap/tab . js : { } bootstrap/assets/javascripts/bootstrap/transition . js : { } overlayscrollbars : js : libraries/overlayscrollbars/js/jquery . overlayscrollbars . js : { } js/overlayscrollbars/trigger . js : { } dependencies : - core/jquery add an import directive in the _overrides.scss , right after the other imports (remember, i am using sass; if you use less, you have to adapt it): _overrides.scss sass // custom scrollbars library. @import "../libraries/overlayscrollbars/css/overlayscrollbars.css"; 1 2 // custom scrollbars library. @import "../libraries/overlayscrollbars/css/overlayscrollbars.css" ; compile the scss. add this hook in your themename.theme : php /** *
Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;
%% %% This is the AFNIC Whois server. %% %% complete date format : DD/MM/YYYY %% short date format : DD/MM %% version : FRNIC-2.5 %% %% Rights restricted by copyright. %% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/ %% %% Use '-h' option to obtain more information about this service. %% %% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> dakwamine.fr %% %% RL Net [##########] - RL IP [#######...] %%
domain: dakwamine.fr status: ACTIVE hold: NO holder-c: ANO00-FRNIC admin-c: ANO00-FRNIC tech-c: TCP8-FRNIC zone-c: NFC1-FRNIC nsl-id: NSL29045-FRNIC registrar: ONLINE SAS Expiry Date: 04/07/2018 created: 04/07/2007 last-update: 12/09/2016 source: FRNIC
registrar: ONLINE SAS type: Isp Option 1 address: 8 Rue de la Ville l'Evêque address: PARIS country: FR phone: +33 1 84 13 00 01 fax-no: +33 1 73 50 29 01 e-mail: hostmaster@online.net website: http://www.online.net anonymous: NO registered: 01/04/1999 source: FRNIC
nic-hdl: ANO00-FRNIC type: PERSON contact: Ano Nymous remarks: -------------- WARNING -------------- remarks: While the registrar knows him/her, remarks: this person chose to restrict access remarks: to his/her personal data. So PLEASE, remarks: don't send emails to Ano Nymous. This remarks: address is bogus and there is no hope remarks: of a reply. remarks: -------------- WARNING -------------- registrar: ONLINE SAS changed: 04/07/2007 anonymous@anonymous anonymous: YES obsoleted: NO eligstatus: ok eligdate: 04/07/2007 00:00:00 source: FRNIC
nic-hdl: ANO00-FRNIC type: PERSON contact: Ano Nymous remarks: -------------- WARNING -------------- remarks: While the registrar knows him/her, remarks: this person chose to restrict access remarks: to his/her personal data. So PLEASE, remarks: don't send emails to Ano Nymous. This remarks: address is bogus and there is no hope remarks: of a reply. remarks: -------------- WARNING -------------- registrar: ONLINE SAS changed: 17/07/2013 anonymous@anonymous anonymous: YES obsoleted: NO eligstatus: ok source: FRNIC
nic-hdl: TCP8-FRNIC type: ROLE contact: Technical Contact for ProXad address: Free SAS / ProXad address: 8, rue de la ville l'Eveque address: 75008 Paris country: FR phone: +33 1 73 50 20 00 fax-no: +33 1 73 50 25 01 e-mail: hostmaster@proxad.net trouble: Information: http://www.proxad.net/ trouble: Spam/Abuse requests: mailto:abuse@proxad.net admin-c: RA999-FRNIC tech-c: NH1184-FRNIC notify: ripe-notify@proxad.net registrar: ONLINE SAS changed: 17/02/2004 nhyvernat+ripe@corp.free.fr anonymous: NO obsoleted: NO source: FRNIC
REFERRER http://www.nic.fr
REGISTRAR AFNIC
SERVERS
SERVER fr.whois-servers.net
ARGS dakwamine.fr
PORT 43
TYPE domain RegrInfo DISCLAIMER % % This is the AFNIC Whois server. % % complete date format : DD/MM/YYYY % short date format : DD/MM % version : FRNIC-2.5 % % Rights restricted by copyright. % See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/ % % Use '-h' option to obtain more information about this service. % % [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> dakwamine.fr % % RL Net [##########] - RL IP [#######...] %
REGISTERED yes
ADMIN
HANDLE ANO00-FRNIC
TYPE PERSON
CONTACT Ano Nymous
REMARKS -------------- WARNING -------------- While the registrar knows him/her, this person chose to restrict access to his/her personal data. So PLEASE, don't send emails to Ano Nymous. This address is bogus and there is no hope of a reply. -------------- WARNING --------------
SPONSOR ONLINE SAS
CHANGED 2013-07-17
ANONYMOUS YES
OBSOLETED NO
ELIGSTATUS ok
SOURCE FRNIC
TECH
HANDLE TCP8-FRNIC
TYPE ROLE
CONTACT Technical Contact for ProXad
ADDRESS Free SAS / ProXad 8, rue de la ville l'Eveque 75008 Paris
REMARKS -------------- WARNING -------------- While the registrar knows him/her, this person chose to restrict access to his/her personal data. So PLEASE, don't send emails to Ano Nymous. This address is bogus and there is no hope of a reply. -------------- WARNING --------------
Nous utilisons des cookies pour personnaliser votre expérience sur notre site. En poursuivant votre navigation, vous acceptez cette utilisation. Apprendre encore plus