Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added ability to share all favorites.HEADmasterSebastian2011-03-313-3/+80
|
* Merge branch 'master' of gitorious.org:jlew/xo-file-distrojlew2011-03-272-4/+5
|\
| * Updated class to exec (API Change)jlew2010-08-171-1/+1
| | | | | | | | http://lists.sugarlabs.org/archive/sugar-devel/2010-August/026153.html
| * Incremented activity to 10jlew2010-05-181-1/+1
| |
| * Added os import and removed unused alert importjlew2010-05-181-1/+2
| |
| * Added parent to ObjectBrowser. Fixes ticket 2005jlew2010-05-181-1/+1
| | | | | | | | http://bugs.sugarlabs.org/ticket/2005
* | Fixed typojlew2011-03-271-1/+1
| |
* | Better Error handlingjlew2011-03-271-4/+8
|/
* Release 9Justin Lewis2010-01-292-2/+2
|
* Made custom toolbar the default active toolbarJustin Lewis2010-01-291-0/+1
|
* New activity iconJustin Lewis2010-01-213-83/+27
|
* Release 8.Justin Lewis2010-01-194-85/+74
|
* Now checks if server available during boot in new threadJustin Lewis2010-01-192-87/+82
| | | | | If server is found, it activates the icon to allow switching to the server.
* Updated tree view, expanding only description.Justin Lewis2010-01-192-37/+22
| | | | Cleaned up code, now uses one clean loop
* Scrollbars now automatic on admin viewJustin Lewis2010-01-191-0/+1
|
* Fixed bug, in admin view, now disables action bar.Justin Lewis2010-01-191-15/+18
|
* Lots of gui and procedural changesJustin Lewis2010-01-188-95/+1006
| | | | | | | | | | | | | | | | | | | * Button Changes * Sugar toolbar with svg icons instead of buttons * Instead of "File", now using "Object" terminology * Deactivate buttons that require selection when no files are selected * Throbber Changes * Mouse now turns into watch when throbber invoked * Disables window while working * Connects to server after start up. * Scrollbars disappear when not needed. NEW BUGS: * Add files from normal mode, switch to server, try to upload file * Press toolbar button when in admin screen
* Fixed bug in blueberry that crashed when packaging file.Justin Lewis2010-01-181-1/+4
| | | | | | This is caused by the zip lib it is using, when trying to append to an empty zip file it would crash. Solution: put that in try block and just wipe out the existing zip file if it can't append to it.
* Release 7Justin Lewis2010-01-123-73/+106
|
* Fixed depreciated message in setup.pyJustin Lewis2010-01-121-1/+1
|
* Fixed Keep Error bugJustin Lewis2010-01-121-5/+7
|
* Fixed hang when server is offline.Justin Lewis2010-01-123-25/+42
| | | | | Initialize gui sooner, then added signal to interrupt the network connection when the server is not responding after 10 seconds.
* Basic permissions: download only, add/remove, admin.Justin Lewis2010-01-115-32/+256
| | | | | | | The first user to connect to the server is added as an admin. Admins will get a "Server Settings" button on their UI. When clicked, they will be presented with a list of all users ever connected to the server. There they can give them upload/remove and admin privileges if desired.
* Code Refactoring. Started to separate gui and functional code.Justin Lewis2010-01-084-266/+337
| | | | | There is more work required, but this seems like a stable point to commit the code.
* Bug fixesJustin Lewis2010-01-081-1/+7
|
* Fixed multi-thread issue in serverJustin Lewis2010-01-081-2/+14
|
* Added try block around file list downloadJustin Lewis2010-01-071-8/+11
|
* Fixed bug that prevented it from starting upJustin Lewis2010-01-071-3/+3
|
* Release 6Justin Lewis2010-01-073-3/+187
|
* Added server mode ability. Updated and moved GUI code.Justin Lewis2010-01-075-84/+401
| | | | | Added throbber for blocking/cpu intensive tasks (like network and packaging files) to make UI appear more robust.
* Added a basic server for testing server modeJustin Lewis2010-01-079-1/+3737
|
* BugfixJustin Lewis2010-01-061-1/+1
|
* Added notice when file download failsJustin Lewis2010-01-062-6/+17
|
* Fixed one liner bug (no impact on current code)Justin Lewis2010-01-051-1/+1
| | | | Committing now to prevent problems if rollback is needed
* Files are now stored as a FileInfo object.Justin Lewis2010-01-052-51/+137
| | | | | | | | | | | | | | This makes networking much easier as we don't need to worry about sending tainted data. This update breaks compatibility with older versions due to removing unneeded information from the file list transfer. It also breaks loading old entires from the journal for the same reason, unneeded information is no longer stored in the save/load arrays, object takes care of adding/removing extra information This update also updates how the gui gets its information though the object instead of the lists that were used before.
* Spelling FixesJustin Lewis2010-01-051-3/+3
|
* Added GNU Public License header to the two py files I wrote.Justin Lewis2009-12-312-0/+32
|
* Release FileShare-5.xoJustin Lewis2009-12-261-1/+1
|
* Added ability for multiple selectJustin Lewis2009-12-261-10/+17
|
* Fixed bug on client side when server adds file after joinJustin Lewis2009-12-261-1/+5
|
* Release 4Justin Lewis2009-12-182-5/+5
|
* Removed tests from lib as it is not needed for projectJustin Lewis2009-12-1816-669/+0
|
* Activity now asks if it should save files when it closes.Justin Lewis2009-12-181-0/+29
| | | | | This is done because saving the files takes up the limited hard drive space with a copy of a file already installed into the journal.
* Fixed remove bug (for real this time)Justin Lewis2009-12-181-8/+9
|
* Fixed formated strings for new id typeJustin Lewis2009-12-181-2/+2
|
* Fixed remove file bugJustin Lewis2009-12-181-0/+1
|
* Releasing FileShare-3.xoJustin Lewis2009-12-151-1/+1
|
* Fixed bug that was when resuming and was server and now clientJustin Lewis2009-12-151-5/+11
| | | | | | Now the server sets its download percent to 100 to prevent it from trying to download it and the client now ignores status text when it gets file list from server.
* Fixed bug when installing download (broke in a resent commit)Justin Lewis2009-12-151-2/+3
|
* Added ability to install files back to the journal.Justin Lewis2009-12-151-4/+30
| | | | | | This will be useful for stored copies. It also allows you to transfer all the files by sending a saved version of the activity and then they can install back to the journal.