Agregado lectura de instituciones.txt desde web

Change-Id: I7ff39f3b6f9f2ac2ae1e7fc5eeeca13ee99cec89
This commit is contained in:
Artukryp 2024-08-19 18:31:12 -06:00
parent 22e60e9b80
commit 9885d6a8bb

View file

@ -33,6 +33,7 @@
#include <../doc/doctemplateslocal.hxx>
#include <fstream>
#include <iostream>
using namespace ::com::sun::star;
@ -295,7 +296,15 @@ std::vector<OUString> TemplateLocalView::getFolderNames()
std::vector<OUString> TemplateLocalView::getGmxLinks()
{
std::vector<OUString> ret;
std::ifstream file("/path/to/file.txt");
// Descargar el archivo de instituciones
int result = system("wget -O /tmp/instituciones.txt https://repos.libreoffice.gob.mx/templates/instituciones.txt");
if (result != 0)
{
std::cerr << "Error al descargar el archivo. Instituciones.txt" << std::endl;
return ret;
}
std::ifstream file("/tmp/instituciones.txt");
if (file.is_open()){
std::string line;