2010-03-16 11:33:04 -04:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "libpbd-config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-06-21 16:24:03 -04:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2010-03-16 11:33:04 -04:00
|
|
|
#include <string>
|
|
|
|
#include <glibmm/spawn.h>
|
|
|
|
|
2012-06-21 16:24:03 -04:00
|
|
|
#include "pbd/epa.h"
|
2010-03-16 11:33:04 -04:00
|
|
|
#include "pbd/openuri.h"
|
|
|
|
|
|
|
|
bool
|
|
|
|
PBD::open_uri (const char* uri)
|
|
|
|
{
|
|
|
|
#ifdef __APPLE__
|
|
|
|
extern bool cocoa_open_url (const char*);
|
|
|
|
return cocoa_open_url (uri);
|
|
|
|
#else
|
2012-06-21 16:15:38 -04:00
|
|
|
EnvironmentalProtectionAgency* global_epa = EnvironmentalProtectionAgency::get_global_epa ();
|
|
|
|
boost::scoped_ptr<EnvironmentalProtectionAgency> current_epa;
|
|
|
|
|
|
|
|
/* revert all environment settings back to whatever they were when ardour started
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (global_epa) {
|
|
|
|
current_epa.reset (new EnvironmentalProtectionAgency(true)); /* will restore settings when we leave scope */
|
|
|
|
global_epa->restore ();
|
|
|
|
}
|
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
std::string command = "xdg-open ";
|
|
|
|
command += uri;
|
2012-06-21 16:15:38 -04:00
|
|
|
command += " &";
|
|
|
|
system (command.c_str());
|
2010-03-16 11:33:04 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
2010-11-13 00:14:48 -05:00
|
|
|
|