WEB-디자인2008/12/07 22:11

핵심:  IE간 UTF-8문제. 웹 어플리케이션에서의 화면 구성, Ajax Library들 문제.


음.....

완성도. 라는 것에 대해서 말을 해보죠

당초에 3가지 기능을 만들려 했고 그 3가지가 모두 정상 작동 하면 완성도는 100%일까요?

음... 100%가 아니겠죠? 그리고 그 이유는 완성을 "기능의 작동" 만으로 따지지 않기 때문 입니다.

머, 약간 명제가 잘못된 부분이 있네요;;;  몇 주간의 프로젝트로 써 느낀것을 적어 봅니다.


ajax라이브러리와

방탄웹 으로 불리우는 화면 레이아웃 두가지에 대해서 입니다.



일단. 국내에서 N-tire를 팔아 먹는것에 있어서 가장 중요한 것은 IE6인것 같습니다.

그리고 웹 표준을 준수하는 많은 UI라이브러리들이... IE6와 맞지 않습니다.......

비록 단독으로는 잘 동작한다고 해도 여러가지를 섞게 되면... 심각해집니다.

문제는... 최대한 깔끔하게 보이게 하기 위해서는 IE끼리의 cross-browser 문제가 생겼습니다...

지금 이걸 해결 해야하는데...

모 프로젝트 동안의 문제들

  • 표에 기제 되어야하는 내용이 너무 많다. 글자 크기를 가변적으로 하는것은 일반적 UI구성이 아니기 때문에 하지 말라고 한다.
  • YUI에 있는 grid가..... 다른 스타일 시트와 썪여서 파폭에서 셀렉트 박스가 안나온다.....
  • YUI의 grid가 IE6와 IE8에서 다르게 작용한다.;;;;;;;;;;;;
  • dojo에 있는 달력은 2008 12월 화면에서 1월 1일을 클릭하면 2008년 1월 1일이 결과로 나온다......;;;;
  • jQuery의 위젯은 IE6에서 제대로 나오지 않는다.

머 디자이너도 아니고 웹에서 몇년 손떼기도했지만... 이건 아니잖아;;;;;
CSS로 딱! 인 UI를 구성하는게 그렇게 쉽지많은 않다...

그렇다고 테이블로 하면...... 자존심이 용납 못한다..

결국 absolute로 간다...

라이브러리? 걍 날코딩 할란다.... 이건 머 완성도가....

많은 라이브러리화 되어있는 CSS들이....

다른 스타일에 영향을 주도록 되어 있다.

물론 외국의 라이브러리 들이 말이다....

우리나라는머.....

생각하지말자....


이거... 방학되면 나만의 UI셋을 잘 정립해서 퍼트려도 사람좀 모일꺼 같다...

쓰다보니 말투가 바꼈다;;;;

저작자 표시 비영리 동일 조건 변경 허락
Posted by dosuser(신대용) dosuser
WEB-디자인2008/10/23 17:05


나중에 사진을 첨부하겠지만...

div의 absolute를   .   을 이용하여 지정해주면 상당히 이상하게 작동을 하면서 원래 위치에서 "자리차지"를 해버립니다.....;;;;

#으로 하면 문제가 해결됨....

회사 컴에 스네그잇이 안깔려 있는게 한스러울 뿐...
저작자 표시 비영리 동일 조건 변경 허락
Posted by dosuser(신대용) dosuser
WEB-디자인2008/10/10 04:07


open suse의 홈페이지가 상당히 깔쌈해 졌습니다.
더욱이 라운드 박스처리는 완벽?
물론 linux계열의 사이트 답게 웹표준을 완벽하게 지키고 있습니다


웹집으로 저장 받은 사이트 메인 사본

저작자 표시 비영리 동일 조건 변경 허락
Posted by dosuser(신대용) dosuser
WEB-디자인2008/10/10 03:21

[펌]http://drawlogic.com/2008/02/18/as3-cryptography-libraries/

AS3 Cryptography and Hashing Libraries for Encryption and Security (crypto)

AS3 libraries for crypto are pretty robust from the new RAW POWER in the AVM2 virtual machine that runs flash9/as3, cryptography, like compression, is very processor intensive and needs a fair amount of power to be worth the time (usually a balancing mechanism). I am working on a few security apps in AIR and Flash9 for a project and a product so this is the best of what I have found to share. I will be sure to post here when these projects are complete.

There are two that are pretty good as3 kits that have decent support for crypto and hashing, actually as3crypto is quite broad in their support or most common crypto algorithms, even hashing support up to SHA-256 and ciphers 3DES, AES, RC4.

This is not really a comparison just some kits that have tools you might need. as3crypto is definitely the way to go for more heavy ecryption with common ciphers, but if you are just hashing some text as3corelib might work for your project. as3corelib is a more broad toolkit that is made or sponsored by Adobe that has JSON, RSS, support and other tools. It is a great core lib, but not as deep in the encryption area. I am actually using both in the stuff I am working on, as3corelib for some other uses (JSON,RSS) and as3crypto for all encryption and hashing.

The two are:

  • as3crypto
    • Robust, broad encryption and security support
    • Open source
    • Demo
    • Browse source
    • Broad support of algorithms
        • TLS 1.0 support, exposed through TLSSocket and TLSEngine classes
        • X.509 Certificate support, including parsing, and validation
        • built-in list of common root Certificate Authorities
        • symmetric ciphers: AES, Blowfish, DES, 3DES, XTEA, RC4
        • confidentiality modes: CTR, CBC, CFB, CFB-8, OFB, ECB
        • public key crypto: RSA (encryption, decryption, signing, verifying and key generation)
        • padding: PKCS#1 (type 1 and 2), PKCS#5
        • BigInteger library
        • hashing function: SHA-256, SHA-224, SHA-1, MD5, MD2
        • HMAC support
        • prng: TLSPRF and stream-cypher-based PRNG.
        • minimal ASN-1/DER support for PEM key parsing and X-509 cert parsing
        • Crypto - Shortcut class to access many classes above.
        • Hex, Base64 - Static methods to convert binary data to and from text formats

As3 Crypto is a cryptography library written in Actionscript 3 that provides several common algorithms, as well as TLS 1.0 support. The library is offered under the BSD license, and include several derivative works from Java, C and javascript sources.

Posted by dosuser(신대용) dosuser