AndreasBroager / as3corelib

Automatically exported from code.google.com/p/as3corelib
0 stars 0 forks source link

Remove reference / reliance on Flex classes #56

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The following class reference / use classes from the Flex framework. This
makes it difficult to use the library in non-Flex content and applications.

com.adobe.crypto.SHA1
import mx.utils.Base64Encoder;

---
com.adobe.crypto.SHA224
import mx.utils.Base64Encoder;

---
com.adobe.crypto.SHA256
import mx.utils.Base64Encoder;

---
com.adobe.crypto.WSSEUsernameToken
import mx.utils.Base64Encoder;

---
com.adobe.fileformats.vcard.VCardParser
import mx.utils.Base64Decoder;
import mx.utils.StringUtil;

---
com.adobe.utils.DateUtil
import mx.formatters.DateBase;

---

The most important one is DateUtil as that seems to be used by a lot of people.

Original issue reported on code.google.com by mikechambers on 2 Jul 2008 at 3:08

GoogleCodeExporter commented 8 years ago

Original comment by mikechambers on 2 Jul 2008 at 4:16

GoogleCodeExporter commented 8 years ago
We either need to remove the reliance on the flex classes, or move them into 
their own package so it is clear 
they rely on Flex (similar to what we do with the AIR classes).

Original comment by mikechambers on 21 Sep 2009 at 5:09