Custom Query (429 matches)
Results (19 - 21 of 429)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#493 | fixed | compilation unit mapping files support | ||
Description |
To implement support for GNAT-style compilation unit mapping files. |
|||
#492 | fixed | utf-8 codec fails on emoji | ||
Description |
Matreshka decodes \u1F60A (😊) into utf-8 incorrectly. It gets 0xf0, 0xdf, 0x98, 0x8a instead of 0xF0, 0x9F, 0x98, 0x8A Test case: with Ada.Streams; with League.Strings; with League.Text_Codecs; procedure Main is use type Ada.Streams.Stream_Element_Array; Line : constant Wide_Wide_String := (1 => Wide_Wide_Character'Val (16#1F60A#)); -- 😊 Text : constant League.Strings.Universal_String := League.Strings.To_Universal_String (Line); UTF8 : constant League.Text_Codecs.Text_Codec := League.Text_Codecs.Codec (League.Strings.To_Universal_String ("utf-8")); Raw : constant Ada.Streams.Stream_Element_Array := UTF8.Encode (Text).To_Stream_Element_Array; begin if Raw /= (16#F0#, 16#9F#, 16#98#, 16#8A#) then raise Program_Error; end if; end Main; |
|||
#490 | fixed | Compound holders | ||
Description |
We need more general way to get component of a holder in XML templates then JSON_Object only. I propose to add Component function to League.Holder. |
Note:
See TracQuery
for help on using queries.