Labs/Joey: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
Line 42: Line 42:
| id | uname | pw                                      | email          | date_joined        | ip          | level  | isbanned |
| id | uname | pw                                      | email          | date_joined        | ip          | level  | isbanned |
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+
|  1 | dougt | xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | dougt@meer.net | 2007-01-29 11:28:42 | 00.00.00.00 | Normal | no      |
|  1 | dougt | xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx       | dougt@meer.net | 2007-01-29 11:28:42 | 00.00.00.00 | Normal | no      |
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+



Revision as of 18:30, 31 January 2007

Joey!

What is Joey

Joey is a server, Firefox add-on, and java midlet that allow you to pass data from your Firefox browser to cell phone.

The objective of this effort is to provide a virtual cloud allowing Mozilla users to upload content from the browser to a server and finally be able to access the the content from a phone or other mobile device. The server may do fetching, processing, transcoding, etc of content to ensure that it is in the right format for the mobile client.

Examples of this would:

Provide useful meta data (e.g. text clippings, saved photos, some subset of microsummaries) to a Firefox user via their mobile phone

Allow users to examine and manage this meta data from within Firefox

Allow third party developers to build addons taking advantage of this system.


Developer Info

Wanna help out? Great! You can start by checking out the code and and look over our todo list [1].


Joey Pieces

Joey DB:

What the tables look like:


mysql> show tables;
+-------------------+
| Tables_in_joey_db |
+-------------------+
| upload            |
| user              |
+-------------------+

mysql> select * from user where id=1;
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+
| id | uname | pw                                       | email          | date_joined         | ip           | level  | isbanned |
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+
|  1 | dougt | xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx       | dougt@meer.net | 2007-01-29 11:28:42 | 00.00.00.00 | Normal | no       |
+----+-------+------------------------------------------+----------------+---------------------+--------------+--------+----------+

mysql> select * from upload where owner=1;
+------+-------+----------+------------+----------------------------------------------+------+----------------------------------+------+----------+-----------+---------------------+--------+
| id   | owner | name     | type       | uri                                          | uuid | title                            | size | content  | thumbnail | date_created        | shared |
+------+-------+----------+------------+----------------------------------------------+------+----------------------------------+------+----------+-----------+---------------------+--------+
| 7466 |     1 | Untitled | text/plain | aHR0cDovL3dpa2kubW96aWxsYS5vcmcvTWFpbl9QYWdl |      | TWFpbiBQYWdlIC0gTW96aWxsYVdpa2k= |    4 | TWFpbg== |           | 2007-01-31 14:45:14 | yes    |
+------+-------+----------+------------+----------------------------------------------+------+----------------------------------+------+----------+-----------+---------------------+--------+


Firefox Addon

Mozilla Server

  • Short write-up of what this does

[4]

Mobile Clients

  • Short write-up of what this should do. [6]
  • Not released just yet as we are working out the licensing terms. stay tuned.

You can view all source code online here [7]


Or check it out here with this command:

svn co http://svn.mozilla.org/labs/joey/trunk