일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- javascript
- postgres
- DATABASE
- 하모니카
- 3.0
- 윈도우
- hamonikr
- 스크립트
- 리눅스
- ubuntu
- 자바
- 자바스크립트
- python
- JS
- PostgreSQL
- 데이터베이스
- 우분투
- node
- install
- Atlassian
- DB
- 아틀라시안
- 노드
- 설치
- 설정
- java
- 파이썬
- Windows
- script
- Linux
- Today
- Total
목록브라우저 (2)
LukeHan 의 잡다한 기술 블로그
이 문서는 Confluence 에서 Access 로그를 확인하여 접속 Browser 정보를 획득하는 방법입니다. 출력 코드 아래 코드를 확인 대상 서버의 Confluence 의 Access 로그가 있는 폴더에 추가한 후 실행합니다. #!/bin/bash echo "[$(date +%y%m%d_%H%M%S)] Start" # config export_log_file_for_customer="get_access_browser_list_$(date +%y%m%d_%H%M%S).log" export_log_file="get_access_browser_list_$(date +%y%m%d_%H%M%S).log" log_file="conf_access_log.2022-" last_month=07 cnt=05 #Sta..
iOS/Android 체크 if( /Android/i.test(navigator.userAgent)) { // 안드로이드 } else if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) { // iOS 아이폰, 아이패드, 아이팟 } else { // 그 외 디바이스 } browser 체크1 // 접속 브라우저를 확인합니다(html5 지원하지 않을 경우 경고문을 출력하기 위해 사용) function isBrowserCheck(){ var agt = navigator.userAgent.toLowerCase(); var text = ''; if ((navigator.appName == 'Netscape' && agt.indexOf('trident') != -1) || (..