Version Notes
Version number: 1.0.2.1
Stability: Stable
Compatibility: 1.4, 1.5, 1.6, 1.7
Download this release
Release Info
Developer | Magento Core Team |
Extension | CommerceLab_News |
Version | 1.0.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.2.1
- app/code/community/CommerceLab/News/Block/Adminhtml/Comment/Grid.php +1 -1
- app/code/community/CommerceLab/News/Block/Adminhtml/News/Edit/Tab/Additional.php +1 -1
- app/code/community/CommerceLab/News/Block/Adminhtml/News/Edit/Tab/Info.php +3 -3
- app/code/community/CommerceLab/News/Block/Newsitem.php +2 -2
- app/code/community/CommerceLab/News/etc/system.xml +1 -1
- app/code/community/CommerceLab/News/sql/clnews_setup/mysql4-upgrade-1.0.1-1.0.2.php +0 -11
- app/locale/it_IT/CommerceLab_News.csv +149 -0
- js/commercelab/noconflict.js +1 -3
- package.xml +5 -5
app/code/community/CommerceLab/News/Block/Adminhtml/Comment/Grid.php
CHANGED
@@ -135,7 +135,7 @@ class CommerceLab_News_Block_Adminhtml_Comment_Grid extends Mage_Adminhtml_Block
|
|
135 |
));
|
136 |
|
137 |
$this->getMassactionBlock()->addItem('unapprove', array(
|
138 |
-
'label' => Mage::helper('clnews')->__('
|
139 |
'url' => $this->getUrl('*/*/massUnapprove'),
|
140 |
'confirm' => Mage::helper('clnews')->__('Are you sure?')
|
141 |
));
|
135 |
));
|
136 |
|
137 |
$this->getMassactionBlock()->addItem('unapprove', array(
|
138 |
+
'label' => Mage::helper('clnews')->__('Not Approve'),
|
139 |
'url' => $this->getUrl('*/*/massUnapprove'),
|
140 |
'confirm' => Mage::helper('clnews')->__('Are you sure?')
|
141 |
));
|
app/code/community/CommerceLab/News/Block/Adminhtml/News/Edit/Tab/Additional.php
CHANGED
@@ -106,7 +106,7 @@ class CommerceLab_News_Block_Adminhtml_News_Edit_Tab_Additional extends Mage_Adm
|
|
106 |
'label' => Mage::helper('clnews')->__('Author name'),
|
107 |
'name' => 'author',
|
108 |
'style' => 'width: 520px;',
|
109 |
-
'after_element_html' => '<span class="hint"><p class="note">Leave blank to disable</p></span>',
|
110 |
));
|
111 |
|
112 |
if ( Mage::getSingleton('adminhtml/session')->getNewsData() ) {
|
106 |
'label' => Mage::helper('clnews')->__('Author name'),
|
107 |
'name' => 'author',
|
108 |
'style' => 'width: 520px;',
|
109 |
+
'after_element_html' => '<span class="hint"><p class="note">'.$this->__('Leave blank to disable').'</p></span>',
|
110 |
));
|
111 |
|
112 |
if ( Mage::getSingleton('adminhtml/session')->getNewsData() ) {
|
app/code/community/CommerceLab/News/Block/Adminhtml/News/Edit/Tab/Info.php
CHANGED
@@ -54,7 +54,7 @@ class CommerceLab_News_Block_Adminhtml_News_Edit_Tab_Info extends Mage_Adminhtml
|
|
54 |
'required' => true,
|
55 |
'name' => 'url_key',
|
56 |
'class' => 'validate-identifier',
|
57 |
-
'after_element_html' => '<div class="hint"><p class="note">e.g. domain.com/news/url_key</p></div>',
|
58 |
));
|
59 |
|
60 |
/**
|
@@ -142,7 +142,7 @@ class CommerceLab_News_Block_Adminhtml_News_Edit_Tab_Info extends Mage_Adminhtml
|
|
142 |
'label' => Mage::helper('clnews')->__('Link Name'),
|
143 |
'title' => Mage::helper('clnews')->__('Link Name'),
|
144 |
'name' => 'link',
|
145 |
-
'after_element_html' => '<div class="hint"><p class="note">e.g. Download attached document - default</p></div>',
|
146 |
));
|
147 |
|
148 |
$fieldset->addField('tags', 'text', array(
|
@@ -150,7 +150,7 @@ class CommerceLab_News_Block_Adminhtml_News_Edit_Tab_Info extends Mage_Adminhtml
|
|
150 |
'title' => Mage::helper('clnews')->__('Add Tags'),
|
151 |
'name' => 'tags',
|
152 |
'value' => $tag,
|
153 |
-
'after_element_html' => '<div class="hint"><p class="note">Use comma for multiple words</p></div>',
|
154 |
));
|
155 |
|
156 |
$fieldset->addField('use_full_img', 'checkbox', array(
|
54 |
'required' => true,
|
55 |
'name' => 'url_key',
|
56 |
'class' => 'validate-identifier',
|
57 |
+
'after_element_html' => '<div class="hint"><p class="note">'.$this->__('e.g. domain.com/news/url_key').'</p></div>',
|
58 |
));
|
59 |
|
60 |
/**
|
142 |
'label' => Mage::helper('clnews')->__('Link Name'),
|
143 |
'title' => Mage::helper('clnews')->__('Link Name'),
|
144 |
'name' => 'link',
|
145 |
+
'after_element_html' => '<div class="hint"><p class="note">'.$this->__('e.g. Download attached document - default').'</p></div>',
|
146 |
));
|
147 |
|
148 |
$fieldset->addField('tags', 'text', array(
|
150 |
'title' => Mage::helper('clnews')->__('Add Tags'),
|
151 |
'name' => 'tags',
|
152 |
'value' => $tag,
|
153 |
+
'after_element_html' => '<div class="hint"><p class="note">'.$this->__('Use comma for multiple words').'</p></div>',
|
154 |
));
|
155 |
|
156 |
$fieldset->addField('use_full_img', 'checkbox', array(
|
app/code/community/CommerceLab/News/Block/Newsitem.php
CHANGED
@@ -52,7 +52,7 @@ class CommerceLab_News_Block_Newsitem extends Mage_Core_Block_Template
|
|
52 |
$breadcrumbs->addCrumb('news',
|
53 |
array(
|
54 |
'label'=>Mage::helper('clnews')->__(Mage::getStoreConfig('clnews/news/title')),
|
55 |
-
'title'=>Mage::helper('clnews')->__('Return to '
|
56 |
'link'=>Mage::getUrl(Mage::helper('clnews')->getRoute())
|
57 |
));
|
58 |
|
@@ -60,7 +60,7 @@ class CommerceLab_News_Block_Newsitem extends Mage_Core_Block_Template
|
|
60 |
$breadcrumbs->addCrumb('category',
|
61 |
array(
|
62 |
'label' => $category->getTitle(),
|
63 |
-
'title' => Mage::helper('clnews')->__('Return to '
|
64 |
'link' => Mage::getBaseUrl().Mage::helper('clnews')->getRoute().'/category/'.$category->getUrlKey().'.html'
|
65 |
));
|
66 |
}
|
52 |
$breadcrumbs->addCrumb('news',
|
53 |
array(
|
54 |
'label'=>Mage::helper('clnews')->__(Mage::getStoreConfig('clnews/news/title')),
|
55 |
+
'title'=>Mage::helper('clnews')->__('Return to %s', Mage::helper('clnews')->__('News')),
|
56 |
'link'=>Mage::getUrl(Mage::helper('clnews')->getRoute())
|
57 |
));
|
58 |
|
60 |
$breadcrumbs->addCrumb('category',
|
61 |
array(
|
62 |
'label' => $category->getTitle(),
|
63 |
+
'title' => Mage::helper('clnews')->__('Return to %s', $category->getTitle()),
|
64 |
'link' => Mage::getBaseUrl().Mage::helper('clnews')->getRoute().'/category/'.$category->getUrlKey().'.html'
|
65 |
));
|
66 |
}
|
app/code/community/CommerceLab/News/etc/system.xml
CHANGED
@@ -132,7 +132,7 @@
|
|
132 |
<show_in_store>1</show_in_store>
|
133 |
</showcategoryofnews>
|
134 |
<enablelinkrout translate="label">
|
135 |
-
<label>Enable Link
|
136 |
<comment>default: view more</comment>
|
137 |
<frontend_type>select</frontend_type>
|
138 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
132 |
<show_in_store>1</show_in_store>
|
133 |
</showcategoryofnews>
|
134 |
<enablelinkrout translate="label">
|
135 |
+
<label>Enable Link "View More"</label>
|
136 |
<comment>default: view more</comment>
|
137 |
<frontend_type>select</frontend_type>
|
138 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
app/code/community/CommerceLab/News/sql/clnews_setup/mysql4-upgrade-1.0.1-1.0.2.php
CHANGED
@@ -24,17 +24,6 @@ $installer->getConnection()
|
|
24 |
'nullable' => false,
|
25 |
'default' => '0',), 'Sort ID');
|
26 |
|
27 |
-
|
28 |
-
$installer->getConnection()
|
29 |
-
->addIndex($installer->getTable('clnews/category'),
|
30 |
-
$installer->getIdxName('catalog/category', array('sort_id')),
|
31 |
-
array('sort_id'));
|
32 |
-
|
33 |
-
$installer->getConnection()
|
34 |
-
->addIndex($installer->getTable('clnews/category'),
|
35 |
-
$installer->getIdxName('catalog/category', array('level')),
|
36 |
-
array('level'));
|
37 |
-
|
38 |
$installer->run("update {$this->getTable('clnews/category')} set parent_id = 0 where parent_id is null");
|
39 |
$installer->run("update {$this->getTable('clnews/category')} set sort_id = 0 where sort_id is null");
|
40 |
$installer->run("update {$this->getTable('clnews/category')} set level = 0 where level is null");
|
24 |
'nullable' => false,
|
25 |
'default' => '0',), 'Sort ID');
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
$installer->run("update {$this->getTable('clnews/category')} set parent_id = 0 where parent_id is null");
|
28 |
$installer->run("update {$this->getTable('clnews/category')} set sort_id = 0 where sort_id is null");
|
29 |
$installer->run("update {$this->getTable('clnews/category')} set level = 0 where level is null");
|
app/locale/it_IT/CommerceLab_News.csv
ADDED
@@ -0,0 +1,149 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Home","Home"
|
2 |
+
"Go to Home Page","Torna alla home page"
|
3 |
+
"Return to %s","Torna a %s"
|
4 |
+
"News","Notizie"
|
5 |
+
"Cannot retrieve the news","Impossibile vedere la notizia"
|
6 |
+
"Category Manager","Gestione categorie"
|
7 |
+
"Add Category","Aggiungi categoria"
|
8 |
+
"Comment Manager","Gestione commenti"
|
9 |
+
"News Manager","Gestione notizie"
|
10 |
+
"Add New Article","Aggiungi articolo"
|
11 |
+
"Save Category","Salva categoria"
|
12 |
+
"Delete Category","Elimina categoria"
|
13 |
+
"Edit Category '%s'","Modifica categoria %s"
|
14 |
+
"ID","ID"
|
15 |
+
"Title","Titolo"
|
16 |
+
"URL Key","URL leggibile"
|
17 |
+
"Sort Order","Posizione"
|
18 |
+
"Action","Azione"
|
19 |
+
"Edit","Modifica"
|
20 |
+
"Delete","Elimina"
|
21 |
+
"Are you sure?","Confermi?"
|
22 |
+
"Category Information","Informazioni sulla categoria"
|
23 |
+
"Keywords","Keyword"
|
24 |
+
"Meta Keywords","Meta tag Keywords"
|
25 |
+
"Description","Description"
|
26 |
+
"Meta Description","Meta tag Description"
|
27 |
+
"Save Comment","Salva commento"
|
28 |
+
"Delete Comment","Elimina commento"
|
29 |
+
"Edit Comment By '%s'","Modifica commento di %s"
|
30 |
+
"Add Comment","Aggiungi commento"
|
31 |
+
"Comment","Commento"
|
32 |
+
"News Name","Titolo notizia"
|
33 |
+
"User","Utente"
|
34 |
+
"E-mail","Email"
|
35 |
+
"Created","Creato"
|
36 |
+
"Status","Stato"
|
37 |
+
"Action","Azione"
|
38 |
+
"News Article","Testo notizia"
|
39 |
+
"Go to News Article","Vai all'articolo"
|
40 |
+
"Approve","Approva"
|
41 |
+
"Not Approve","Non approvare"
|
42 |
+
"Comment Information","Informazioni sul commento"
|
43 |
+
"User","Utente"
|
44 |
+
"Email Address","Indirizzo email"
|
45 |
+
"Unapproved","Non approvato"
|
46 |
+
"Approved","Approvato"
|
47 |
+
"Save News Article","Salva notizia"
|
48 |
+
"Delete News Article","Elimina notizia"
|
49 |
+
"Edit News Article '%s'","Modifica notizia"
|
50 |
+
"Add News Article","Aggiungi notizia"
|
51 |
+
"Author","Autore"
|
52 |
+
"Updated","Aggiornato"
|
53 |
+
"Enabled","Attivato"
|
54 |
+
"Disabled","Disattivato"
|
55 |
+
"Comments","Commenti"
|
56 |
+
"View comments","Vedi commenti"
|
57 |
+
"Change status","Cambia stato"
|
58 |
+
"Main Information","Informazioni principali"
|
59 |
+
"Additional Options","Opzioni aggiuntive"
|
60 |
+
"News Time Settings","Impostazioni orario notizie"
|
61 |
+
"News Time","Orario della notizia"
|
62 |
+
"Next to the Article will be stated current time","Di fianco all'articolo verra' indicata l'ora corrente"
|
63 |
+
"Publish From:","Pubblicato dalle:"
|
64 |
+
"Hours","Ore"
|
65 |
+
"Minutes","Minuti"
|
66 |
+
"Publish Until:","Pubblico fino alle"
|
67 |
+
"Meta Data","Metadati"
|
68 |
+
"Advanced Post Options","Opzioni avanzate"
|
69 |
+
"Author name","Nome autore"
|
70 |
+
"News information","Informazioni sulla notizia"
|
71 |
+
"Store View","Vista negozio"
|
72 |
+
"Category","Categoria"
|
73 |
+
"File","File"
|
74 |
+
"Delete File","Elimina file"
|
75 |
+
"Link Name","Nome link"
|
76 |
+
"Add Tags","Aggiungi tag"
|
77 |
+
"Use Full Description Image","Usa immagine abbinata al testo completo"
|
78 |
+
"Image for Short Description","Immagine abbinata al testo breve"
|
79 |
+
"Resize Image Height","Ridimensiona altezza"
|
80 |
+
"Resize Image Width","Ridimensiona larghezza"
|
81 |
+
"Show Image","Mostra immagine"
|
82 |
+
"Yes","Si"
|
83 |
+
"No","No"
|
84 |
+
"Short Description","Testo breve"
|
85 |
+
"Image for Full Description","Immagine abbinata al testo completo"
|
86 |
+
"Full Description","Testo completo"
|
87 |
+
"Comments are not enabled.","I commenti sono disattivati"
|
88 |
+
"Your comment has been successfully sent. It will be added after approval by our admin","Il tuo commento e' stato inviato! Apparira' nel sito dopo l'approvazione del moderatore."
|
89 |
+
"Thank you for adding a comment.","Grazie per la tua partecipazione."
|
90 |
+
"Page access error","Errore di accesso alla pagina"
|
91 |
+
"Category was successfully saved","Categoria salvata"
|
92 |
+
"Category was successfully deleted","Categoria eliminata"
|
93 |
+
"Comment was successfully saved","Commento salvato"
|
94 |
+
"Comment was successfully deleted","Commento eliminato"
|
95 |
+
"News article does not exist","La notizia non esiste"
|
96 |
+
"The same news url_key already exists","Lo stesso URL leggibile e' gia' stato usato"
|
97 |
+
"News article has been successfully saved","Notizia salvata"
|
98 |
+
"No items to save","Non vi e' nessun contenuto da salvare"
|
99 |
+
"Platform version is not correct for News module!","La versione del software non e' compatibile con l'estensione News!"
|
100 |
+
"Submit Comment","Invia commento"
|
101 |
+
"Name","Nome"
|
102 |
+
"Email","Email"
|
103 |
+
"You must be logged in to post a comment.","Devi accedere al sito per inviare un commento."
|
104 |
+
"click here","clicca qui"
|
105 |
+
"to log in","per accedere"
|
106 |
+
"News Settings","Impostazioni notizie"
|
107 |
+
"News Title","Titolo pagina notizie"
|
108 |
+
"Route to News","URL pagina notizie"
|
109 |
+
"Show Breadcrumbs","Mostra percorso"
|
110 |
+
"Articles per Page","Articoli per pagina"
|
111 |
+
"The number of articles displayed per page","Numero di articoli elencati su ogni pagina"
|
112 |
+
"Show Latest News Block","Mostra blocco Ultime notizie"
|
113 |
+
"Q-ty in the Latest Block","N. di articoli nel blocco Ultime notizie"
|
114 |
+
"Set the number","Scrivi il numero"
|
115 |
+
"Show Date of the News","Mostra data notizia"
|
116 |
+
"Show Time of the News","Mostra orario notizia"
|
117 |
+
"Show Author of the News","Mostra autore notizia"
|
118 |
+
"Show Category of the News","Mostra categoria notizia"
|
119 |
+
"default: view more","predefinito: view more"
|
120 |
+
"Name of the Link","Testo del link"
|
121 |
+
"example: view more","esempio: view more"
|
122 |
+
"Tags for the News","Permetti di taggare le notizie"
|
123 |
+
"Enable Google Button for News","Bottone condividi su Google"
|
124 |
+
"Enable Twitter Button for News","Bottone condividi su Twitter"
|
125 |
+
"Enable Facebook Button for News","Bottone condividi su Facebook"
|
126 |
+
"Enable LinkedIn Button for News","Bottone condividi su LinkedIn"
|
127 |
+
"Default Meta Title","Meta tag Title predefinito"
|
128 |
+
"Default Meta Keywords","Meta tag Keywords predefinito"
|
129 |
+
"Default Meta Description","Meta tag Description predefinito"
|
130 |
+
"Short Description Image Max Width","Max largh. immagine testo breve"
|
131 |
+
"Short Description Image Max Height","Max alt. immagine testo breve"
|
132 |
+
"Full Description Image Max Width","Max largh. immagine testo completo"
|
133 |
+
"Full Description Image Max Height","Max alt. immagine testo completo"
|
134 |
+
"Resize always to Max Values","Riporta sempre ai valori max"
|
135 |
+
"Send comments to email","Inoltra commenti a questa email"
|
136 |
+
"Templare email","Modello email"
|
137 |
+
"Is Confirmation Required","E' richiesta conferma?"
|
138 |
+
"Should user be logged in to leave a comment","E' richiesto l'accesso per inviare commenti?"
|
139 |
+
"Comments per Page","Commenti per pagina"
|
140 |
+
"The number of comments displayed per page","Numero di commenti su ogni pagina"
|
141 |
+
"RSS Feed","Feed RSS"
|
142 |
+
"Articles to show","Articoli da includere"
|
143 |
+
"Number of articles to show in the RSS feed.","Numero di articoli inclusi nel feed RSS"
|
144 |
+
"Enable Link ""View More""","Attiva link ""Continua"""
|
145 |
+
"e.g. ""news"" will make the news accessible from domain.com/news. Should not contain slashes. Leave blank for default - news","Ad es. scrivendo ""notizie"" la pagina avra' indirizzo dominio.it/notizie. Non inserire la barra rovesciata /. Lascia vuoto per usare il valore predefinito ""news""".
|
146 |
+
"Leave blank to disable","Lascia vuoto per disattivare"
|
147 |
+
"Use comma for multiple words","Se usi piu' termini dividili con la virgola"
|
148 |
+
"e.g. domain.com/news/url_key","es. dominio.it/notizie/url_leggibile"
|
149 |
+
"e.g. Download attached document - default","es. Scarica il documento allegato - default"
|
js/commercelab/noconflict.js
CHANGED
@@ -1,4 +1,2 @@
|
|
1 |
jQuery.noConflict();
|
2 |
-
var CommerceLab = {};
|
3 |
-
|
4 |
-
|
1 |
jQuery.noConflict();
|
2 |
+
var CommerceLab = {};
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CommerceLab_News</name>
|
4 |
-
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -35,13 +35,13 @@
|
|
35 |
<br />
|
36 |
<p><strong>CommerceLab – stay open for the world!</strong></p>
|
37 |
<br /></description>
|
38 |
-
<notes>Version number: 1.0.2
|
39 |
Stability: Stable
|
40 |
Compatibility: 1.4, 1.5, 1.6, 1.7</notes>
|
41 |
<authors><author><name>CommerceLab</name><user>auto-converted</user><email>support@commerce-lab.com</email></author></authors>
|
42 |
-
<date>2012-
|
43 |
-
<time>
|
44 |
-
<contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="CommerceLab"><dir name="News"><dir name="Block"><dir name="Adminhtml"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da553fda11187935780648d252c9e850"/></dir><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="768aa10696beb070c5fc9eec9f0141c2"/><file name="SubCategories.php" hash="cc1eac066648cee1cabe3667625a5662"/></dir></dir></dir><file name="Edit.php" hash="32ae1eff8d827c5ccf46601dda906950"/><file name="Grid.php" hash="a9fd848b52d574801ecb07e6a965e216"/></dir><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a7b57128ebc8db11faeb12c19daf296b"/></dir><file name="Edit.php" hash="8de5a9f3de068243fbe0c4eddd58a715"/><file name="Grid.php" hash="
|
45 |
<compatible/>
|
46 |
<dependencies/>
|
47 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CommerceLab_News</name>
|
4 |
+
<version>1.0.2.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
35 |
<br />
|
36 |
<p><strong>CommerceLab – stay open for the world!</strong></p>
|
37 |
<br /></description>
|
38 |
+
<notes>Version number: 1.0.2.1
|
39 |
Stability: Stable
|
40 |
Compatibility: 1.4, 1.5, 1.6, 1.7</notes>
|
41 |
<authors><author><name>CommerceLab</name><user>auto-converted</user><email>support@commerce-lab.com</email></author></authors>
|
42 |
+
<date>2012-08-08</date>
|
43 |
+
<time>10:09:27</time>
|
44 |
+
<contents><target name="mage"><dir name="app"><dir name="code"><dir name="community"><dir name="CommerceLab"><dir name="News"><dir name="Block"><dir name="Adminhtml"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da553fda11187935780648d252c9e850"/></dir><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Action.php" hash="768aa10696beb070c5fc9eec9f0141c2"/><file name="SubCategories.php" hash="cc1eac066648cee1cabe3667625a5662"/></dir></dir></dir><file name="Edit.php" hash="32ae1eff8d827c5ccf46601dda906950"/><file name="Grid.php" hash="a9fd848b52d574801ecb07e6a965e216"/></dir><dir name="Comment"><dir name="Edit"><file name="Form.php" hash="a7b57128ebc8db11faeb12c19daf296b"/></dir><file name="Edit.php" hash="8de5a9f3de068243fbe0c4eddd58a715"/><file name="Grid.php" hash="3abe6e69339169ade81464f28a0e1475"/></dir><dir name="News"><dir name="Edit"><dir name="Tab"><file name="Additional.php" hash="8b8223b007aad7c38d22ff634b4c7bb7"/><file name="Info.php" hash="73cf7f8c9927d8eee79a757ae70d369b"/></dir><file name="Form.php" hash="9f087b81e9d08db22a719b70c8b504ba"/><file name="Tabs.php" hash="7cfa29c9c00b9e26a9114aef3f3a95e1"/></dir><file name="Edit.php" hash="b509c5c33e895f23d56ff19f085a6b02"/><file name="Grid.php" hash="6222ad2b270290a5c2218221afde6b73"/></dir><file name="Category.php" hash="79b3dde6b9fa76ae62213b7d6e2724b7"/><file name="Comment.php" hash="8be4d51b79855f471d28ebb8efa893cc"/><file name="News.php" hash="ebff7860ffe79041ace0badd257548fa"/></dir><file name="News.php" hash="20816483fb25f0b500706d3c1472ae2e"/><file name="Newsitem.php" hash="92db1880a97e6638bf39df4150bc8133"/><file name="Rss.php" hash="8011e243acfd1f2407ad69f271205315"/></dir><dir name="Controller"><file name="Router.php" hash="9defad284f4ba8ae6adbc1d1479fdb02"/></dir><dir name="Helper"><file name="Data.php" hash="54b3e5f59f408f77d0dc5402d4b89cee"/><file name="Versions.php" hash="47847c5ebcbb4afff5db50af3c358df5"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Category"><file name="Collection.php" hash="bcd541e130b269eaa7c881998a1e1ec2"/></dir><dir name="Comment"><file name="Collection.php" hash="0a0735a6169c5b39d8d54a67c2bf181c"/></dir><dir name="News"><file name="Collection.php" hash="3a8d6de820d75ce0caca6319b8b7c780"/></dir><file name="Category.php" hash="09487b65a95b3f26924f3362b5dfc32e"/><file name="Comment.php" hash="50cd3b7a8a7b451723d6038fe0f402d3"/><file name="News.php" hash="7d4c3d7ba217fbe82f3b8c94ead8f9ec"/></dir><dir name="Wysiwyg"><file name="Config.php" hash="44527a7977ce854719b845dc37912548"/></dir><file name="Category.php" hash="e3d279a026d1613ecbd7d5a3b1b5f879"/><file name="Check.php" hash="8e3a9643ce8fa74650df280ff30877fc"/><file name="Comment.php" hash="e6ca88fe0a7ba12be87cc8b8ea8467ed"/><file name="News.php" hash="98c8bdfc76f61485437a9da60418395c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CategoryController.php" hash="55a5ce77722a8c066348063d2bd7bf8a"/><file name="CommentController.php" hash="bec1545e94875f64582f298ef8de977c"/><file name="NewsController.php" hash="0392ee055ff59db0aa188799f32e93ef"/></dir><file name="IndexController.php" hash="aed6c752e90fd1d5f363e056a262cf2f"/><file name="NewsitemController.php" hash="2ad107ffbcfff9f2655784f08195e457"/><file name="RssController.php" hash="53eeaf7b1f992ad4e018fa54cf08044a"/></dir><dir name="etc"><file name="config.xml" hash="cd2273926ab9f6be9d9474c888747680"/><file name="system.xml" hash="bdb20ddcc17bb57e1ab0eb57b5959f21"/></dir><dir name="sql"><dir name="clnews_setup"><file name="mysql4-install-1.0.0.php" hash="1e262b10cef5e7b6392dfb4f68cc190b"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="3efb7204344043f03de7287073b310a8"/></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="clnews.xml" hash="56be957d1f4ef3073e648f17e2c93216"/></dir><dir name="template"><dir name="clnews"><file name="latest.phtml" hash="c469069d2d68a260fa95adf4b2dc0c92"/><file name="list.phtml" hash="027b849b1b34347a5e83b75f248cd357"/><file name="menu.phtml" hash="e940cc1614de26e74d0001b6711cc319"/><file name="news_print.phtml" hash="2805e2d08a368e74bfdbb234b92950f0"/><file name="newsitem.phtml" hash="2250255bd59a4b68753509af03530364"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="clnews.xml" hash="b3ee7933913985700b99efe8480f5fc8"/></dir></dir></dir></dir></dir><dir name="etc"><dir name="modules"><file name="CommerceLab_News.xml" hash="8da22cde4606bb3f8a30d40c4dbda6ee"/></dir></dir><dir name="locale"><dir name="en_US"><file name="CommerceLab_News.csv" hash="db70d4b3780e184eb262d9e29808c882"/></dir><dir name="it_IT"><file name="CommerceLab_News.csv" hash="d22e70a9e478d33aba0454afc456c1cd"/></dir></dir></dir><dir name="js"><dir name="commercelab"><dir name="treeview"><file name="jquery.treeview.pack.js" hash="d1acfe09a5cb97d93ab167952c550a7d"/></dir><file name="noconflict.js" hash="22e97cd4bf445c956c7ccee56fa433c2"/><file name="category_tree.js" hash="2369a2d52e678de6f5fc0669492d2fda"/></dir><dir name="jquery"><file name="jquery-1.4.4.js" hash="1e2ef16563c5939f247626c6147045aa"/><file name="jquery-1.7.1-min.js" hash="de56dbfca517764d9d056e82068f8d39"/></dir><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="commercelab"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="a0b153cee7655dad31ee2923657cc08a"/></dir></dir></dir></dir></dir><dir name="skin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="clnews"><dir name="images"><file name="i-tags.gif" hash="d8acce70b98a2c5827ba8bd6ee166d6d"/><file name="i_attached.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="rss.gif" hash="d17678b5dab15949ed62bea2b602090f"/></dir><file name="style.css" hash="02684062443683d8310010a2b73d1c92"/></dir><dir name="commercelab"><dir name="treeview"><dir name="images"><file name="file.gif" hash="9ab0e28d85d8ab5eb954fc28f6ac1e80"/><file name="folder-closed.gif" hash="262d69b7ca267be1994fca2aba46be32"/><file name="folder.gif" hash="9f41e1454905fd7416f89aa4380a65e1"/><file name="minus.gif" hash="e009322a00011359f76cf7ae59b4d33d"/><file name="plus.gif" hash="6c46b98e0c60e6dc2ef14f9d4a6607b8"/><file name="treeview-black-line.gif" hash="0cdd968bdb2f2852ec71e0264b3292cc"/><file name="treeview-black.gif" hash="a3ffb8abd978b0464f7b5b508fcfdef0"/><file name="treeview-default-line.gif" hash="5e3c0e0c48f48c23c45aef7b72c739c0"/><file name="treeview-default.gif" hash="46878a9b3ede269c4e234550c9c89cd0"/><file name="treeview-famfamfam-line.gif" hash="18b3e43abad26bdac6f4cea944777b62"/><file name="treeview-famfamfam.gif" hash="dc335e786863262f594737e26198009c"/><file name="treeview-gray-line.gif" hash="9c2613b4de53f939bc770983976f66cd"/><file name="treeview-gray.gif" hash="02b42894653cfd82e52aac669ad078ed"/><file name="treeview-red-line.gif" hash="feda280e7bffb057ca4c87491aab6943"/><file name="treeview-red.gif" hash="c94a07253c14c98fe69dffafb59228a5"/></dir><file name="jquery.treeview.css" hash="81ec9c30fb5b30b8811d8e182c065f16"/></dir></dir></dir><dir name="images"><dir name="clnews"><file name="ajax-loader.gif" hash="7b9776076d5fceef4993b55c9383dedd"/></dir></dir></dir></dir></dir></dir></target></contents>
|
45 |
<compatible/>
|
46 |
<dependencies/>
|
47 |
</package>
|