Changes between Version 1 and Version 2 of DocItFAQ
- Timestamp:
- Jun 20, 2006, 5:18:35 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DocItFAQ
v1 v2 14 14 Traduzione: paolo `<paolo@php3.it>` 15 15 16 Aggiornato alla revisione: 31 3716 Aggiornato alla revisione: 3158 17 17 18 18 .. _Django FAQ: http://www.djangoproject.com/documentation/faq/ … … 102 102 Ascolta la sua musica. Ti piacerà. 103 103 104 .. Django is pronounced **JANG**-oh. Rhymes with FANG-oh. 105 106 Django è pronunciato **JANG**-oh. La rima è con FANG-oh. 104 .. Django is pronounced **JANG**-oh. Rhymes with FANG-oh. The "D" is silent. 105 106 Django è pronunciato **JANG**-oh. La rima è con FANG-oh. La "D" è muta. 107 107 108 108 .. … … 120 120 .. 121 121 Yes. World Online has been using Django for more than two years. Sites built on 122 Django have weathered traffic spikes of over one million hits an hour and a t123 least one Slashdotting. Yes, it's quite stable.122 Django have weathered traffic spikes of over one million hits an hour and a 123 number of Slashdottings. Yes, it's quite stable. 124 124 125 125 Sì. World Online ha utilizzato Django per più di due anni. Siti costruiti con 126 126 Django sono stati esposti a picchi di traffico di più di un milione di 127 richieste all'ora, ed a d almeno un effettoSlashdot. Sì, è piuttosto127 richieste all'ora, ed a diversi effetti Slashdot. Sì, è piuttosto 128 128 stabile. 129 129 … … 639 639 ---------------------------------------------- 640 640 641 .. Django requires Python_ 2.3 or later. No other Python libraries are required. 641 .. 642 Django requires Python_ 2.3 or later. No other Python libraries are required 643 for basic Django usage. 642 644 643 645 Django richiede la versione 2.3 di Python_ o successiva. Non serve nessun'altra 644 libreria .646 libreria per un uso di base. 645 647 646 648 .. … … 659 661 660 662 .. 661 You'll also need a database engine. PostgreSQL_ is recommended, and MySQL_ 662 and `SQLite 3`_ are supported. 663 664 Ti servirà anche un motore di database. PostgreSQL_ è raccomandato, MySQL_ e 665 `SQLite 3`_ sono supportati. 663 If you want to use Django with a database, which is probably the case, you'll 664 also need a database engine. PostgreSQL_ is recommended, because we're 665 PostgreSQL fans, and MySQL_ and `SQLite 3`_ are also supported. 666 667 Se intendi usare Django assieme ad un database, e probabilmente sarà così, ti 668 servirà anche un motore per database. PostgreSQL_ è raccomandato, considerando 669 che siamo appassionati di questo database server, MySQL_ e `SQLite 3`_ sono 670 supportati. 666 671 667 672 .. _Python: http://www.python.org/ … … 690 695 .. 691 696 For production use, though, we recommend mod_python. The Django developers have 692 been running it on mod_python for more than twoyears, and it's quite stable.697 been running it on mod_python for several years, and it's quite stable. 693 698 694 699 Per ambienti di produzione, tuttavia, raccomandiamo mod_python. Gli 695 sviluppatori di Django stanno usando mod_python da più di dueanni, e come700 sviluppatori di Django stanno usando mod_python da diversi anni, e come 696 701 soluzione è risultata ampiamente stabile. 697 702 … … 711 716 --------------------------------------- 712 717 713 * For Python 2.4, check out this `guide to mod_python & Python 2.3`_. 718 * For Python 2.4, grab mod_python from `win32 build of mod_python for 719 Python 2.4`_. 720 * For Python 2.4, check out this `Django on Windows howto`_. 714 721 * For Python 2.3, grab mod_python from http://www.modpython.org/ and read 715 722 `Running mod_python on Apache on Windows2000`_. … … 720 727 ------------------------------------ 721 728 722 * Per Python 2.4, consulta questa `guida a mod_python & Python 2.3`_. 729 * Per Python 2.4, scarica mod_python dalla `build per win32 di mod_python 730 per Python 2.4`_. 731 * Per Python 2.4, consulta questo `howto su Django per Windows`_. 723 732 * Per Python 2.3, scarica mod_python da http://www.modpython.org/ e leggi 724 733 `Far funzionare mod_python per Apache su Windows2000`_. … … 726 735 è specifica per Windows). 727 736 728 .. _`guida a mod_python & Python 2.3`: http://www.lehuen.com/nicolas/index.php/2005/02/21/39-win32-build-of-mod_python-314-for-python-24 737 .. _`build per win32 di mod_python per Python 2.4`: http://www.lehuen.com/nicolas/index.php/2005/02/21/39-win32-build-of-mod_python-314-for-python-24 738 .. _`howto su Django per Windows`: http://thinkhole.org/wp/2006/04/03/django-on-windows-howto/ 729 739 .. _`Far funzionare mod_python per Apache su Windows2000`: http://groups-beta.google.com/group/comp.lang.python/msg/139af8c83a5a9d4f 730 740 .. _`guida per far funzionare mod_python`: http://www.dscpl.com.au/articles/modpython-001.html … … 841 851 .. 842 852 Nope. Just like the template system, the model/database layer is decoupled from 843 the rest of the framework. The one exception is: If you use a different 844 database library, you won't get to use Django's automatically-generated admin 845 site. That app is coupled to the Django database layer. 853 the rest of the framework. 846 854 847 855 No. Proprio come per il sistema di template, il sistema di gestione dei modelli 848 e dei database è disaccoppiato dal resto del framework. L'unica eccezione è che 849 usando una differente libreria di interfacciamento ai database non ti potrai 850 avvalere del sito di amministrazione generato automaticamente. Infatti l'applicazione 851 dedicata a ciò utilizza il nostro database layer. 856 e dei database è disaccoppiato dal resto del framework. 857 858 .. 859 The one exception is: If you use a different database library, you won't get to 860 use Django's automatically-generated admin site. That app is coupled to the 861 Django database layer. 862 863 L'unica eccezione: se usi una libreria di database differente, non avrai a disposizione 864 il sito di amministrazione generato automaticamente. Questa applicazione è 865 connessa al layer di database di Django. 852 866 853 867 .. … … 974 988 ---------------------------------------------------- 975 989 976 Come posso v edere l'SQL nativo delle query eseguite da Django?977 -------------------------------------------------------------- 990 Come posso visualizzare l'SQL nativo delle query eseguite da Django? 991 -------------------------------------------------------------------- 978 992 979 993 .. … … 1032 1046 .. _`Integrazione con database esistenti`: http://www.djangoproject.com/documentation/legacy_databases/ 1033 1047 1048 .. 1049 Why is Django leaking memory? 1050 ----------------------------- 1051 1052 Perché Django consuma tutta la memoria (situazione di memory leak)? 1053 ------------------------------------------------------------------- 1054 1055 .. 1056 Django isn't known to leak memory. If you find your Django processes are 1057 allocating more and more memory, with no sign of releasing it, check to make 1058 sure your ``DEBUG`` setting is set to ``True``. If ``DEBUG`` is ``True``, then 1059 Django saves a copy of every SQL statement it has executed. 1060 1061 Non è noto che Django presenti memory leak. Se ti capita di verificare che i 1062 processi di Django allocano sempre più memoria senza mai rilasciarla, 1063 assicurati che l'impostazione ``DEBUG`` sia ``True``. In questo caso, Django 1064 salva una copia di ogni interrogazione SQL che ha eseguito. 1065 1066 .. 1067 (The queries are saved in ``django.db.connection.queries``. See 1068 `How can I see the raw SQL queries Django is running?`_.) 1069 1070 (Le query sono salvate in ``django.db.connection.queries``. Vedi `Come posso 1071 visualizzare l'SQL nativo delle query eseguite da Django?`_.) 1072 1073 .. To fix the problem, set ``DEBUG`` to ``False``. 1074 1075 Per risolvere il problema poni ``DEBUG`` sul valore ``False``. 1076 1077 .. 1078 If you need to clear the query list manually at any point in your functions, 1079 just call ``reset_queries()``, like this:: 1080 1081 from django import db 1082 db.reset_queries() 1083 1084 Se vuoi pulire la lista delle query manualmente, in qualsiasi punto delle 1085 funzioni che hai scritto, è sufficiente che richiami ``reset_queries()`` 1086 come in questo esempio:: 1087 1088 from django import db 1089 db.reset_queries() 1090 1034 1091 .. 1035 1092 The admin site