Piero V.

Plugin Last Entries JS v1.0 [Flatpress]

Italiano

Ho sviluppato per l’utente golinux di flatpress un plugin che permette di avere gli ultimi post di FP su pagine statiche in HTML.

Purtroppo proprio perché è richiesto che siano in HTML puro e semplice ho dovuto farlo in Javascript.

Ma veniamo all’uso.

Si carica nell’head un js così:

<script src="fp-root/?lastentriesjs" type="text/javascript"></script>

E lui creerà un array js chiamato fp_lastentries.

Ogni elemento dell’array ha un oggetto js che contiene title e url.

Quindi per farli vedere per esempio il codice è questo (tuttavia non testato):

<script type="text/javascript">
len=fp_lastentries.length;
document.write(len==0 ? '' : '<ul>');
for(i=0; i<len; i++) {
document.write('<li><a href="'+fp_lastentries[i].url+'">'+fp_lastentries[i].title+'</a></li>');
}
document.write(len==0 ? '' : '</ul>');
</script>

Di default mostra 10 post, se ne volete in numero diverso dovete specificarlo via URL, per esempio fp-root/?lastentriesjs=numero oppure fp-root/?lastentriesjs&count=numero. … [Leggi il resto]

Make comments always visible on Flatpress

Italiano

Può capitare di far sempre visibili i commenti su Flatpress.

Ecco il plugin che fa al caso vostro:

<?php
/*
Plugin Name: Comments Always Visible
Version: 1.0
Plugin URI: http://www.vdfn.altervista.org/2010/09/29/make-comments-always-visible-on-flatpress/
Description: Make comments always visible
Author: Piero VDFN
Author URI: http://www.vdfn.altervista.org/
*/
function plugin_commentsvisible() {
	global $fp_params;
	if(!empty($fp_params['entry']))
		$fp_params['comments']=true;
}

add_filter('init', 'plugin_commentsvisible', 20);

Salvatelo per esempio in fp-plugins/commentsvisible/plugin.commentsvisible.php.

Licenza: Pubblico Dominio

English

If you use Flatpress, maybe you want to show comments always.

This is the code to do that (see on the top of entry).

Save it for example in fp-plugins/commentsvisible/plugin.commentsvisible.php.

License: Public Domain

Plugin Internal URLs (v1.6) [Flatpress]

Italiano

Ho scritto una nuova versione del plugin Internal URLs.

Ha un leggerissimo miglioramento per le prestazioni: se non usate Pretty URLs, non eseguirà il suo hack creato a posta.

Per vedere come funziona, andate a vedere la versione 1.5.

Licenza: GNU GPLv2

Download: Internal URLs v1.6.tar.gz

English

I’ve written a new version of Internal URLs Plugin.

It’s a small fix for performances: if you don’t use Pretty URLs, it won’t use the Pretty URLs hack.

For usage, see version 1.5.

License: GNU GPLv2

Download: Internal URLs v1.6.tar.gz

Plugin Emoteseditor (v1.0) [Flatpress]

Italiano

Ho scritto un plugin che serve per avere una lista delle faccine da inserire sopra la textarea dell’editor dei post.

Non penso che funzioni anche con TinyMCE.

L’uso è semplice: appena decompresso aprite con un editor di testo semplice il file plugin.emoteseditor.php e da linea 14 inserite le vostre faccine come fatto nelle linee 12 e 13, senza però il # che è un commento.

La funzione in javascript è presa da phpMyAdmin e scritta per tutte le textarea da alexking.org.

Licenza: GNU GPLv2

Download: emoteseditor_v1.0.tar.gz

English

I’ve written a plugin that inserts the smileis list before the textarea of entries editor.

I think it won’t works with TinyMCE.

Before using it you have to edit the plugin.emoteseditor.php file with a php editor or just with notepad and insert from line 14 your emoticons like as done it in line 12 and 13, without the #.

Javascript function was originally in phpMyAdmin and it was written for all textareas by alexking.org.

Licence: GNU GPLv2

Download: emoteseditor_v1.0.tar.gz

Plugin Internal URLs (v1.5) [Flatpress]

Italiano

Ho scritto un plugin che estende bbcode permettendo di mettere link interni senza difficoltà.

Si chiama Internal URLs e implementa il tag iurl (che sta per internal url).

È una cavolata da usare. Ecco alcuni esempi (examples):

[iurl=index]Index[/iurl]
[iurl=contact title="Inviami una mail"]Contact me[/iurl]
[iurl=relative:fp-content/attachs/opensearch_v2.0.tar.gz]File in Flatpress root[/iurl]
[iurl=static:about]About Me[/iurl]
[iurl=page:legalese]Legalese[/iurl]
[iurl=post:entry100715-113627]Plugin Brute Force[/iurl]
[iurl=entry:entry100714-155550 comments=true]Plugin Open Search[/iurl]
[iurl=entry:100714-120802 comments=true anchor=comment100715-120544]Commento di Lantaca[/iurl]
[iurl=category:1]Musica[/iurl]
[iurl="tag:Linux"]Linux[/iurl] (with TAG Plugin >=1.1)
[iurl=redirect:plugin_redirect.html]Plugin Redirect[/iurl] (with Redirect Plugin)

Index
Contact me
File in Flatpress root
About Me
Legalese
Plugin Brute Force[Leggi il resto]