Skip to content. | Skip to navigation

Personal tools
Sections
You are here: Home Topics osx
Navigation
 

osx

Jul 26, 2011

Ferrara Eventi: rilasciata l'app iPhone

by Massimo Azzolini — last modified Jul 26, 2011 04:49 PM

Resta sempre aggiornato sul calendario eventi di Ferrara e provincia grazie all'ultima applicazione di casa RedTurtle disponibile su iTunes

Sei in pieno centro a Ferrara, ma non sai cosa c'è in giro questa sera? Abbiamo una sorpresa per te.

RedTurtle ha appena rilasciato sull'App Store l'applicazione Ferrara Eventi. L'app si scarica gratuitamente dal sito e ti permette di vedere sul tuo iPad, iPhone o iPod Touch, tutto il calendario eventi di Ferrara e provincia.

L'immagine splashscreen di Ferrara Eventi

Abbiamo realizzato l'applicazione nell'ambito di una collaborazione con la Provincia di Ferrara, per rendere le informazioni del portale del turismo più accessibili anche sulle nuove piattaforme.

I dati sono disponibili sia in italiano che in inglese, per consentire ai visitatori sia italiani che stranieri di godersi appieno la città.

Good to know: è possibile riordinare il calendario secondo le tue esigenze. Sarà sufficiente applicare i filtri periodo, località o categoria, per visualizzare solo gli eventi che ti possono interessare.

Jan 13, 2010

Install Plone 4 on OSX Leopard e Snow Leopard (from scratch)

by Stefano Marchetti — last modified Jan 13, 2010 08:30 AM

Install Plone 4 without Unified Installer is easy.

Trying Plone 4 is easy.
The following steps are tested with OSX 10.6 Snow Leopard and OSX 10.5 Leopard.
The first step is to obtain the compiler to build Python from source.
On OSX, to install the gcc compiler, download the Xcode package from http://connect.apple.com/. You’ll need to register for an Apple Developer Connection account. Once you’ve registered, login and click Download Software and then Developer Tools. Find the Download link
Xcode 3.2.1 Developer DVD (Disk Image)
Be careful: Xcode 3.2.1 is for OSX 10.6 Snow Leopard and Xcode 3.1.4 is for OSX 10.5 Leopard.

First: create a temp folder:

mkdir -p /Users/stefano/Devel/tmp
cd  /Users/stefano/Devel/tmp


Plone 4 needs Python 2.6; it is easy build Python from source. The great advantage is that, in this way, all files will be in a folder leaving your OS "clean".

Download the latest version 2.6 release from http://www.python.org/download/releases/2.6.4/

Move the file (Gzipped source tar ball) Python-2.6.4.tgz in the "temp" folder and uncompress it:

tar zxf Python-2.6.4.tgz
cd Python-2.6.4


Create the Python destination folder:

mkdir -p /Users/stefano/Devel/python/2.6/
cd /Users/stefano/Devel/tmp/Python-2.6.4


before you can build your Python first you must configure it.

From the folder /Users/stefano/Devel/tmp/Python-2.6.4 type the command:

./configure --prefix=/Users/stefano/Devel/python/2.6/

 
Then to build your Python type:

make


To install the Python binary, library modules, shared library modules, include files, configuration files, and the manual page, just type:

make install


Download the Python Imaging Library (the "all platform" version) from
http://www.pythonware.com/products/pil/
Move the downloaded file in /Users/stefano/Devel/tmp/

tar zxf Imaging-1.1.6.tgz

cd /Users/stefano/Devel/tmp/Imaging-1.1.6

 
Install Python Imaging Library in your Python environment:

/Users/stefano/Devel/python/2.6/bin/python2.6 setup.py install
cd /Users/stefano/Devel/

 
Then download the Plone source:

svn co http://svn.plone.org/svn/plone/buildouts/plone-coredev/branches/4.0/ plone4

cd plone4 

Then bootstrap Plone:

/Users/stefano/Devel/python/2.6/bin/python2.6 ./bootstrap.py


Then run the buildout:

./bin/buildout

 
Start Plone:

./bin/instance fg


Then type this URL in your browser:

http://localhost:8080


Enjoy your new Plone 4!

If you want to test new experimental functionality you can use configuration files in the folder "exeperimental" in the plone folder (Users/stefano/Devel/plone4)
For example to try Deco relaunch the buildout:

./bin/buildout -c experimental/deco.cfg

 
For more information read the instructions at the beginning of the configuration file "experimental/deco.cfg".