- partial submits sends the whole form regardless of the
f:ajaxexecute argument https://java.net/jira/browse/JAVASERVERFACES_SPEC_PUBLIC-1098. Potential heavy bandwidth usage needlessly. - unexpected side-effects when binding a component to a bean in wider scope than request
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.http.HttpMethod; | |
| import org.springframework.http.client.BufferingClientHttpRequestFactory; | |
| import org.springframework.http.client.ClientHttpRequestFactory; | |
| import java.net.URI; | |
| public class BufferingOptionallyClientHttpRequestFactory extends BufferingClientHttpRequestFactory { |
- reference manual: https://www.postfinance.ch/binp/postfinance/public/dam.Up1Ct9TDDT8MFk4AB6m00phIHrTLJlvd0XyZjBIXy3M.spool/content/dam/pf/de/doc/consult/manual/dlserv/inpayslip_isr_man_fr.pdf
- https://www.postfinance.ch/fr/biz/prod/pay/debsolution/inpayref/detail.html
- encoding line font: http://ansuz.sooke.bc.ca/page/fonts#ocrb
- amounts: must be rounded to 00 or 05 cts (swiss norm)
- reference number: 26 positions (padded with zeros if necessary)
- ensure we have a bvr account
- check with Raiffeisen if there's the possibility to check test bvr
- handle pv11 files on remote ftp server to consolidate payments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select to_date('1970-01-01', 'YYYY-MM-DD') + (:milliseconds / 86400000) from dual; | |
| -- charset | |
| select * from nls_database_parameters where parameter='NLS_CHARACTERSET'; | |
| -- FULL table sizes | |
| SELECT owner, | |
| table_name, | |
| TRUNC (SUM (bytes) / 1024 / 1024 / 1024) GB, | |
| ROUND (ratio_to_report (SUM (bytes)) OVER () * 100) Percent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| +-------+-------------------+ | |
| |Version|Date of publication| | |
| +-------+-------------------+ | |
| |1 |June 1997 | | |
| +-------+-------------------+ | |
| |2 |August 1998 | | |
| +-------+-------------------+ | |
| |3 |December 1999 | | |
| +-------+-------------------+ | |
| |5.1 |June 2011 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| An element with an `opacity: 0` still triggers `click` events. | |
| http://jsfiddle.net/6U25n/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Use the `box-shadow` property to add the padding (http://codepen.io/jacqueminv/pen/hKmdH). | |
| HTML: | |
| <div> | |
| <span>A multiline text that we want to define a graphical padding per line</span> | |
| </div> | |
| CSS: |
setting "fixed" padding is an issue, look here: http://jsfiddle.net/GTY8P/
.wrapper {
overflow: hidden;
}
.wrapper > div {
width: 50%;
float: left;
padding-bottom: 999999em;
margin-bottom: -999999em;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //from http://stackoverflow.com/a/8412989 | |
| var parseXml; | |
| if (typeof window.DOMParser != "undefined") { | |
| parseXml = function(xmlStr) { | |
| return ( new window.DOMParser() ).parseFromString(xmlStr, "text/xml"); | |
| }; | |
| } else if (typeof window.ActiveXObject != "undefined" && | |
| new window.ActiveXObject("Microsoft.XMLDOM")) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :after { | |
| content: ""; | |
| display: table; | |
| clear: both; | |
| } |
NewerOlder