Piero V.

Plugin Redirect (v1.0) [Flatpress]

Italiano

Ho scritto questo plugin che serve per effettuare dei redirect di un indirizzo ad un post qualsiasi.

I redirect vanno modificati nel pannello di amministrazione apposito (Plugins -> Redirect) e poi sono subito attivi.

Se usate prettyURLs sarà possibile raggiungerli con fp-url/redirect/my_redirect altrimenti dovete passare via GET o POST il parametro redirect.

Come nome del redirect sono accettati i caratteri alfanumerici più i simboli . @ - _.

Licenza: GNU GPL v2.0

Download: redirect_v1.0.tar.gz.

Esempio: Plugin Redirect

English

I’m sorry for my macheronic Englsh.

I’ve written a plugin that allows to make redirects from an address to an entry.

To activate a redirect you have to go in the Plugin section of Administration Panel then go to Redirect.

If you have activated PrettyURLs Plugin (from NoWhereMan, bundled with flatpress) fp-url/redirect/my_redirect otherwise you have to pass redirect parameter with GET or POST method (es index.php?redirect=my_redirect).

Name of redirect can contain alphanumeric characters and these symbols: . @ - _.

Licence: GNU GPL v2.0

Download: redirect_v1.0.tar.gz.

Example: Redirect Plugin

Come aggiungere TinyMCE a Flatpress

Per utilizzare TinyMCE su Flatpress esiste un plugin che noi useremo solo con un file, e cioè quello che lo integra su flatpress.

La cartella è fp-plugins/tinymce.

Creiamo ora il file plugin.tinymce.php:

<?php
/*
Plugin Name: TinyMCE
Version: 1.0
Plugin URI: http://flatpress.sf.net
Description: Allows using TinyMCE
Author: NoWhereMan
Author URI: http://flatpress.sf.net
*/

add_filter('editor_toolbar', 'plugin_tinymce_load'); 

function plugin_tinymce_load() {

$URL = plugin_geturl('tinymce'); // if you followed the naming conventions here you'll get the right url for fp-plugins/tinymce/

echo '<script language="javascript" type="text/javascript" src="' . $URL . 'tiny_mce/tiny_mce.js"></script> '; // here's the magic
echo '
<script language="javascript" type="text/javascript">
tinyMCE.init({
	mode : "none",
	theme : "advanced",
	skin : "default",
	language : "it",
	theme_advanced_toolbar_location : "top",
	theme_advanced_statusbar_location : "bottom",
	plugins : "emotions,inlinepopups,insertdatetime,paste,style,table,media,searchreplace",
	theme_advanced_buttons1_add : "forecolor,backcolor",
	theme_advanced_buttons2_add : "tablecontrols",
	theme_advanced_buttons3_add : "emotions,media,|,cut,copy,paste,pastetext,pasteword,|,search,replace"
});
</script>
<div style="text-align: right; font-size: 80%;">
<a href="javascript:void(0);" onclick="javascript:tinyMCE.execCommand(\'mceToggleEditor\', false, \'content\');">Usa l\'editor visuale/testuale</a>
</div>';

}

In realtà questo file è molto modificato da quello originale: intanto fa in modo che l’editor non sia caricato subito ma solo su richiesta dell’utente con un link sopra la textarea a destra. … [Leggi il resto]