Volcano! (1926 film)

Volcano! is a 1926 American silent drama film starring Bebe Daniels and directed by William K. Howard. It was produced by Famous Players-Lasky and distributed by Paramount Pictures. It is based on a 1920 Broadway play Martinique by Laurence Eyre.[1] It is preserved in the Library of Congress, UCLA Film and Television Archives, and The Museum of Modern Art.[2][3][4][5]

Volcano!
Lobby card
Directed byWilliam K. Howard
Produced byAdolph Zukor
Jesse Lasky
Written byBernard McConville (scenario)
Based onMartinique
by Laurence Eyre
StarringBebe Daniels
CinematographyLucien N. Andriot
Distributed byParamount Pictures
Release date
  • June 1926 (1926-06)
Running time
60 minutes; 6 reels
CountryUnited States
LanguageSilent (English intertitles)

Cast

gollark: No, I have that stuff done.
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?

References

  1. Martinique produced on Broadway April-May 1920, Eltinge 42nd Street Theatre; IBDb.com
  2. The American Film Institute Catalog Feature Films: 1921-30 by The American Film Institute, c.1971
  3. The AFI Catalog of Feature Films:Volcano!(Wayback)
  4. Catalog of Holdings The American Film Institute Collection and The United Artist Collection at The Library of Congress, p.202, c.1978 by The American Film Institute
  5. The Library of Congress American Silent Feature Film Survival Catalog: Volcano


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.