gecko/browser/components/loop
2014-09-02 16:28:25 -05:00
..
content Bug 1060610 - Don't update latest callUrl expiration until it is exfiltrated r=Standard8 2014-09-01 17:17:05 -05:00
standalone Bug 1061154 Part 3 Fix some more Loop strings following UX feedback, and add necessary strings for outgoing calls from the desktop client. r=nperriault,r=abr 2014-09-01 20:32:47 +01:00
test Backed out changeset e6cf07180934 (bug 1055139) for xpcshell bustage 2014-09-02 16:28:25 -05:00
ui Bug 1047144: Add a gear menu to the Loop panel. r=Standard8 2014-09-01 18:11:50 +01:00
.gitignore Bug 1044796 Provide an option to Loop's standalone client makefile to create a version.txt file. r=nperriault 2014-07-30 17:13:16 +01:00
build-jsx Bug 1033715 - Add build script to transpile JSX files to JS, r=dmose 2014-07-07 14:45:00 -07:00
CardDavImporter.jsm Bug 972079 - CardDAV Address Importer for Loop r=MattN 2014-08-29 13:31:46 -05:00
jar.mn Bug 1047144: Add a gear menu to the Loop panel. r=Standard8 2014-09-01 18:11:50 +01:00
LoopContacts.jsm Bug 1060812 - Stop processing when contact is not found r=Standard8 2014-09-01 15:44:51 -05:00
LoopStorage.jsm Bug 1038716 - add a contacts API. r=abr,dolske,mak,bholley 2014-08-12 12:24:07 +02:00
manifest.ini Bug 994483 Add Loop unit tests to tbpl. r=dburns 2014-06-05 15:45:16 +01:00
moz.build Bug 972079 - CardDAV Address Importer for Loop r=MattN 2014-08-29 13:31:46 -05:00
MozLoopAPI.jsm Bug 1059021: Added sign in/up link to the Loop panel footer. Patch by MattN and nperriault. r=MattN,r=Standard8 2014-08-29 14:11:54 +01:00
MozLoopPushHandler.jsm Backed out changeset e6cf07180934 (bug 1055139) for xpcshell bustage 2014-09-02 16:28:25 -05:00
MozLoopService.jsm Bug 1055319 - Add DNS-based soft-start mechanism for Loop in release builds r=dolske 2014-08-18 17:52:26 -05:00
MozLoopWorker.js Bug 998989 - anonymize sensitive data in telemetry log. r=ekr, r=dveditz 2014-07-10 19:53:44 -04:00
README.txt Bug 976114 - stand up basic functional test for a fetching a URL, r=Standard8 2014-08-05 07:21:28 -07:00
run-all-loop-tests.sh Bug 1039757 Add a script to run relevant unit tests for Loop. r=dmose 2014-07-17 09:27:47 +01:00

This is the directory for the Loop desktop implementation and the standalone
client.

The desktop implementation is the UX built into Firefox, activated by the Loop
button on the toolbar. The standalone client is the link-clicker UX for any
modern browser that supports WebRTC.

The standalone client is a set of web pages intended to be hosted on a
standalone server referenced by the loop-server.

The standalone client exists in standalone/ but shares items
(from content/shared/) with the desktop implementation. See the README.md
file in the standalone/ directory for how to run the server locally.


Hacking
=======
Please be sure to execute

  browser/components/loop/run-all-loop-tests.sh

from the top level before requesting review on a patch.


Functional Tests
================
These are currently a work in progress, but it's already possible to run a test
if you have a [loop-server](https://github.com/mozilla-services/loop-server)
install that is properly configured.  From the top-level gecko directory,
execute:

  export LOOP_SERVER=/Users/larry/src/loop-server
  ./mach marionette-test browser/components/loop/test/functional/manifest.ini

Once the automation is complete, we'll include this in run-all-loop-tests.sh
as well.


Working with React JSX files
============================

Our views use [React](http://facebook.github.io/react/) written in JSX files
and transpiled to JS before we commit. You need to install the JSX compiler
using npm in order to compile the .jsx files into regular .js ones:

    npm install -g react-tools

Once installed, run build-jsx with the --watch option from
browser/components/loop, eg.:

    cd browser/components/loop
    ./build-jsx --watch

build-jsx can also be do a one-time compile pass instead of watching if
the --watch argument is omitted.  Be sure to commit any transpiled files
at the same time as changes to their sources.