[HOME PAGE] [STORES] [CLASSICISTRANIERI.COM] [FOTO] [YOUTUBE CHANNEL]


Bug 8968 – Configuration variable to truncate or disable automatic edit summaries

Last modified: 2008-06-09 15:04:43 UTC

Wikimedia Bugzilla is closed!

Wikimedia has migrated from Bugzilla to Phabricator. Bug reports should be created and updated in Wikimedia Phabricator instead. Please create an account in Phabricator and add your Bugzilla email address to it.
Wikimedia Bugzilla is read-only. If you try to edit or create any bug report in Bugzilla you will be shown an intentional error message.
In order to access the Phabricator task corresponding to a Bugzilla report, just remove "static-" from its URL.
You could still run searches in Bugzilla or access your list of votes but bug reports will obviously not be up-to-date in Bugzilla.
Bug 8968 - Configuration variable to truncate or disable automatic edit summaries
Configuration variable to truncate or disable automatic edit summaries
Status: RESOLVED FIXED
Product: MediaWiki
Classification: Unclassified
Page editing (Other open bugs)
unspecified
All All
: Low enhancement with 1 vote (vote)
: ---
Assigned To: Nobody - You can work on this!
: patch, patch-need-review
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2007-02-13 17:48 UTC by FND
Modified: 2008-06-09 15:04 UTC (History)
1 user (show)

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments
proposed patch (1.47 KB, patch)
2007-02-13 18:24 UTC, FND
Details
proposed patch (revised) (1.36 KB, patch)
2007-02-13 19:39 UTC, FND
Details

Description FND 2007-02-13 17:48:12 UTC
It would be helpful if there was a variable to either
- limit the number of chars in an auto-summary (currently 200), or
- completely disable auto-summaries (though this can also be done by setting
MediaWiki:Autosumm-new to " ")

This could rather easily be done by editing the getAutosummary function in
Article.php (I myself am not qualified for this, unfortunatly).
Comment 1 FND 2007-02-13 18:02:08 UTC
Here's how I think it might be done:
(However, I don't know how to register the new variable $autoSummChars so it's
customizable in Special:Allmessages...)

	public static function getAutosummary( $oldtext, $newtext, $flags ) {

		# This code is UGLY UGLY UGLY.
		# Somebody PLEASE come up with a more elegant way to do it.

		#Redirect autosummaries
		$summary = self::getRedirectAutosummary( $newtext );

		if ($summary)
			return $summary;

		#Blanking autosummaries
		if (!($flags & EDIT_NEW))
			$summary = self::getBlankingAutosummary( $oldtext, $newtext );

		if ($summary)
			return $summary;

		#New page autosummaries
		if ($flags & EDIT_NEW && strlen($newtext)) {
			#If they're making a new article, give its text, truncated, in the summary.
			if ($autoSummChars > 0) {
				global $wgContLang;
				$truncatedtext = $wgContLang->truncate(
					str_replace("\n", ' ', $newtext),
					max( 0, $autoSummChars - strlen( wfMsgForContent( 'autosumm-new') ) ),
					'...' );
				$summary = wfMsgForContent( 'autosumm-new', $truncatedtext );
			} else {
				$summary = "";
			}
		}

		if ($summary)
			return $summary;

		return $summary;
	}
Comment 2 FND 2007-02-13 18:24:09 UTC
Created attachment 3213 [details]
proposed patch

The previous comment stripped the whitespaces, so here's a slightly altered
version as an attachment.
I've marked my changes with "-- FND".
Comment 3 Rob Church 2007-02-13 18:28:52 UTC
Please submit patches as unified diffs against Subversion trunk.
Comment 4 Aryeh Gregor (not reading bugmail, please e-mail directly) 2007-02-13 18:54:38 UTC
Not so important for a three-line patch, though.  Anyway, note that the variable
should be a global declared in DefaultSettings.php, not a local variable that
was never assigned a value as here.
Comment 5 FND 2007-02-13 19:39:41 UTC
Created attachment 3214 [details]
proposed patch (revised)

Here's the revised version as a patch.
Please note that it's untested, as I don't have a MW installation to test it on
at the moment.
But it's very simple, so I would have to be a complete moron to screw this one
up...

(In reply to comment #3)
> Please submit patches as unified diffs against Subversion trunk.

Thanks to Brion and Simetrical, I actually know what that means and figured out
how to do it...

(In reply to comment #4)
> Anyway, note that the variable
> should be a global declared in DefaultSettings.php, not a local variable that

> was never assigned a value as here.

I wasn't sure whether declaring/initializing the variable in
DefaultSettings.php would suffice - well, I guess it does...
Comment 6 Chad H. 2008-06-09 15:04:43 UTC
This is done in 1.13, see [[mw:Manual:$wgUseAutomaticEditSummaries]]

Note You need to log in before you can comment on or make changes to this bug.


Contents Listing Alphabetical by Author:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Unknown Other

Contents Listing Alphabetical by Title:
# A B C D E F G H I J K L M N O P Q R S T U V W Y Z Other

Medical Encyclopedia

Browse by first letter of topic:


A-Ag Ah-Ap Aq-Az B-Bk Bl-Bz C-Cg Ch-Co
Cp-Cz D-Di Dj-Dz E-Ep Eq-Ez F G
H-Hf Hg-Hz I-In Io-Iz J K L-Ln
Lo-Lz M-Mf Mg-Mz N O P-Pl Pm-Pz
Q R S-Sh Si-Sp Sq-Sz T-Tn To-Tz
U V W X Y Z 0-9

Biblioteca - SPANISH

Biblioteca Solidaria - SPANISH

Bugzilla

Ebooks Gratuits

Encyclopaedia Britannica 1911 - PDF

Project Gutenberg: DVD-ROM 2007

Project Gutenberg ENGLISH Selection

Project Gutenberg SPANISH Selection

Standard E-books

Wikipedia Articles Indexes

Wikipedia for Schools - ENGLISH

Wikipedia for Schools - FRENCH

Wikipedia for Schools - SPANISH

Wikipedia for Schools - PORTUGUESE

Wikipedia 2016 - FRENCH

Wikipedia HTML - CATALAN

Wikipedia Picture of the Year 2006

Wikipedia Picture of the Year 2007

Wikipedia Picture of the Year 2008

Wikipedia Picture of the Year 2009

Wikipedia Picture of the Year 2010

Wikipedia Picture of the Year 2011