반응형
반응형

  IOS6 업데이트 이후 세션 문제


- IOS 6.0 사파리 브라우져의 [쿠키허용] 정책 변경

- 기존 설정 (쿠키 허용에 대한 정책 설정)으로는 결제시 안심클릭 카드사 인증에 대한 세션을 유지하지 못하게 되면

결제 진행 불가 (카드사 인증창 호출 불가)현상 발생 할 수 있음

 

1. 기존(IOS 6.0이전) 쿠키 허용 기본 값 : “방문한 곳” or “항상” 설정시 결제이용 가능 (세션유지가 가능)

2. 변경(IOS 6.0 이후) : “항상” 설정 시에만 세션유지 가능. “방문한곳”, “안함” 일 경우 세션 단절


반응형
반응형

 끝을 맺기를 처음과 같이 하면 실패가 없다. - 노자

반응형
반응형
잃어버린 '마음의 기술'만
다시 찾는다면 치유할 수 있다.
동시에 두 곳에 존재하고, 언제 어디에나 있고,
천리안을 가진 듯 멀리 떨어진 곳을 보고,
텔레파시로 대화하고, 평화를 조성하고,
그 어느 것이든 할 수 있다.
의식을 집중하기만 하면
되는 것이다.

- 그렉 브레이든의《디바인 매트릭스》중에서 -


* 마음에서 병이 오고
마음으로 병이 낫는다고 합니다.
더 좋은 일이 있을 거라는 믿음, 치유된다는 확신,
그 믿음과 확신에 모든 의식을 집중하는 것이
'마음의 기술'을 연마하는 출발점입니다.
세상이 나를 움직이는 것이 아니라
내가 세상을 움직이는 것입니다.
'마음의 기술' 하나만으로...

반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

스스로 낫는 힘  (0) 2012.09.27
반짝이는 눈동자  (0) 2012.09.26
푸른 우물  (0) 2012.09.24
하루에 한끼만 먹어라  (0) 2012.09.22
기쁨의 파동  (0) 2012.09.21
반응형
기한 없는 목표는 탁상공론이다.
기한이 없으면
일을 진행시켜주는 에너지도 발생하지 않는다.
당신의 삶을 불발탄으로 만들지 않으려면
분명한 기한을 정하라.
기한을 정하지 않는 목표는 총알 없는 총이다.
-브라이언 트레이시

목표라는 단어 자체에 기한이 포함되어 있는 것입니다.
다시 말해 기한이 있어야만 목표라 할 수 있습니다.
기한이 있어야 목표가 뚜렷해져,
에너지가 생기고 몰입하게 되며,
그 결과로 성과가 나오는 것입니다.
기한 없는 목표는
아무런 쓸모가 없는 펑크 난 타이어와 같습니다.

반응형
반응형

http://html5-demos.appspot.com/



반응형
반응형

Drag and drop a folder onto Chrome now available

As web apps evolve, you might have found it handy to let users drag and drop files from the desktop onto the browser to edit, upload, share, etc. But unfortunately, we’ve been unable to drag and drop folders onto web pages. Luckily, beginning with Chrome 21, this issue will be addressed (already available in the Chrome dev channel).

Passing multiple files with drag and drop

Let’s look at a code sample of existing drag and drop.

<div id=”dropzone”></div>

var dropzone = document.getElementById('dropzone');
dropzone.ondrop = function(e) {
  var length = e.dataTransfer.files.length;
  for (var i = 0; i < length; i++) {
    var file = e.dataTransfer.files[i];
    ... // do whatever you want
  }
};

In this example, you can actually drag and drop a file or files from the desktop to your browser, but when you try to pass a folder, notice that it will be either rejected or treated as a File object resulting in a failure.

How to handle dropped folders

Chrome 21 allows you to drop a folder or multiple folders into the browser window. To handle these, you need to change the way you handle dropped objects.

<div id=”dropzone”></div>

var dropzone = document.getElementById('dropzone');
dropzone.ondrop = function(e) {
  var length = e.dataTransfer.items.length;
  for (var i = 0; i < length; i++) {
    var entry = e.dataTransfer.items[i].webkitGetAsEntry();
    if (entry.isFile) {
      ... // do whatever you want
    } else if (entry.isDirectory) {
      ... // do whatever you want
    }
  }
};

Notice that a big difference here is that you can treat a dropped object as Entry (FileEntry or DirectoryEntry) by using new function called getAsEntry (webkitGetAsEntry).
After obtaining access to the Entry object, you can use standard file handling methods that were introduced in the FileSystem API specification. For example, this example shows how you can detect if a dropped object is a file or a directory by examining the .isFile (or the .isDirectory) field.

For further information regarding the FileSystem API, read Exploring the FileSystem APIs, regarding new drag and drop capability, read this document. Of course, these features are open standards or are waiting to become one soon.

반응형

+ Recent posts