Goose Feather
Goose Feather is a 2004 Serbian film directed by Ljubiša Samardžić. Its original Serbian language title is Jesen stiže, Dunjo moja (Serbian Cyrillic: Јесен стиже, дуњо моја).
Goose Feather | |
---|---|
Directed by | Ljubisa Samardzic |
Starring | Branislav Trifunović Kalina Kovačević |
Release date |
|
Running time | 94 min |
Country | Serbia and Montenegro |
Language | Serbian |
It was Serbia and Montenegro's submission to the 77th Academy Awards for the Academy Award for Best Foreign Language Film, but was not accepted as a nominee.[1][2]
Cast
- Branislav Trifunović - Sava Ladjarski
- Kalina Kovačević - Ancica Granfild
- Marija Karan - Marija Stanimirovic
- Igor Đorđević - Kum Petrasin
- Marta Uzelac - Dunja
- Rada Đuričin - Savina majka
- Vojislav Brajović - Savin otac
- Predrag Ejdus - Gazda Granfild
- Renata Ulmanski - Gospodja Blavacki
- Slobodan Ninković - Timotije
- Milorad Mandić - Skeledzija
- Boris Milivojević - Ciganin
- Branimir Brstina - Vlasnik carde
gollark: I want a *different* set of "OPERATIONS ON RELEVANT NODE THING" and no HTML generation at the end, and it would be bees to just copy-paste the function here.
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
See also
References
- "50 Countries in Competition for Oscar". Academy of Motion Picture Arts and Sciences. 2004-10-22. Archived from the original on June 11, 2007. Retrieved 2008-07-09.
- "2005 Oscars 77th Academy Awards Nominees". Yahoo! Movies. 2005-01-25. Retrieved 2008-07-09.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.