Where Love Is

Where Love Is is a 1917 silent film drama based on a novel by William J. Locke and starring Ann Murdock.[1]

Where Love Is
Written byWilliam J. Locke
Distributed byMutual Film Corporation
Release date
  • February 5, 1917 (1917-02-05)
Running time
5 reels
CountryUSA
LanguageSilent..English titles

An incomplete copy is preserved at the Library of Congress.[2][3]

Cast

gollark: One of these days I really ought to add login and CSRF prevention.
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.

References

  1. "Abrreviated View of Movie Page". Afi.com. Retrieved 14 October 2017.
  2. "Where Love Is". Lcweb2.loc.gov. 14 October 2017. Retrieved 14 October 2017.
  3. Catalog of Holdings The American Film Institute Collection and The United Artists Collection at The Library of Congress, p.207 c.1978 by The American Film Institute


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