After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 356330 - Missing end "/" in MetaDataStore.cs
Missing end "/" in MetaDataStore.cs
Status: RESOLVED FIXED
Product: f-spot
Classification: Other
Component: General
CVS
Other Linux
: Normal normal
: ---
Assigned To: F-spot maintainers
F-spot maintainers
Depends on:
Blocks:
 
 
Reported: 2006-09-16 22:36 UTC by Bengt Thuree
Modified: 2006-09-18 14:46 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Small diff (2.51 KB, patch)
2006-09-16 22:48 UTC, Bengt Thuree
committed Details | Review

Description Bengt Thuree 2006-09-16 22:36:02 UTC
public const string IViewNS = "http://ns.iview-multimedia.com/mediapro/1.0";
public const string XmpidqNS = "http://ns.adobe.com/xmp/Identifier/qual/1.0";

Also no namespace for IViewNS in same file
Comment 1 Bengt Thuree 2006-09-16 22:48:45 UTC
Created attachment 72918 [details] [review]
Small diff

- public const string XmpidqNS = "http://ns.adobe.com/xmp/Identifier/qual/1.0";
+ public const string XmpidqNS = "http://ns.adobe.com/xmp/Identifier/qual/1.0/";
- public const string IViewNS = "http://ns.iview-multimedia.com/mediapro/1.0";
+ public const string IViewNS = "http://ns.iview-multimedia.com/mediapro/1.0/";

+ Namespaces.AddNamespace (IViewNS, "mediapro");
Comment 2 Bengt Thuree 2006-09-17 23:31:57 UTC
Changed status to Ready for Commit, since it is a simple three liner, and looks like it was simple missed due to no Test Units for imports :)