Search found 42 matches

by _hsr
Sun Apr 01, 2012 9:08 am
Forum: [3.x][Archive] RFCs
Topic: Private message notifications
Replies: 23
Views: 33549

Re: [RFC] Private message notifications

I am not sure it is worth of doing it... I mean, great idea, however phpBB itself needs to provide only basic functionality end users want. I consider this request be the same as "the latest posts on forum index" - it can be easily done as MOD, and many users not wanting it do not need to...
by _hsr
Sun Apr 01, 2012 9:04 am
Forum: [3.x][Archive] RFCs
Topic: Private message notifications
Replies: 23
Views: 33549

Re: [RFC] Private message notifications

The first functionality can be done simply by adding the following code: $(document).ready(function(){ var msgNos = parseInt($("#page-header .navbar a strong")[0].innerText); var msgInbx = $("#page-header .navbar a[accesskey='e']").next()[0].href; if(msgNos > 0){ phpbb.confirm('Y...
by _hsr
Sun Apr 01, 2012 6:02 am
Forum: [3.x][Archive] RFCs
Topic: Private message notifications
Replies: 23
Views: 33549

Private message notifications

The current system of new message notification is just updating the 0 new messages to (int) new messages. If we ajax-enable the same, we could reproduce something similar to a notification we see on Facebook, or just a pulsating number. This can be done in two ways: Without backend modifications: As...
by _hsr
Sat Mar 31, 2012 1:06 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] AJAX Quick Edit
Replies: 75
Views: 185178

Re: [RFC] AJAX Quick Edit

How about clicking the edit would start an inline edit and provide a new button to advanced edit?

A thing to note would be to reflect the changes made in inline edit back in the advanced edit, if the user chooses so.
by _hsr
Sat Mar 31, 2012 12:49 pm
Forum: [3.x][Archive] RFCs
Topic: [RFC] AJAX Quick Edit
Replies: 75
Views: 185178

Re: [RFC] AJAX Quick Edit

How about when the user click the edit button, two choices are given, quickedit and advanced edit, by which if the user has disabled javascript, the old editor is called(the edit button being the same as of now)?
by _hsr
Sat Mar 31, 2012 12:30 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC|Merged] AJAX
Replies: 130
Views: 281182

Re: [RFC|Merged] AJAX

Regarding the quickedit feature, how would it best be implemented, a pop up text editor or an inline version?
by _hsr
Thu Mar 29, 2012 3:47 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Multiple file uploads
Replies: 76
Views: 151109

Re: [RFC] Multiple file uploads

Smoothly the old way !
by _hsr
Thu Mar 29, 2012 2:13 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Multiple file uploads
Replies: 76
Views: 151109

Re: [RFC] Multiple file uploads

This is just a work in progress, I've managed to embed plupload into the upload attachments tab, however it currently lacks styling. The current setup is not checking of user permissions, which I am currently working on. In the file list, when we click on a file, a new field for comments/pace inline...
by _hsr
Wed Mar 28, 2012 8:07 am
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Multiple file uploads
Replies: 76
Views: 151109

Re: [RFC] Multiple file uploads

Update:

todo:
Check permissions before uploading files
Use existing functions to update attachment_table
Use phpbb defined fileExt blacklist
by _hsr
Mon Mar 26, 2012 9:27 pm
Forum: [3.1/Ascraeus] Merged RFCs
Topic: [RFC] Multiple file uploads
Replies: 76
Views: 151109

Re: [RFC] Multiple file uploads

Is there a standards-compliant (html5?) solution that works in all modern browsers? Yes, there are many other methods for multipart uploads, but plupload seems to be the best at it as of now. Update : The server end of plupload is to be written in upload.php containing a class with functions for fi...