aboutsummaryrefslogtreecommitdiffstats
path: root/js
Commit message (Collapse)AuthorAgeFilesLines
* add icon_trnalsatefriendica2013-12-041-0/+49
|
* Quick hack to allow themes/modules to use different CSS classes for the ACL ↵Olivier Migeot2013-11-271-2/+14
| | | | selector's icon (e.g. icon-lock/icon-unlock instead of lock/unlock). Unless a theme supports it, they'll stay at their former values. Dunno if it's the best way to achieve this, though.
* create jquery-compat to hold deprecated jquery functions, load it before all ↵friendica2013-11-262-39/+71
| | | | the dependent js scripts
* make font-asewome optional. Also include jquery.browser in js/main.js so we ↵friendica2013-11-251-0/+39
| | | | can turn off the migration toolkit.
* pass algorithm to the decryptor so we know if our plugin is allowed to runfriendica2013-11-211-1/+1
|
* e2ee algorithms are now pluggable so if you want to roll your own algorithm ↵friendica2013-11-211-13/+33
| | | | or do something like swap_bytes(rabbit(left_shift(3,triple_aes256(right_shift(base64(text)))))) - go for it. As long as the person at the other end can reverse it, you can do pretty much whatever you want. I'd like to see the NSA crack that one - especially if the algorithm was called something like "dishwasher" or something which didn't provide a lot of clues.
* typofriendica2013-11-141-1/+1
|
* e2ee in comments and a bit of cleanup so not every theme has to define how ↵friendica2013-11-141-0/+31
| | | | to insert bbcode, only if they're doing something special (e.g. this is how to implement a javascript plugin :-)), and I got rid of the predefined http:// in the bbcode for urls. You're almost always pasting a url which already has that bit and it just creates an extra step.
* revert addeditortext changes for tinymce detectionfriendica2013-11-121-6/+5
|
* very crude zid support for e2ee content and move bbcode converter to main.js ↵friendica2013-11-121-0/+135
| | | | so it's available when not logged in (though we might ultimately want to force people to get a matrix account to use our encryption).
* add rabbit and tripledes ciphers - probably need a pconfig to set the defaultfriendica2013-11-111-7/+40
|
* make e2ee work on tinymcefriendica2013-11-111-1/+15
|
* localise js ui strings for e2eefriendica2013-11-111-3/+3
|
* because some of the "hints" floating around are pretty pathetic and ↵friendica2013-11-111-1/+11
| | | | ambiguous and require a few tries.
* remove debugging stufffriendica2013-11-111-1/+5
|
* display encrypted text inlinefriendica2013-11-111-2/+16
|
* e2eefriendica2013-11-101-17/+23
|
* some more doco for how to finish it.friendica2013-11-101-0/+9
|
* Didn't finish it. Gotta' pee.friendica2013-11-101-0/+72
|
* add base64 converters which aren't universal across browsersfriendica2013-11-101-0/+109
|
* issue #189 - show post edited time on relative date hovertipfriendica2013-10-301-0/+11
|
* fix issue #123 again, except this time don't allow ping recursionfriendica2013-10-291-12/+17
|
* Recursive pingThomas Willingham2013-10-291-2/+2
|
* basic support (still needs some js to expose it) for sharing an item on a ↵friendica2013-10-231-14/+39
| | | | remote site by sending it through oexchange on your home hub. Untested.
* issue #123 - this will leave a very very short interval between the time a ↵friendica2013-10-201-1/+2
| | | | notification shows up and the time it is cleared. This is about as fast as we can clear it. Previously it could have been as long as the network poll interval.
* partial fix for issue #123 - this doesn't actually fix the reported problem, ↵friendica2013-10-201-0/+1
| | | | but does instantly reset the notification count when you click 'mark all xyz notifications seen'
* fix endless scrollfriendica2013-10-131-1/+1
|
* turn off endless scroll if we have no more content to load - currently for ↵friendica2013-10-131-1/+3
| | | | mod_display, need to add to other content modules
* more icon conversions - savedsearch listings need more work. The drop icon ↵friendica2013-10-091-2/+2
| | | | should be hidden unless the entry is being hovered.
* replace a bunch of graphic icons with vector iconsfriendica2013-10-081-0/+4
|
* suppress creating the directory update record for profile updates which are ↵friendica2013-09-251-1/+2
| | | | part of the normal import_xchan sequence - otherwise we get two for every change. Create it normally if we are called with a profile_update message and don't go through the whole import_xchan thing.
* Sheesh. Three lines of Javascript. All you have to do is find which of the ↵friendica2013-09-011-0/+6
| | | | three lines is doing something wrong. Or FILE A BUG. Or use a different browser (not *try* a different browser, *use* a different browser), or turn off freaking tinymce. But no - let's argue about browsers instead.
* Another try at issue #61 and #62 - an earlier fix was partially working but ↵friendica2013-08-181-0/+34
| | | | the issue persisted - this extends it a bit.
* Merge pull request #77 from git-marijus/masterfriendica2013-07-143-10/+439
|\ | | | | add spin.js a themable js spinner to red
| * port jot to spin.jsgit-marijus2013-07-131-1/+1
| |
| * port like button to spin.jsgit-marijus2013-07-131-7/+7
| |
| * Update main.jsgit-marijus2013-07-131-1/+1
| |
| * Update main.jsgit-marijus2013-07-131-1/+2
| |
| * Update main.jsgit-marijus2013-07-131-3/+2
| |
| * Create jquery.spin.jsgit-marijus2013-07-131-0/+80
| | | | | | jquery plugin for spin.js
| * Create spin.jsgit-marijus2013-07-131-0/+349
| |
* | fix undefined commentWrapfriendica2013-07-041-1/+4
| |
* | with luck this will fix issue #61 and issue #62 - boy that was fun (not).friendica2013-07-021-24/+13
| |
* | some work on issue #62 (comments collapsing on liveupdate), but still a work ↵friendica2013-07-021-14/+23
| | | | | | | | | | | | in progress some work on photo consolidated "view/edit", but still a work in progress
* | issue #65friendica2013-07-011-0/+16
| |
* | implement taggable in auto-complete popupsfriendica2013-06-161-3/+3
| |
* | flag taggable connections in acl selectorfriendica2013-06-161-2/+2
|/
* possibly fix skipped pages on endless scrollfriendica2013-06-131-6/+15
|
* fix timeago on search items, and bring back app display for wall items - ↵friendica2013-05-091-6/+6
| | | | which took a bit of re-arranging of a lot of other stuff
* more jquery migrationfriendica2013-05-091-2/+2
|