Suivez et participez au développement du nouvel OpenCellar : PLOC.co
> Open Cellar for Windows
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Developers resources
> Open Cellar for Mobile
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Open Cellar for Mac/Linux
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Developers resources
> My Account
> My Live services
> My pages
> My library
> My published wines
> My labels
> My posted messages
> Write a page
> Open Cellar Forum Index
> Windows Forum
> Mac/Linux Forum
> Mobile Forum
> Search for and import wines
> Search for labels
> Compare prices (Sniffer)
Search:
> Search with all engines
> Search in forums
> Search in personal pages
> Search on open-cellar.com
> Search in wine cards
> Search in labels
> Search in price comparison tool (Sniffer)
Welcome (
connect
-
create an account
)
Home
»
The forum
»
Open Cellar Home Edition (Windows)
Nuage de tags
Open Cellar
Scripts
Etiquette
PPP
Cellar book
Mac
Vista
Synchronisation
Excel export
vinoXml
usb
sniffer
backup
import
printing
chardonnet
palm
statistics
Linux
export au format XML
18/01/2010
Reply
export au format XML
bastienh
5 posts
Bonjour à tous,
tout d'abord merci pour ce logiciel, vraiment sympa!
est il possible de faire un export au format XML de la cave? si oui, est il possible d'exporter les images des vins?
merci.
19/01/2010
Reply
Re : export au format XML
Administrateur
3099 posts
Bonsoir et merci
Il est possible d'exporter votre cave au format vinoXml (
http://www.vinoxml.org
), les fichiers contiendront aussi les étiquettes.
Si vous souhaitez dans un autre format il faudra alors passer par un complément.
Matthieu
20/01/2010
Reply
Re : export au format XML
bastienh
5 posts
Merci, c'est parfait, du vinoXML ça reste du XML après tout
par contre j'ai vu qu'il y avait un import, mais ou se trouve l'export de la cave en vinoXML ?
merci
20/01/2010
Reply
Re : export au format XML
Administrateur
3099 posts
Bonsoir,
L'export se trouve dans la barre d'icone de la fiche vin. Toutefois les faire 1 par 1 bof bof ^^
Voici le script qui vous les généra tous :
if(App.ActiveCellar == null) { return; } // Repertoire destination const string EXPORT_DIR = @"c:\temp\"; const string VINO_XML_EXT = ".vinoXml"; int error = 0; ObjectCollection oc = App.ActiveCellar.GetCollection((ushort)ObjectType.Wine); for (int i = 0; i < oc.Count; i++) { Wine wine = (Wine)oc[i]; try { App.ActiveCellar.SaveAs(EXPORT_DIR + wine.Name.Trim() + VINO_XML_EXT, wine, OpenCellar.Framework.FileType.VinoXml); } catch { error++; } } MessageBox.Show("Terminé ! \n" + error.ToString() + " erreur(s)");
A exécuter dans l'éditeur de scripts (menu Préférences)
Matthieu
26/01/2010
Reply
Re : export au format XML
bastienh
5 posts
merci ! mais ça ne fonctionne pas: j'ai le message avec le nombre d'erreur et aucun fichier généré...
27/01/2010
Reply
Re : export au format XML
Administrateur
3099 posts
J'ai oublié de préciser un détail important ^^ :
Tous les fichiers sont générés vers le répertoire c:\temp (paramétrable en haut du script)
Matthieu
28/01/2010
Reply
Re : export au format XML
bastienh
5 posts
oui, j'avais fait attention à cela, j'ai également essayé de changer le répertoire mais rien ne change...
je suis sous windows 7 si ça peut aider.
Cordialement,
Bastien
28/01/2010
Reply
Re : export au format XML
Administrateur
3099 posts
Bon bon
Ce script nous donnera la cause exacte de l'erreur :
if(App.ActiveCellar == null) { return; } // Repertoire destination const string EXPORT_DIR = @"c:\temp\"; const string VINO_XML_EXT = ".vinoXml"; int error = 0; bool showDebugWindow = false; ObjectCollection oc = App.ActiveCellar.GetCollection((ushort)ObjectType.Wine); for (int i = 0; i < oc.Count; i++) { Wine wine = (Wine)oc[i]; try { App.ActiveCellar.SaveAs(EXPORT_DIR + wine.Name.Trim() + VINO_XML_EXT, wine, OpenCellar.Framework.FileType.VinoXml); } catch(Exception ex) { if(!showDebugWindow) { MessageBox.Show(ex.ToString()); showDebugWindow = true; } error++; } } MessageBox.Show("Terminé ! \n" + error.ToString() + " erreur(s)");
Matthieu
30/01/2010
Reply
Re : export au format XML
bastienh
5 posts
Bonjour,
Voila ce que j'obtiens: http://img23.imageshack.us/img23/1556/capturecc.jpg
merci !
31/01/2010
Reply
Re : export au format XML
Administrateur
3099 posts
Bonjour bonjour,
Voici le script corrigé :
if(App.ActiveCellar == null) { return; } // Repertoire destination const string EXPORT_DIR = @"c:\temp\"; const string VINO_XML_EXT = ".vinoXml"; int error = 0; bool showDebugWindow = false; ObjectCollection oc = App.ActiveCellar.GetCollection((ushort)ObjectType.Wine); for (int i = 0; i < oc.Count; i++) { Wine wine = (Wine)oc[i]; try { App.ActiveCellar.SaveAs(EXPORT_DIR + Utility.GetValidFileName(wine.Name.Trim() + VINO_XML_EXT), wine, OpenCellar.Framework.FileType.VinoXml); } catch(Exception ex) { if(!showDebugWindow) { MessageBox.Show(ex.ToString()); showDebugWindow = true; } error++; } } MessageBox.Show("Terminé ! \n" + error.ToString() + " erreur(s)");
Matthieu
© 2006-2014
Matthieu DUCROCQ
- All rights reserved - Last update: january 2014 |
|
Support Open Cellar
|
Contact
|
About