[CDB] Quickedit 1.0.0-rc1

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Anti-Spam Guide
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
Locked
User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 5657
Joined: Tue Oct 30, 2007 10:57 pm
Location: Munich, Germany
Name: Marc
Contact:

[CDB] Quickedit 1.0.0-rc1

Post by Marc »

Extension Name: Quickedit
Author: Marc

Extension Description:: Adds the ability to quickedit posts.
Extension Version::1.0.0-RC1

Requirements: phpBB 3.1.1

Features:
  • Global setting to disable/enable quickedit boardwide (next to quickreply settings in Board features)
  • Forum-based settings to disable/enable quickedit for a specific forum (in forum settings)
  • Opens up full editor after second click on "Edit"-Button
Demo URL: none yet

Extension Download:
You can download it from github: Download Quickedit v1.0.0-rc1
Please make sure to upload the content of the zip package to the ext folder.

Image Image Image
User avatar
PayBas
Former Team Member
Posts: 930
Joined: Thu May 25, 2006 12:37 am

Re: [DEV] Quickedit 0.1.0-dev

Post by PayBas »

Awesome ;).
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

Still a shame it (still) won't go into core (till 3.2) but this will have to do :P
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
VOLKERMORD
Registered User
Posts: 119
Joined: Thu Jul 23, 2009 1:20 pm
Location: Dacia (Wolf land)

Re: [DEV] Quickedit 0.1.0-dev

Post by VOLKERMORD »

Not working :(
Har tios tintoninos insus tiko is dakon kand sia til kogaion ilmaton hlioylo pleiste naktoilo
User avatar
Raul [ThE KuKa]
Style Customisations
Style Customisations
Posts: 11073
Joined: Mon Dec 08, 2003 9:24 pm
Location: Spain
Name: Raul Arroyo
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Raul [ThE KuKa] »

Spanish translation:

Code: Select all

<?php
/**
*
* Quickedit ACP [Spanish]
*
* @package Quickedit
* @copyright (c) 2014 Marc Alexander ( www.m-a-styles.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

$lang = array_merge($lang, array(
	'ALLOW_QUICK_EDIT'		=> 'Permitir edición rápida',
	'ALLOW_QUICK_EDIT_EXPLAIN'	=> 'Este interruptor permite deshabilitar la edición rápida en el foro entero. Cuando está activada, se puede utilizar la configuración específica del foro para determinar si la edición rápida está disponible en los foros individualmente.',
	'ALLOW_QUICK_EDIT_BUTTON'	=> 'Enviar y habilitar la edición rápida en todos los foros',
	'ENABLE_QUICK_EDIT'		=> 'Habilitar edición rápida',
	'ENABLE_QUICK_EDIT_EXPLAIN'	=> 'Permite la edición rápida en este foro. Este ajuste no se considera si la edición rápida es para foros desactivados. La edición rápida sólo estará disponible para los usuarios que tienen permiso para editar mensajes en este foro.',
));
All unsolicited PMs will be ignored.
:warning: Knowledge Base | Documentation | Board rules | phpBB Styles Rules & Policies | Styles Queue Stats :warning:


If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate.
:flag_es: phpBB Spain - Online Since 2003 :heart:


User avatar
Marc
Development Team Leader
Development Team Leader
Posts: 5657
Joined: Tue Oct 30, 2007 10:57 pm
Location: Munich, Germany
Name: Marc
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Marc »

Raul [ThE KuKa] wrote:Spanish translation:

Code: Select all

<?php
/**
*
* Quickedit ACP [Spanish]
*
* @package Quickedit
* @copyright (c) 2014 Marc Alexander ( www.m-a-styles.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

$lang = array_merge($lang, array(
	'ALLOW_QUICK_EDIT'		=> 'Permitir edición rápida',
	'ALLOW_QUICK_EDIT_EXPLAIN'	=> 'Este interruptor permite deshabilitar la edición rápida en el foro entero. Cuando está activada, se puede utilizar la configuración específica del foro para determinar si la edición rápida está disponible en los foros individualmente.',
	'ALLOW_QUICK_EDIT_BUTTON'	=> 'Enviar y habilitar la edición rápida en todos los foros',
	'ENABLE_QUICK_EDIT'		=> 'Habilitar edición rápida',
	'ENABLE_QUICK_EDIT_EXPLAIN'	=> 'Permite la edición rápida en este foro. Este ajuste no se considera si la edición rápida es para foros desactivados. La edición rápida sólo estará disponible para los usuarios que tienen permiso para editar mensajes en este foro.',
));
Added: https://github.com/marc1706/quickedit/c ... da6a103439
Thank you very much.
VOLKERMORD wrote:Not working :(
If you tested it without the part stated in the requirements section then it will not work.
User avatar
VOLKERMORD
Registered User
Posts: 119
Joined: Thu Jul 23, 2009 1:20 pm
Location: Dacia (Wolf land)

Re: [DEV] Quickedit 0.1.0-dev

Post by VOLKERMORD »

Marc wrote:
VOLKERMORD wrote:Not working :(
If you tested it without the part stated in the requirements section then it will not work.
Features:
  • Global setting to disable/enable quickedit boardwide (next to quickreply settings in Board features)
  • Forum-based settings to disable/enable quickedit for a specific forum (in forum settings)
  • Opens up full editor after second click on "Edit"-Button
I dont understand.
"(in forum settings)" what is this?
"Opens up full editor after second click on "Edit"-Button" :?: :?: :?:
Har tios tintoninos insus tiko is dakon kand sia til kogaion ilmaton hlioylo pleiste naktoilo
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

When you click the Edit button again you get taken to the full editor.
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

EDIT: resolved
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

Updating to beta 3 caused this not to work again...

Does that RFC ticket have to be updated to work with beta 3?

EDIT: Solved again. No idea how though...I just copied the posting.php from here though now I think it won't be matching the beta 3 version

(Why are extensions so much harder to understand than mods, even though they're easier to install? -_-)
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

Updating makes it not work AGAIN! Clicking the edit button leads to the full editor (and yes I have it enabled in all forums)

Ugh, I hate extensions - why do they seem more complicated than MODs? :/

EDIT: gonna do some checking, most likely it's me. not the extension.

EDIT #2: I used the posting.php in that PR in the first post...but it's still not working
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
MattF
Extensions Development Coordinator
Extensions Development Coordinator
Posts: 5859
Joined: Sat Jan 17, 2009 9:37 am
Location: Los Angeles, CA
Name: Matt Friedman

Re: [DEV] Quickedit 0.1.0-dev

Post by MattF »

Jessica wrote:Ugh, I hate extensions - why do they seem more complicated than MODs? :/
Because phpBB 3.1 is not released yet, and is developing and changing, which means extensions need to keep up or be broken. This is the cost of trying to use extensions and phpBB 3.1 at this stage. Trust me, extensions are way better than MODs ;)
Formerly known as VSEMy ExtensionsPlease do not PM me for support.
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

Yeah I guess you're right.

But I still would like to figure out why this extension isn't working any more on my test board
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
User avatar
prototech
Former Team Member
Posts: 5406
Joined: Mon Mar 19, 2007 2:04 pm
Location: Southern California

Re: [DEV] Quickedit 0.1.0-dev

Post by prototech »

The code for the post buttons changed, so the selector used to attach the DOM event is not valid anymore.
Need help with MOD/style installations or other phpBB problems? Contact me for a quote.
User avatar
Jessica
Former Team Member
Posts: 4342
Joined: Sun Jul 18, 2010 2:53 pm
Location: Pennsylvania, USA
Name: Jessica
Contact:

Re: [DEV] Quickedit 0.1.0-dev

Post by Jessica »

Okay. Then I hope the extension gets updated to fix that issue.
Pro-choice, Atheist, Pro-LGBT rights
Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. - Albert Einstein
Locked

Return to “Extensions in Development”