mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
.uppbox: uppweb - nightly builds
git-svn-id: svn://ultimatepp.org/upp/trunk@4491 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
4f7e926192
commit
482fbf0fc9
10 changed files with 124 additions and 93 deletions
|
|
@ -16,7 +16,6 @@ String uppsrc = rootdir + "uppsrc";
|
|||
String reference = rootdir + "reference";
|
||||
String examples = rootdir + "examples";
|
||||
String targetdir = "u:\\uppwww";
|
||||
String diffdir = "u:\\wwwupp";
|
||||
String pdfdir = "u:\\pdf";
|
||||
#else
|
||||
String rootdir = "/root/upp.src";
|
||||
|
|
@ -26,7 +25,6 @@ String reference = rootdir + "reference";
|
|||
String examples = rootdir + "examples";
|
||||
String targetdir = "/var/www";
|
||||
String diffdir = "/root/wwwupp";
|
||||
String pdfdir = "/root/pdf";
|
||||
#endif
|
||||
String bazaar;
|
||||
bool outPdf;
|
||||
|
|
@ -629,6 +627,29 @@ void ExportPage(int i)
|
|||
RLOG("Exported page " << links[i]);
|
||||
}
|
||||
|
||||
String Downloads()
|
||||
{
|
||||
String r;
|
||||
FindFile ff(AppendFileName(targetdir, "downloads/*.*"));
|
||||
Vector<Time> tm;
|
||||
Vector<String> fn;
|
||||
Vector<String> path;
|
||||
while(ff) {
|
||||
if(ff.IsFile()) {
|
||||
tm.Add(ff.GetLastWriteTime());
|
||||
fn.Add(ff.GetName());
|
||||
path.Add(ff.GetPath());
|
||||
}
|
||||
ff.Next();
|
||||
}
|
||||
IndexSort2(tm, fn, path, StdGreater<Time>());
|
||||
for(int i = 0; i < fn.GetCount(); i++)
|
||||
if(i < 40)
|
||||
r << "[^downloads/" << ff.GetName() << " \1" << fn[i] << "\1]&";
|
||||
else
|
||||
DeleteFile(ff.GetPath());
|
||||
return r;
|
||||
}
|
||||
|
||||
struct ProgramData {
|
||||
String rootdir;
|
||||
|
|
@ -651,6 +672,8 @@ struct ProgramData {
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
CONSOLE_APP_MAIN
|
||||
{
|
||||
StdLogSetup(LOG_COUT|LOG_FILE);
|
||||
|
|
@ -673,7 +696,7 @@ CONSOLE_APP_MAIN
|
|||
if (LoadFromXMLFile(data, configFile)) {
|
||||
rootdir = data.rootdir;
|
||||
targetdir = data.targetdir;
|
||||
diffdir = data.diffdir;
|
||||
// diffdir = data.diffdir;
|
||||
pdfdir = data.pdfdir;
|
||||
// ftpupload = data.ftpUpload;
|
||||
outPdf = data.outPdf;
|
||||
|
|
@ -684,7 +707,7 @@ CONSOLE_APP_MAIN
|
|||
if (!cfgloaded) {
|
||||
data.rootdir = rootdir;
|
||||
data.targetdir = targetdir;
|
||||
data.diffdir = diffdir;
|
||||
// data.diffdir = diffdir;
|
||||
data.pdfdir = pdfdir;
|
||||
// data.ftpUpload = ftpupload;
|
||||
data.outPdf = outPdf;
|
||||
|
|
@ -693,6 +716,8 @@ CONSOLE_APP_MAIN
|
|||
}
|
||||
Cout() << "RootDir: " << rootdir << "\n";
|
||||
Cout() << "TargetDir: " << targetdir << "\n";
|
||||
|
||||
String downloads = Downloads();
|
||||
|
||||
if (!DirectoryExists(rootdir)) {
|
||||
Cout() << ("Directory " + DeQtf(rootdir) + " does not exist\n");
|
||||
|
|
@ -709,6 +734,7 @@ CONSOLE_APP_MAIN
|
|||
InitWwwTpp();
|
||||
|
||||
languages.Add(LNG_('E','N','U','S')); // en-us has to be the first one
|
||||
#ifndef _DEBUG // too slow to have them all while developing
|
||||
languages.Add(LNG_('C','A','E','S'));
|
||||
languages.Add(LNG_('C','S','C','Z'));
|
||||
languages.Add(LNG_('D','E','D','E'));
|
||||
|
|
@ -719,6 +745,7 @@ CONSOLE_APP_MAIN
|
|||
languages.Add(LNG_('R','U','R','U'));
|
||||
languages.Add(LNG_('Z','H','C','N'));
|
||||
languages.Add(LNG_('Z','H','T','W'));
|
||||
#endif
|
||||
|
||||
RealizeDirectory(targetdir);
|
||||
|
||||
|
|
@ -896,6 +923,7 @@ CONSOLE_APP_MAIN
|
|||
tt[i].text.Replace(DeQtf(x11), DeQtf(x11release));
|
||||
tt[i].text.Replace(DeQtf(win32), DeQtf(win32release));
|
||||
}
|
||||
tt[i].text.Replace(String("<#downloads#>"), downloads);
|
||||
}
|
||||
|
||||
for(int i = 0; i < reflink.GetCount(); i++) {
|
||||
|
|
@ -1002,55 +1030,4 @@ CONSOLE_APP_MAIN
|
|||
"</noscript>"
|
||||
);
|
||||
Cout() << "Finished OK\n";
|
||||
|
||||
#if 0 // we are now doing this on server, directly copying to www directory
|
||||
|
||||
if (!ftpupload)
|
||||
return;
|
||||
|
||||
RLOG("uppweb Finished, now about to upload the content");
|
||||
|
||||
Vector<String> upload;
|
||||
{
|
||||
FindFile ff(AppendFileName(targetdir, "*.*"));
|
||||
while(ff) {
|
||||
if(ff.IsFile()) {
|
||||
String s = LoadFile(AppendFileName(targetdir, ff.GetName()));
|
||||
String f = AppendFileName(diffdir, ff.GetName());
|
||||
if(LoadFile(f) != s) {
|
||||
upload.Add(ff.GetName());
|
||||
RLOG("upload: " << ff.GetName());
|
||||
}
|
||||
}
|
||||
ff.Next();
|
||||
}
|
||||
}
|
||||
RealizeDirectory(diffdir);
|
||||
|
||||
if(upload.GetCount()) {
|
||||
FtpClient ftp;
|
||||
RLOG("Connecting ftp...");
|
||||
if(!ftp.Connect(getenv("UPPFTP"), getenv("UPPFTPUSR"), getenv("UPPFTPPWD"), true)) {
|
||||
RLOG("Unable to connect!" + ftp.GetError());
|
||||
SetExitCode(1);
|
||||
return;
|
||||
}
|
||||
if(!ftp.Cd("www")) {
|
||||
RLOG("Unable to 'cd www'");
|
||||
SetExitCode(1);
|
||||
return;
|
||||
}
|
||||
for(int i = 0; i < upload.GetCount(); i++) {
|
||||
RLOG("Uploading " << upload[i]);
|
||||
String s = LoadFile(AppendFileName(targetdir, upload[i]));
|
||||
if(!ftp.Save(upload[i], s)) {
|
||||
RLOG("FTP error (file upload): " + ftp.GetError());
|
||||
SetExitCode(1);
|
||||
return;
|
||||
}
|
||||
SaveFile(AppendFileName(diffdir, upload[i]), s);
|
||||
}
|
||||
}
|
||||
BeepInformation();
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,15 @@
|
|||
TOPIC("FAQ$de-de")
|
||||
#include "FAQ$de-de.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("FAQ$en-us")
|
||||
#include "FAQ$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("Funding$de-de")
|
||||
#include "Funding$de-de.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("apps$de-de")
|
||||
#include "apps$de-de.tppi"
|
||||
END_TOPIC
|
||||
|
|
@ -30,16 +42,12 @@ TOPIC("download$de-de")
|
|||
#include "download$de-de.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("FAQ$de-de")
|
||||
#include "FAQ$de-de.tppi"
|
||||
TOPIC("download$en-us")
|
||||
#include "download$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("FAQ$en-us")
|
||||
#include "FAQ$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("Funding$de-de")
|
||||
#include "Funding$de-de.tppi"
|
||||
TOPIC("download$fr-fr")
|
||||
#include "download$fr-fr.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("idess$de-de")
|
||||
|
|
@ -58,6 +66,10 @@ TOPIC("index$eu-es")
|
|||
#include "index$eu-es.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("nightly$en-us")
|
||||
#include "nightly$en-us.tppi"
|
||||
END_TOPIC
|
||||
|
||||
TOPIC("overview$de-de")
|
||||
#include "overview$de-de.tppi"
|
||||
END_TOPIC
|
||||
|
|
|
|||
|
|
@ -12,12 +12,11 @@ topic "Ultimate++ herunterladen";
|
|||
::@2 [s0; [*2 Jedes]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/source`/checkout^2 SVN]&]
|
||||
[s0;= [^https`:`/`/gitorious`.org`/upp^2 GIT][2 `*]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 tarball]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 tarball]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 tarball]]
|
||||
:: [s0; [*2 MS Windows]]
|
||||
:: [s0;=2 ]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 win32
|
||||
Installer]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 win32 Installer]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 win32
|
||||
Installer]]
|
||||
:: [s0; [*2 Ubuntu]]
|
||||
|
|
@ -66,10 +65,10 @@ erstellen und installieren der Pakete.]&]
|
|||
[s1;#b0; Nightly `- Builds&]
|
||||
[s0;2 &]
|
||||
[s0; [2 Jede Nacht gibt es ein automatisches Release, welches unter
|
||||
][^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 http://code.google
|
||||
.com/p/upp`-mirror/downloads/list][2 veröffentlich wird. Dort
|
||||
findest du den Installer für Windows (upp`-win21`-NNNN.exe)
|
||||
und den Source`-Tarball (upp`-x11`-src`-NNNN.tar.gz). ]&]
|
||||
][^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 topic://uppweb/www/nightly`$en`-us][2
|
||||
veröffentlich wird. Dort findest du den Installer für Windows
|
||||
(upp`-win21`-NNNN.exe) und den Source`-Tarball (upp`-x11`-src`-NNNN.tar.gz).
|
||||
]&]
|
||||
[s0;2 &]
|
||||
[s0; [2 Wenn du Ubuntu oder eine auf Debian basierende GNU/Linux Distribution
|
||||
nutzt, kannst du die Deb `- Pakete (und auch die dsc`-Quellpakete)
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
TITLE("Ultimate++ herunterladen")
|
||||
COMPRESSED
|
||||
120,156,173,88,235,86,219,72,18,126,149,94,18,102,33,224,155,128,132,129,205,206,64,184,156,108,18,38,11,97,230,156,225,120,86,45,171,45,245,88,106,233,168,91,56,56,155,60,77,158,33,191,230,31,47,182,95,149,36,99,115,217,144,139,207,65,22,82,87,117,85,125,85,95,85,251,76,60,124,216,93,237,62,232,126,230,179,181,167,134,178,76,92,255,44,232,245,158,108,63,90,193,21,162,61,136,122,79,214,55,158,172,175,173,173,247,54,187,221,245,94,183,183,238,173,175,61,238,118,55,54,55,31,123,235,93,111,235,153,204,157,206,76,255,236,221,127,222,47,238,237,183,246,246,197,153,237,110,63,21,103,143,142,31,139,83,127,197,95,17,177,42,74,227,84,145,200,80,153,254,15,253,51,219,219,126,16,116,183,197,201,32,54,42,73,46,255,10,84,97,245,32,118,51,239,112,43,222,189,243,240,217,234,225,179,181,134,15,93,214,255,177,209,221,254,39,254,134,221,237,168,187,29,247,182,147,205,142,183,81,208,197,109,118,122,27,1,93,126,94,242,188,31,151,143,151,
|
||||
122,222,230,50,27,4,123,86,126,244,196,174,114,133,86,129,181,23,214,169,180,223,223,218,106,204,165,183,255,46,97,141,186,254,244,72,71,177,75,46,132,223,18,187,165,78,194,235,239,79,156,12,116,162,196,175,228,4,66,129,215,63,123,205,166,158,248,151,10,149,157,149,249,35,118,46,247,183,252,142,223,25,100,161,242,219,81,150,69,9,190,7,89,234,119,114,191,83,230,185,223,74,117,81,100,133,223,177,89,89,12,20,150,198,106,48,202,74,247,7,54,252,245,136,163,120,165,205,86,234,34,237,178,66,103,165,245,219,89,17,177,34,44,63,124,254,166,127,230,9,255,209,215,27,17,102,99,147,100,50,180,126,39,209,150,108,112,178,8,100,146,220,161,178,50,122,8,35,160,209,40,7,141,69,246,167,26,56,91,41,238,12,17,176,230,254,22,109,28,184,87,39,226,55,109,176,245,76,244,60,241,29,125,24,107,179,230,137,231,198,58,236,173,138,239,228,203,93,90,217,167,211,0,149,80,254,63,127,106,40,19,89,154,65,156,203,176,222,211,255,16,102,137,30,249,45,
|
||||
78,6,127,69,22,131,88,159,171,218,71,83,165,40,118,127,253,122,135,192,94,21,253,111,87,71,47,114,57,24,201,72,89,168,14,85,176,42,66,59,184,17,167,175,216,227,59,89,250,25,3,57,228,7,42,204,10,185,42,94,73,19,22,250,28,119,191,228,202,156,156,158,236,223,10,195,93,25,246,165,105,80,228,169,157,55,228,80,25,151,101,244,172,229,221,178,193,120,60,246,219,96,97,157,74,167,160,164,42,97,108,88,34,153,81,7,234,173,223,206,227,220,255,201,249,79,83,27,249,63,68,153,203,252,167,94,111,109,125,13,251,169,160,225,166,164,75,124,72,23,215,37,62,164,203,113,183,213,227,61,23,91,83,255,170,219,219,216,115,158,55,61,177,131,152,139,151,218,148,111,239,180,94,150,133,223,38,108,18,90,86,27,223,96,83,27,254,194,127,90,250,139,222,46,253,81,2,188,56,220,61,125,254,114,207,126,169,209,239,223,87,236,247,225,195,135,199,235,219,162,245,95,102,55,113,106,178,225,80,79,52,113,120,33,94,113,217,215,60,41,102,26,11,147,60,241,
|
||||
69,245,202,19,245,18,40,217,131,220,229,167,225,16,64,37,104,71,138,152,182,86,132,178,46,66,17,150,20,137,67,166,25,241,12,58,4,55,182,38,133,191,133,212,73,126,171,195,194,181,44,137,118,242,89,193,90,110,42,70,245,35,34,21,103,104,102,174,205,230,207,90,155,42,240,156,80,218,192,17,87,34,131,132,145,48,63,84,169,216,55,110,172,7,35,4,202,111,193,73,191,117,172,242,12,170,202,60,68,246,133,109,241,155,50,6,238,138,80,171,233,226,210,68,226,60,51,117,87,15,148,5,218,170,4,89,40,35,210,203,79,232,223,10,251,5,202,148,110,162,72,210,226,5,246,133,33,9,54,63,80,49,1,163,233,153,85,5,172,232,223,51,255,17,158,3,250,38,127,255,214,191,137,219,193,229,95,5,91,90,149,24,186,60,155,80,172,146,243,98,223,111,113,223,94,21,99,149,32,116,88,10,187,78,202,224,188,106,216,226,89,29,78,65,82,110,85,80,212,32,183,83,4,74,35,172,152,82,100,73,15,72,44,192,0,161,40,67,232,159,251,218,127,159,250,101,
|
||||
7,173,120,19,23,74,134,12,236,120,10,1,129,38,135,228,164,166,116,83,214,106,152,238,218,183,132,226,170,84,167,81,16,163,203,79,198,192,92,138,16,103,127,46,71,202,41,114,169,255,141,53,188,115,122,204,182,206,141,120,140,57,195,47,82,237,56,223,82,236,152,143,28,210,170,24,77,20,66,77,246,83,161,154,182,216,73,32,104,164,211,231,120,138,60,138,168,246,0,193,133,68,182,59,177,132,138,40,132,44,225,23,161,153,75,137,255,16,206,66,225,139,12,240,91,210,68,42,81,49,12,192,235,65,138,199,191,96,162,28,38,151,31,1,183,89,70,240,44,20,184,12,200,104,75,117,221,204,2,202,172,94,89,194,102,235,170,111,35,190,20,48,108,252,154,99,213,158,37,146,121,62,185,62,30,218,155,160,208,8,40,142,80,123,78,68,58,128,243,150,93,153,53,201,138,99,184,32,173,106,178,212,126,37,181,220,28,115,238,197,44,83,49,150,98,76,81,30,51,100,200,148,2,142,201,0,201,144,210,25,8,81,114,34,76,211,89,71,112,142,214,67,155,88,98,253,
|
||||
24,135,188,158,223,58,194,167,173,222,170,229,42,57,168,0,43,14,108,189,169,102,191,122,249,219,30,22,219,98,80,75,96,48,108,71,147,229,182,184,37,213,27,138,170,102,42,193,105,194,100,39,203,33,184,48,208,200,131,64,90,134,18,241,63,60,58,237,84,133,177,7,15,11,29,148,116,112,105,106,126,36,141,169,61,66,149,64,154,240,172,176,135,101,48,153,19,144,222,97,192,240,91,51,101,180,204,105,114,35,11,216,10,74,253,151,205,64,67,19,207,247,24,203,106,72,45,48,157,202,147,248,156,244,149,240,156,44,3,203,240,161,240,246,224,141,74,243,97,6,94,70,216,94,41,23,83,75,227,166,97,87,185,106,118,88,135,152,16,208,154,56,164,58,34,25,17,107,51,41,39,37,0,39,246,95,66,220,234,8,198,136,247,164,172,202,63,253,156,187,43,177,74,114,106,135,23,229,4,169,156,75,96,207,105,97,253,22,229,161,223,142,93,154,192,97,148,40,156,8,46,240,30,119,34,42,117,168,42,95,178,36,162,42,110,186,142,12,136,223,175,194,48,235,188,144,
|
||||
137,101,16,0,210,145,76,235,92,156,169,120,118,153,65,23,254,2,73,46,212,4,6,215,83,108,113,158,193,181,8,7,199,106,17,136,6,204,88,136,165,73,123,23,109,226,194,208,89,120,176,204,129,181,85,11,158,102,205,105,221,24,184,117,214,65,92,5,219,171,231,56,49,115,126,225,137,48,151,159,28,183,211,157,32,190,252,104,34,29,141,208,130,240,255,44,45,181,197,174,118,72,203,64,17,163,40,6,202,86,155,84,149,80,167,173,201,176,183,78,211,170,231,86,221,76,88,96,207,251,193,66,130,106,118,21,220,196,230,98,127,48,170,201,240,133,52,180,57,113,86,187,63,127,54,175,107,112,247,134,13,70,149,160,6,72,213,199,97,146,71,118,21,42,225,240,211,18,203,7,102,94,68,237,148,53,56,208,94,209,100,165,197,243,16,93,66,133,51,138,81,97,179,5,6,195,139,84,130,116,198,152,114,26,157,112,130,29,108,118,242,23,232,57,184,114,161,161,87,60,151,226,69,86,20,106,228,74,226,120,67,191,59,240,96,228,138,203,143,220,123,184,215,223,33,141,
|
||||
24,69,138,178,126,106,240,53,102,242,102,123,195,9,203,147,205,141,130,155,52,118,115,77,173,153,25,228,228,234,216,65,53,115,141,148,105,232,155,86,30,152,174,238,25,243,77,227,190,39,151,171,86,97,231,55,157,174,167,229,213,234,155,77,191,45,126,47,237,229,71,55,225,8,78,202,116,218,7,224,217,85,135,152,103,127,122,87,243,191,157,161,96,78,76,66,0,135,168,38,155,185,181,92,63,203,177,186,230,56,215,240,90,13,200,131,38,200,15,166,35,98,93,31,36,84,247,135,163,122,78,228,204,229,76,248,83,145,121,111,100,53,234,210,125,67,237,96,14,255,239,104,203,60,34,27,49,206,170,26,158,233,232,228,87,133,102,13,37,179,205,92,31,255,186,179,242,151,242,61,193,211,22,167,233,60,237,176,67,213,84,94,241,58,110,38,229,252,200,67,228,143,122,149,165,205,232,29,210,109,40,99,122,49,214,53,6,117,45,94,235,118,124,26,160,159,214,40,36,166,44,152,74,253,133,171,223,18,22,196,142,97,78,179,96,2,218,101,172,162,73,153,160,186,63,83,
|
||||
67,175,11,20,184,232,160,104,137,49,110,57,180,149,34,45,45,20,178,117,115,14,71,24,21,25,85,178,111,34,99,198,139,41,185,194,186,153,176,129,222,4,38,207,158,115,70,25,81,98,115,152,220,49,88,26,226,57,2,1,156,173,66,214,80,72,144,182,110,238,172,68,144,39,210,57,212,14,13,189,145,197,104,129,28,26,9,254,141,179,26,79,144,9,46,203,245,160,202,4,160,53,86,65,117,124,232,28,32,53,65,48,254,67,140,121,173,80,209,111,125,57,13,47,92,110,196,81,219,98,135,204,199,193,141,52,253,94,94,153,133,78,58,36,247,8,30,236,238,144,42,124,74,153,243,10,136,162,72,164,153,84,141,164,14,251,226,162,232,255,15,60,181,170,47,
|
||||
120,156,173,88,235,86,220,56,18,126,21,45,73,102,33,208,55,67,18,6,54,59,3,129,228,100,147,48,89,8,51,231,12,167,103,37,183,213,182,166,109,217,199,146,232,208,217,228,105,242,12,249,53,255,120,177,253,74,182,187,221,64,54,215,62,7,183,177,85,170,203,87,245,85,169,207,216,237,219,253,141,254,173,254,39,62,59,7,114,44,92,106,135,103,225,96,240,96,247,238,58,174,16,29,64,52,120,176,117,239,193,214,230,230,214,96,187,223,223,26,244,7,91,193,214,230,253,126,255,222,246,246,253,96,171,31,236,60,18,133,85,185,30,158,189,249,207,219,59,7,135,157,131,67,118,102,250,187,15,217,217,221,227,251,236,148,175,243,117,150,200,210,105,43,203,84,68,82,15,127,24,158,153,193,238,173,176,191,203,78,70,137,150,105,122,249,87,40,75,163,70,137,109,189,195,45,123,243,38,192,103,103,128,207,206,38,62,116,217,250,199,189,254,238,63,241,55,238,239,198,253,221,100,176,155,110,247,130,123,37,93,236,118,111,112,47,164,203,207,171,65,240,227,218,241,234,
|
||||
32,216,94,243,6,193,158,245,31,3,182,47,109,169,100,104,204,133,177,50,27,14,119,118,26,115,233,237,191,29,172,145,87,159,30,169,56,177,233,5,227,29,182,239,84,26,93,125,127,98,69,168,82,201,126,37,39,16,10,188,254,57,104,148,6,236,95,50,146,166,45,243,71,98,109,193,119,120,143,247,70,121,36,121,55,206,243,56,197,247,40,207,120,175,224,61,87,20,188,147,169,178,204,75,222,51,185,43,71,18,75,19,57,154,228,206,254,1,133,191,30,249,40,46,118,51,213,118,177,178,121,169,114,103,120,55,47,99,191,17,150,63,121,250,106,120,22,48,126,119,201,8,155,23,106,84,137,97,217,84,134,188,55,157,78,121,79,87,222,242,219,82,243,142,51,144,183,162,12,69,154,126,196,133,202,190,49,244,193,3,45,45,60,40,243,63,229,200,154,202,145,222,24,177,105,238,111,216,205,199,232,197,9,251,77,233,40,159,182,2,21,176,175,51,119,170,244,102,192,158,106,99,161,70,150,223,201,236,143,237,234,205,63,13,145,223,238,99,166,183,0,74,133,211,163,164,
|
||||
16,81,173,147,191,139,242,84,77,120,199,67,204,215,69,57,74,212,185,172,83,160,246,13,218,95,190,220,35,8,55,216,240,219,183,163,23,133,24,77,68,44,41,92,145,12,55,88,100,70,215,226,244,21,58,190,147,165,159,48,208,135,252,177,140,242,82,108,176,23,66,71,165,58,199,221,47,133,212,39,167,39,135,55,194,112,29,145,175,75,131,178,200,204,178,33,79,164,182,121,78,207,58,193,13,10,40,73,187,224,86,149,9,43,177,73,85,152,80,232,80,235,72,121,249,154,119,139,164,224,63,89,254,48,51,49,255,33,206,109,206,31,6,131,205,173,77,232,147,97,195,56,105,159,88,142,46,182,79,44,71,151,227,126,103,224,117,222,233,204,253,171,110,111,226,196,101,54,12,216,30,98,206,158,43,237,94,127,212,122,225,74,222,37,108,82,90,86,27,223,96,83,27,254,140,63,116,252,78,176,79,127,148,0,207,158,236,159,62,125,126,96,190,212,232,183,111,43,78,123,247,238,221,253,173,93,214,249,175,231,44,118,170,243,241,88,205,20,49,115,201,94,120,86,172,217,
|
||||
143,181,218,133,167,110,162,211,234,85,192,234,37,216,228,0,114,151,31,198,99,0,149,162,201,72,226,207,122,35,148,117,25,177,200,81,36,158,120,22,102,143,176,7,243,237,170,73,225,111,161,106,146,223,233,121,225,90,150,68,123,69,91,176,150,155,139,81,253,176,88,38,57,90,148,237,122,243,219,214,102,82,25,203,164,210,112,196,58,100,16,211,2,230,71,50,99,135,218,78,213,104,130,64,241,14,156,228,157,99,89,228,216,202,21,17,178,47,234,178,223,164,214,112,151,69,74,206,23,59,29,179,243,92,215,189,58,148,6,104,75,7,178,144,154,101,151,31,208,149,37,244,133,82,59,59,147,36,105,240,2,122,97,72,10,229,143,101,66,192,40,122,102,100,9,43,134,159,153,255,8,207,99,250,38,127,255,54,188,142,219,227,203,191,74,111,105,85,98,232,221,222,132,114,131,156,103,135,188,227,187,241,6,155,202,20,161,195,82,216,117,226,194,243,170,13,179,71,117,56,25,73,217,13,70,81,131,220,94,25,74,133,176,98,246,16,142,30,144,88,136,177,64,82,134,208,
|
||||
63,159,107,255,231,212,175,119,208,176,87,73,41,69,228,129,157,206,33,32,208,196,152,156,84,148,110,210,24,5,211,109,247,134,80,44,74,117,30,5,54,185,252,160,53,204,165,8,249,236,47,196,68,90,73,46,13,191,177,134,247,78,143,189,173,75,131,155,199,220,195,207,50,101,125,190,101,208,88,76,44,210,170,156,204,36,66,77,246,83,161,234,46,219,75,33,168,133,85,231,120,138,60,138,169,246,0,193,133,64,182,91,182,138,138,40,153,112,240,139,208,44,132,192,127,8,103,41,241,69,6,240,142,208,177,76,101,2,3,240,122,148,225,241,47,152,19,199,233,229,123,192,173,215,16,60,131,13,108,14,100,148,161,186,198,252,160,211,156,108,221,88,88,226,205,86,85,223,70,124,41,96,80,252,210,199,170,219,38,146,101,62,185,58,244,153,235,160,208,96,199,142,80,123,150,197,42,132,243,198,187,210,54,201,176,99,184,32,140,108,178,212,44,168,229,11,6,48,90,9,22,169,150,209,170,171,139,60,90,72,252,22,205,121,178,0,123,228,8,246,152,18,21,177,167,180,
|
||||
67,0,230,83,12,243,217,87,79,94,108,213,115,18,6,157,96,192,59,71,248,116,229,107,185,86,193,78,165,85,177,91,231,85,53,192,213,203,95,15,176,216,148,163,90,2,211,93,55,158,173,117,217,13,73,220,144,79,53,45,49,159,0,158,198,132,27,131,229,66,5,132,67,97,60,72,136,236,147,163,211,94,149,242,7,40,221,82,133,142,14,26,77,53,79,132,214,181,71,200,127,72,19,82,21,170,176,12,38,251,212,162,119,24,29,120,167,85,32,107,62,1,174,225,235,173,160,164,126,222,140,42,52,203,124,143,129,171,110,3,6,8,206,229,73,124,73,122,33,188,36,235,129,245,240,161,164,14,224,141,204,138,113,14,198,69,216,94,72,155,80,179,242,237,192,108,248,122,216,243,123,176,25,1,173,136,29,170,35,141,102,137,210,51,55,115,0,156,120,125,21,113,171,35,152,32,222,51,87,21,118,246,41,119,215,19,153,22,212,232,46,220,12,36,82,8,96,239,211,194,240,78,10,59,120,55,177,89,10,135,81,124,112,34,188,192,123,220,177,216,169,72,86,190,228,105,
|
||||
76,245,217,244,19,17,18,115,47,194,208,118,158,137,212,120,16,0,210,145,200,234,92,108,213,178,119,217,131,206,248,10,73,174,212,212,4,215,51,168,56,207,225,90,140,131,94,181,8,20,2,206,43,217,234,172,187,143,6,112,161,233,236,58,90,243,129,53,85,115,157,103,205,105,77,249,190,41,214,65,220,0,143,203,167,56,225,250,252,194,19,166,47,63,88,223,40,247,194,228,242,189,142,85,60,65,115,193,255,109,194,233,178,125,101,145,150,161,36,174,144,30,40,83,41,169,42,161,78,91,157,67,183,202,178,170,155,86,125,138,25,96,239,245,193,66,130,170,189,10,110,66,57,59,28,77,106,154,123,38,52,41,39,54,234,14,151,207,210,117,13,238,95,179,65,75,7,106,128,84,125,124,37,121,100,87,41,83,31,126,90,98,252,1,215,47,162,70,233,119,176,32,180,178,201,74,131,231,17,248,95,70,173,141,81,97,237,2,131,225,101,38,64,58,83,204,47,205,158,112,194,59,216,104,226,43,244,28,3,214,74,67,156,120,46,216,179,188,44,229,196,58,98,111,77,191,
|
||||
19,248,145,199,150,151,239,125,87,241,93,252,35,210,136,81,44,41,235,231,6,95,97,166,160,205,250,39,94,158,108,110,54,184,78,99,215,215,212,59,123,6,57,89,28,40,168,102,174,144,50,141,115,243,202,3,211,213,221,96,185,97,127,238,153,100,49,94,154,101,165,243,245,180,188,90,125,189,157,119,217,239,206,92,190,183,51,31,193,153,203,230,125,0,158,45,58,196,50,251,211,187,154,255,77,139,130,125,98,18,2,56,30,53,217,236,91,203,213,83,154,223,174,57,168,53,188,86,3,114,171,9,242,173,249,240,87,215,7,9,213,253,225,168,158,0,125,230,250,76,248,83,146,121,175,68,53,196,210,125,67,237,96,14,254,119,52,92,63,252,106,54,205,171,26,110,245,106,242,171,66,179,134,210,179,205,210,240,255,117,167,224,47,229,123,130,167,203,78,179,101,218,241,14,85,243,118,197,235,184,153,185,229,97,134,200,31,245,42,156,201,233,29,210,109,44,18,122,49,85,53,6,117,45,94,233,118,126,206,167,159,194,40,36,218,149,158,74,249,202,226,87,130,21,182,167,
|
||||
61,167,25,48,1,105,153,202,120,230,82,84,247,39,106,232,101,137,2,103,61,20,45,49,198,13,199,49,199,50,103,176,161,183,110,201,225,24,67,160,71,149,236,155,137,196,227,229,41,185,194,186,153,157,129,222,12,38,183,79,48,147,156,40,177,57,38,238,105,44,141,240,28,129,0,206,70,34,107,40,36,72,91,187,116,10,34,200,83,97,45,106,135,198,217,216,96,180,64,14,77,152,255,77,178,26,79,254,207,172,246,24,169,9,130,225,183,113,54,236,68,146,126,155,43,104,120,241,229,70,28,181,203,246,200,124,28,201,104,167,223,221,194,44,116,210,49,185,71,240,64,187,69,170,248,243,199,146,87,64,20,69,34,244,172,106,36,117,216,239,220,97,195,255,1,193,63,140,35,
|
||||
|
||||
|
|
|
|||
|
|
@ -12,12 +12,11 @@ topic "Ultimate++ download";
|
|||
::@2 [s0; [*2 Any]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/source`/checkout^2 SVN]&]
|
||||
[s0;= [^https`:`/`/gitorious`.org`/upp^2 GIT][2 `*]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 tarball]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 tarball]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 tarball]]
|
||||
:: [s0; [*2 MS Windows]]
|
||||
:: [s0;=2 ]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 win32
|
||||
installer]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 win32 installer]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 win32
|
||||
installer]]
|
||||
:: [s0; [*2 Ubuntu]]
|
||||
|
|
@ -63,10 +62,10 @@ build and install the packages automatically.]&]
|
|||
[s0; &]
|
||||
[s1;#b0; Nightly builds&]
|
||||
[s0;2 &]
|
||||
[s0; [2 Every night there is automatic release published at ][^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 h
|
||||
ttp://code.google.com/p/upp`-mirror/downloads/list][2 . Here you
|
||||
can find windows installer (upp`-win32`-NNNN.exe) and source
|
||||
tarball (upp`-x11`-src`-NNNN.tar.gz). ]&]
|
||||
[s0; [2 Every night there is automatic release published ][%DE-DE^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 t
|
||||
opic://uppweb/www/nightly`$en`-us][2 . Here you can find windows
|
||||
installer (upp`-win32`-NNNN.exe) and source tarball (upp`-x11`-src`-NNNN.tar.gz).
|
||||
]&]
|
||||
[s0;2 &]
|
||||
[s0; [2 If you are using Ubuntu or Debian based GNU/Linux distribution,
|
||||
you can find deb packages (and also dsc source packages) of nightly
|
||||
|
|
|
|||
11
uppbox/uppweb/www.tpp/download$en-us.tppi
Normal file
11
uppbox/uppweb/www.tpp/download$en-us.tppi
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
TITLE("Ultimate++ download")
|
||||
COMPRESSED
|
||||
120,156,173,88,11,87,219,70,22,254,43,183,121,116,33,216,178,45,76,66,113,179,109,90,8,225,52,101,41,148,237,233,225,184,171,177,52,150,85,100,141,206,204,8,227,102,147,223,190,223,157,145,252,224,177,73,73,124,14,178,142,53,247,253,221,239,94,113,65,79,158,116,91,221,199,221,143,124,246,246,229,88,84,185,29,94,140,122,189,23,131,103,91,184,66,180,7,209,240,69,127,231,69,127,123,187,223,219,237,118,251,189,110,175,31,246,183,159,119,187,59,187,187,207,195,126,55,220,251,81,148,54,83,197,240,226,221,127,222,63,61,56,110,159,159,209,133,233,14,94,210,197,179,211,231,116,30,109,69,91,148,168,89,145,43,145,12,191,30,94,152,222,224,241,168,59,160,95,170,44,190,36,117,37,245,85,38,103,43,15,112,75,239,222,133,248,236,245,240,217,219,198,135,47,253,111,119,186,131,127,226,111,220,29,164,221,193,164,55,200,119,59,225,142,230,139,221,237,244,118,70,124,249,126,35,12,191,217,60,221,232,133,187,155,206,17,248,177,245,77,72,255,42,165,22,54,
|
||||
43,82,50,115,99,229,116,56,220,219,107,28,229,231,103,170,210,177,188,249,235,113,150,78,108,62,167,81,149,229,137,185,37,99,197,40,151,164,101,46,133,145,238,241,247,97,99,52,164,87,197,124,85,226,143,137,181,101,180,23,117,162,78,172,18,25,5,169,82,105,142,239,88,77,163,78,25,117,170,178,140,218,211,76,107,165,163,142,113,254,224,232,68,198,151,170,178,127,192,220,191,143,93,2,151,218,140,87,151,102,86,233,76,85,38,10,148,78,157,34,28,63,60,250,117,120,17,82,244,108,205,9,171,202,44,246,98,56,54,147,163,168,51,155,205,162,78,225,35,141,158,200,34,106,87,6,242,86,232,145,200,243,123,66,240,254,141,97,15,17,20,210,34,2,173,254,148,177,53,62,144,206,56,203,101,115,127,135,54,151,161,159,207,232,183,172,0,58,86,82,27,210,195,220,157,101,197,118,72,89,97,44,204,72,253,133,220,190,79,171,115,255,124,84,21,182,186,207,245,149,2,229,162,42,226,73,41,146,218,102,244,33,81,121,118,25,181,93,137,163,45,161,227,73,118,37,
|
||||
107,8,212,177,193,250,201,201,43,46,97,139,134,159,175,142,31,148,34,190,20,169,228,116,37,114,212,162,196,196,183,242,244,0,27,95,200,211,143,56,232,82,254,90,38,74,139,22,253,44,138,68,103,87,184,67,99,23,103,231,103,7,119,150,225,118,69,30,6,3,93,78,205,186,35,135,178,176,74,241,111,237,240,14,3,12,210,0,140,154,77,133,149,80,226,27,19,6,43,244,58,32,47,175,163,160,156,148,209,119,54,122,57,53,105,244,117,170,172,138,94,134,189,237,254,54,236,73,71,56,172,61,239,50,199,241,197,118,153,227,248,114,218,109,247,156,205,167,237,69,124,254,246,46,70,92,231,66,208,18,114,78,111,179,162,186,190,215,123,81,233,40,224,218,228,124,172,118,190,169,77,237,248,79,209,203,42,122,26,254,192,127,12,128,159,14,127,56,63,122,187,111,254,174,211,239,223,123,78,251,240,225,195,243,254,128,218,255,117,156,69,85,161,198,227,44,206,68,78,158,18,107,234,163,149,73,225,57,155,152,77,253,195,144,234,67,208,113,82,141,242,44,102,210,172,21,
|
||||
80,102,104,162,192,253,9,141,230,116,232,200,151,126,132,44,9,219,192,246,115,232,153,229,247,58,78,184,150,101,209,78,185,42,88,203,45,196,184,103,2,250,117,34,87,124,132,55,83,184,73,61,120,91,105,26,201,9,240,66,22,103,18,121,37,115,133,65,102,92,88,90,150,202,48,245,207,3,58,26,211,92,85,52,19,133,37,171,72,196,49,134,18,6,158,108,38,176,23,157,2,181,45,170,140,132,62,54,5,197,172,69,91,76,184,212,128,231,136,77,14,63,17,201,8,218,125,115,20,95,13,111,151,224,53,2,242,125,194,38,181,105,193,96,13,109,252,224,102,113,53,194,2,96,176,63,80,147,18,78,65,133,6,209,168,43,104,87,87,49,175,23,1,189,17,87,168,20,229,74,93,114,138,56,31,177,210,90,154,82,21,9,235,250,84,175,63,165,255,220,65,216,208,18,75,11,34,161,204,231,87,104,137,36,89,9,179,192,81,112,71,204,203,238,242,49,83,140,152,155,253,135,124,249,169,105,37,78,248,240,51,27,239,213,249,169,243,144,107,233,83,139,212,76,235,252,
|
||||
78,197,165,44,47,83,64,66,229,1,189,202,225,121,129,45,8,88,152,211,92,192,25,75,27,40,146,81,83,73,10,114,154,213,69,109,49,227,64,97,119,10,231,199,90,33,226,34,217,36,140,64,140,106,198,87,19,80,171,54,201,198,235,33,233,42,179,8,80,84,86,161,4,89,140,39,243,96,181,135,215,91,121,125,209,186,157,214,3,192,100,78,110,148,177,1,46,195,138,242,102,5,163,146,155,222,76,208,226,195,139,167,251,7,237,253,131,191,179,240,240,73,116,176,63,198,167,110,30,242,237,250,134,205,51,26,184,180,99,110,206,153,95,98,150,123,2,109,184,166,119,219,67,212,62,198,39,144,215,114,211,229,169,198,64,189,16,213,39,175,123,189,168,109,116,92,31,198,195,32,253,107,51,160,59,16,118,180,132,162,47,178,95,67,8,117,220,151,163,12,62,141,144,138,132,14,143,207,59,30,136,73,134,62,202,70,21,55,82,107,221,115,76,217,101,177,54,216,61,145,27,197,115,247,38,86,55,73,141,169,88,43,19,247,225,219,102,194,243,10,240,37,246,148,154,73,
|
||||
13,10,177,144,103,241,53,233,165,240,154,172,175,207,169,4,239,130,233,18,36,97,38,230,142,15,19,207,160,181,16,255,52,103,166,243,49,34,242,69,82,20,99,220,179,227,71,130,217,154,200,188,228,73,48,175,254,66,147,150,2,5,244,234,162,54,64,104,163,96,98,167,57,194,1,85,192,197,209,28,207,113,71,105,149,37,210,47,75,127,86,224,121,102,227,149,200,86,227,33,97,92,90,11,49,173,193,211,52,89,93,21,138,30,241,249,71,53,18,92,76,99,113,133,183,1,187,168,28,72,160,192,23,48,137,185,20,208,217,188,224,55,182,120,147,231,14,162,156,101,80,231,138,222,232,62,175,105,211,13,142,58,164,22,15,169,163,253,3,242,16,201,169,144,248,213,8,52,101,34,75,206,117,17,103,210,4,116,226,27,177,80,150,103,12,0,82,163,115,201,8,192,173,177,108,116,166,244,37,51,32,86,175,20,132,234,199,209,162,185,253,153,177,156,145,86,85,58,33,153,64,58,24,174,191,40,214,45,113,188,176,150,195,111,99,23,248,132,170,84,22,24,132,96,31,55,
|
||||
79,144,122,45,61,22,220,144,53,238,21,142,83,193,99,87,138,194,120,61,55,129,238,154,173,114,106,166,202,69,224,94,253,112,182,104,238,155,215,64,112,162,140,5,87,21,51,117,156,93,215,49,35,35,104,204,248,146,167,45,123,160,110,202,221,156,38,225,218,170,179,126,118,253,228,99,206,193,141,19,206,230,146,14,17,210,217,114,231,101,4,7,244,123,141,249,197,116,114,131,227,230,50,244,169,171,242,114,3,50,235,134,22,231,249,184,63,237,251,244,168,224,190,204,152,149,56,29,191,221,34,209,219,108,105,150,244,229,32,235,56,204,33,6,27,250,18,99,176,125,235,77,193,105,107,94,22,154,92,63,94,75,33,239,43,53,92,249,112,205,166,126,140,207,38,60,245,164,41,162,127,216,197,154,85,149,9,175,88,210,13,167,4,84,131,89,57,93,96,7,157,219,90,197,243,122,125,220,211,135,243,229,3,104,178,94,54,239,105,116,231,186,223,10,189,72,179,39,2,236,160,31,238,210,88,38,21,130,1,41,37,210,196,152,40,0,22,167,122,189,89,106,90,75,180,42,
|
||||
157,116,244,104,249,14,250,8,27,31,214,250,235,255,139,245,19,157,197,119,44,244,12,215,68,185,62,154,8,207,225,37,82,46,138,57,188,6,249,177,39,171,17,181,184,46,197,234,230,150,42,62,103,221,54,74,153,117,18,43,139,49,15,56,55,57,180,123,237,16,101,137,23,8,193,240,4,175,189,81,51,46,115,171,209,135,20,215,75,116,9,206,129,166,105,11,119,142,251,26,158,225,234,222,183,125,188,174,220,210,186,178,125,36,170,112,255,159,226,42,13,188,235,102,202,85,130,186,197,244,174,233,154,39,15,141,43,158,7,214,184,3,152,243,50,89,13,102,177,107,13,255,7,98,162,214,232,
|
||||
|
||||
|
|
@ -12,12 +12,11 @@ topic "Ultimate++ download";
|
|||
::@2 [s0; [*2 Tous]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/source`/checkout^2 SVN]&]
|
||||
[s0;= [^https`:`/`/gitorious`.org`/upp^2 GIT][2 `*]]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 archive]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 archive]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 archive]]
|
||||
:: [s0; [*2 MS Windows]]
|
||||
:: [s0;=2 ]
|
||||
:: [s0;= [^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 Installateur
|
||||
win32]]
|
||||
:: [s0;= [^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 Installateur win32]]
|
||||
:: [s0;= [^http`:`/`/sourceforge`.net`/projects`/upp`/files`/upp`/^2 Installateur
|
||||
win32]]
|
||||
:: [s0; [*2 Ubuntu]]
|
||||
|
|
@ -75,10 +74,10 @@ automatiquement.]&]
|
|||
[s0; &]
|
||||
[s1;#b0; Binaires quotidiens&]
|
||||
[s0;2 &]
|
||||
[s0; [2 Chaque nuit, une version est automatiquement publié ici : ][^http`:`/`/code`.google`.com`/p`/upp`-mirror`/downloads`/list^2 h
|
||||
ttp://code.google.com/p/upp`-mirror/downloads/list][2 . Vous y trouverez
|
||||
un installateur Windows (upp`-win32`-NNNN.exe) et une archive
|
||||
des sources (upp`-x11`-src`-NNNN.tar.gz).]&]
|
||||
[s0; [2 Chaque nuit, une version est automatiquement publié ici : ][%DE-DE^topic`:`/`/uppweb`/www`/nightly`$en`-us^2 t
|
||||
opic://uppweb/www/nightly`$en`-us][2 . Vous y trouverez un installateur
|
||||
Windows (upp`-win32`-NNNN.exe) et une archive des sources (upp`-x11`-src`-NNNN.ta
|
||||
r.gz).]&]
|
||||
[s0;2 &]
|
||||
[s0; [2 Si vous utilisez une distribution GNU/Linux basée sur Ubuntu
|
||||
ou Debian, vous pourrez trouver des paquets ][C2 deb][2 (ainsi que
|
||||
|
|
|
|||
13
uppbox/uppweb/www.tpp/download$fr-fr.tppi
Normal file
13
uppbox/uppweb/www.tpp/download$fr-fr.tppi
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
TITLE("Ultimate++ download")
|
||||
COMPRESSED
|
||||
120,156,173,88,219,118,19,57,22,253,21,13,151,38,33,190,86,12,164,147,97,186,3,129,44,86,3,195,74,8,243,144,229,158,146,171,100,91,80,86,85,75,42,39,129,129,111,233,183,233,244,243,188,205,163,127,108,246,145,84,229,11,206,112,205,90,113,28,251,232,220,207,222,71,117,202,110,220,232,52,58,215,59,159,248,217,61,16,67,94,102,182,127,58,232,118,239,237,221,222,194,43,142,118,113,52,186,215,187,115,175,183,189,221,235,238,116,58,189,110,167,219,139,122,219,119,59,157,59,59,59,119,163,94,39,218,125,200,11,43,115,213,63,125,247,207,247,55,31,31,53,31,31,177,83,211,217,187,207,78,111,31,221,101,47,103,151,217,236,50,25,115,61,18,19,161,44,59,137,183,226,173,254,15,253,83,211,221,187,62,232,236,177,253,66,232,217,191,203,133,79,240,150,189,123,23,225,103,183,27,245,122,187,219,17,60,220,134,11,127,189,211,217,251,27,126,135,157,189,81,103,111,220,221,203,118,218,209,29,77,47,118,167,221,189,51,160,151,159,55,162,232,199,205,163,141,
|
||||
110,180,179,233,60,129,35,91,63,70,236,248,194,216,217,31,19,193,210,248,150,56,47,178,92,90,238,28,239,239,238,86,30,59,185,188,212,137,48,171,31,63,144,138,75,45,12,251,173,204,173,76,165,80,134,245,79,219,244,213,134,146,163,177,205,46,216,160,148,89,106,54,87,143,190,18,218,192,144,97,198,242,65,230,85,255,28,85,190,69,236,101,94,46,153,251,117,108,109,17,239,198,237,184,157,228,169,136,91,163,60,31,101,248,155,228,147,184,93,196,237,178,40,226,230,68,106,157,235,184,109,156,191,16,29,139,228,77,94,218,95,17,194,171,231,46,195,115,109,198,171,27,73,155,107,9,115,113,43,215,35,167,8,226,135,79,94,246,79,35,22,223,94,114,194,230,133,76,252,49,136,157,137,65,220,62,59,59,139,219,33,216,248,134,80,113,179,52,56,207,117,50,150,83,113,69,8,222,191,33,236,33,2,37,44,34,208,249,107,145,88,227,3,105,15,37,114,18,222,175,209,230,82,244,236,152,253,67,170,52,63,91,72,84,196,190,206,221,39,10,117,200,50,110,69,169,
|
||||
217,153,84,219,209,119,242,252,255,40,118,65,156,12,74,101,203,171,2,88,40,83,198,75,149,140,11,158,6,179,241,135,52,207,228,155,184,233,10,29,111,133,20,133,70,8,17,194,129,23,47,246,169,144,13,52,230,55,171,163,47,10,158,188,225,35,65,73,75,197,160,193,82,147,124,148,170,175,176,241,157,60,253,132,131,46,229,143,69,154,107,222,96,207,184,74,181,156,226,221,223,11,161,142,79,142,31,173,45,195,199,21,249,186,78,208,197,196,44,59,114,8,236,203,115,250,172,25,173,49,64,173,218,2,0,203,9,186,7,74,252,120,194,96,137,137,71,227,139,243,184,85,140,139,248,39,27,223,159,152,81,252,195,40,183,121,124,63,234,110,247,182,97,79,56,228,33,237,89,135,16,145,94,108,135,16,145,94,142,58,205,174,179,121,179,89,199,231,223,174,195,207,101,228,140,216,62,114,206,158,74,85,158,95,233,61,47,117,220,162,218,100,36,22,156,175,106,19,28,255,37,190,95,198,55,163,7,244,75,13,240,203,225,131,147,39,79,15,204,151,58,253,254,189,71,182,
|
||||
15,31,62,220,237,237,177,230,191,28,114,49,160,97,46,53,83,185,98,249,112,40,19,41,178,0,129,108,129,89,30,2,78,153,47,166,255,50,98,65,8,90,78,84,165,165,40,7,153,76,88,90,178,116,118,89,204,254,99,9,81,107,189,76,24,203,198,179,203,129,208,163,217,37,43,184,102,135,14,160,189,122,200,176,221,170,175,191,5,197,233,252,110,219,29,14,103,233,104,187,88,60,24,206,213,199,104,168,90,236,161,168,34,225,140,151,172,200,74,195,74,37,216,24,192,4,254,19,76,11,203,117,202,12,112,10,110,47,6,153,130,225,240,255,84,100,121,81,64,220,180,216,177,100,83,80,6,189,100,226,45,227,73,226,56,93,139,234,112,16,118,244,14,114,117,12,223,96,165,149,153,52,56,144,212,222,8,11,203,69,174,45,62,197,188,48,12,209,32,35,78,54,248,92,37,185,178,122,118,105,156,91,42,183,112,181,255,153,51,130,108,185,191,20,62,251,75,127,109,109,151,116,173,33,194,42,165,208,21,220,61,148,46,159,174,222,188,52,70,178,84,154,34,87,18,36,
|
||||
206,10,36,30,161,149,231,88,8,36,83,241,45,46,93,2,10,110,216,113,57,152,122,206,111,177,231,185,117,57,0,236,164,28,223,255,86,138,133,140,224,28,105,167,67,41,182,139,196,250,44,34,21,10,255,160,187,102,191,179,44,190,37,213,80,115,99,117,153,88,170,96,213,137,153,43,166,203,55,229,22,245,130,163,83,210,11,43,25,126,13,123,13,55,205,66,201,169,91,53,47,168,8,212,26,85,233,43,141,173,53,185,123,145,187,54,49,161,162,142,222,156,74,143,105,168,180,10,0,196,80,190,164,44,208,27,20,105,198,33,164,149,156,253,1,151,67,62,170,150,11,225,83,199,45,206,14,229,66,40,132,31,44,212,205,133,236,217,121,39,206,254,180,112,71,42,75,93,104,204,236,178,225,63,71,77,166,212,90,200,36,25,49,229,107,65,185,212,16,66,217,92,250,131,253,207,109,172,207,1,223,186,243,214,37,239,233,71,121,139,111,205,17,149,74,54,165,130,219,133,53,89,187,33,44,56,234,103,77,64,43,63,20,253,111,4,221,253,147,35,223,208,214,213,19,93,
|
||||
70,61,69,217,226,83,145,80,163,229,228,43,236,60,196,16,240,55,162,120,51,242,136,178,159,89,148,18,251,242,212,53,104,195,139,92,112,56,103,25,137,108,228,37,179,56,13,85,37,77,46,138,35,244,144,163,211,209,193,78,24,174,77,184,114,246,71,161,67,224,207,38,82,160,39,112,8,213,94,74,66,3,238,77,10,208,170,131,13,233,87,43,225,27,177,202,13,76,229,168,153,196,127,228,85,107,17,241,151,129,127,205,246,254,113,173,30,142,73,47,83,165,180,13,135,151,85,211,122,0,88,178,229,57,2,3,90,193,253,205,131,71,205,131,71,95,176,134,58,73,224,187,23,35,169,85,33,159,250,87,212,217,23,204,106,106,110,141,246,198,184,201,197,77,51,44,198,108,195,129,152,219,59,227,230,115,252,180,196,185,216,164,236,81,44,97,117,114,189,85,245,148,63,113,222,237,198,77,163,147,112,8,48,209,26,189,221,92,215,204,213,252,213,208,78,138,129,137,86,203,65,73,119,41,118,248,252,164,237,59,123,192,49,151,194,181,173,223,123,25,58,228,64,12,36,87,
|
||||
243,105,213,20,79,136,108,169,235,93,199,96,165,115,237,178,193,17,175,116,200,185,110,50,188,44,54,63,200,110,58,137,193,154,187,90,24,124,44,158,236,105,181,101,126,143,61,57,16,181,65,37,235,243,116,124,233,244,252,240,210,89,95,224,167,156,77,102,151,118,156,59,148,70,215,99,76,82,202,29,181,29,224,130,191,166,185,210,52,158,85,17,49,83,211,124,161,142,139,232,103,74,57,213,142,99,62,17,221,214,88,100,5,109,30,23,229,91,32,71,193,209,5,94,97,220,68,121,109,220,26,219,73,134,248,70,165,132,107,224,168,184,57,251,61,110,226,141,223,221,235,54,48,114,82,100,126,44,124,49,230,129,175,134,75,83,141,59,184,202,39,84,10,215,157,41,241,219,124,188,67,125,189,166,248,26,41,184,230,78,58,140,154,186,189,0,8,71,237,230,170,204,82,81,183,68,1,2,26,2,92,48,151,27,226,28,132,113,161,232,233,68,178,73,59,17,248,168,182,195,29,142,84,249,171,72,180,65,57,22,106,10,114,2,255,186,120,28,201,140,72,225,203,177,120,114,
|
||||
240,168,194,78,34,78,199,232,116,94,1,181,192,67,174,231,42,198,247,60,63,239,86,63,4,109,63,1,176,172,174,96,58,111,86,208,162,128,188,100,158,212,47,2,173,211,146,132,136,107,118,159,47,80,173,254,242,3,148,48,177,115,95,60,224,19,162,186,167,30,198,3,41,109,134,68,218,176,233,242,1,211,0,103,69,248,156,213,171,136,145,169,203,169,215,48,17,243,163,225,129,70,200,174,145,35,37,135,82,212,246,214,206,33,217,48,185,167,189,69,37,245,169,248,218,116,229,129,73,124,13,108,192,61,246,211,134,152,103,165,143,129,74,63,223,33,149,240,218,105,155,242,123,166,243,217,132,245,101,85,235,42,194,69,139,132,177,250,204,102,89,244,122,69,237,171,58,131,3,158,27,130,237,227,249,229,145,38,47,32,122,181,171,64,104,153,252,65,40,43,215,135,207,189,125,206,239,12,102,217,100,45,79,226,94,218,67,207,35,229,75,128,60,102,245,20,46,179,138,167,230,5,236,89,32,144,21,32,247,59,114,5,231,68,140,139,112,125,244,226,153,95,154,87,239,228,
|
||||
100,162,186,149,87,53,185,190,148,233,245,27,232,242,68,185,226,151,99,46,45,15,45,128,173,130,176,2,88,73,75,240,188,7,195,100,251,149,199,51,66,253,93,195,185,92,87,149,190,91,170,236,252,2,96,72,113,2,19,160,214,148,182,80,49,191,245,125,221,51,145,47,165,17,95,66,151,155,57,126,250,203,0,92,195,162,111,37,145,106,229,164,63,216,112,252,64,141,71,172,243,231,196,13,16,46,116,105,233,113,5,210,153,191,213,37,90,218,112,205,185,106,150,1,96,184,86,72,191,237,19,215,227,22,113,46,42,228,158,63,74,186,182,110,59,142,150,47,230,179,255,218,143,23,14,55,41,116,183,34,143,53,108,250,200,46,16,168,115,44,48,144,174,224,219,71,100,194,154,66,108,48,205,47,112,212,119,112,45,13,216,38,252,3,166,164,218,61,15,118,11,82,81,224,210,239,192,209,195,156,78,36,64,144,176,45,220,221,26,181,102,200,18,106,74,119,179,163,236,22,52,53,152,183,9,18,12,105,34,69,120,58,116,252,68,202,251,87,63,160,124,92,170,84,170,209,
|
||||
194,102,152,230,202,63,153,38,214,219,11,65,213,152,91,32,227,214,111,239,245,222,5,143,64,209,168,2,140,26,218,22,20,74,143,134,173,105,69,76,42,48,183,216,206,234,69,185,255,63,239,172,136,105,
|
||||
|
||||
16
uppbox/uppweb/www.tpp/nightly$en-us.tpp
Normal file
16
uppbox/uppweb/www.tpp/nightly$en-us.tpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
topic "Nightly builds";
|
||||
[2 $$0,0#00000000000000000000000000000000:Default]
|
||||
[i448;a25;kKO9;2 $$1,0#37138531426314131252341829483380:class]
|
||||
[l288;2 $$2,2#27521748481378242620020725143825:desc]
|
||||
[0 $$3,0#96390100711032703541132217272105:end]
|
||||
[H6;0 $$4,0#05600065144404261032431302351956:begin]
|
||||
[i448;a25;kKO9;2 $$5,0#37138531426314131252341829483370:item]
|
||||
[l288;a4;*@5;1 $$6,6#70004532496200323422659154056402:requirement]
|
||||
[l288;i1121;b17;O9;~~~.1408;2 $$7,0#10431211400427159095818037425705:param]
|
||||
[i448;b42;O9;2 $$8,8#61672508125594000341940100500538:tparam]
|
||||
[b42;2 $$9,9#13035079074754324216151401829390:normal]
|
||||
[{_}%EN-US
|
||||
[s0; [*R+150 Nightly builds]&]
|
||||
[s0; &]
|
||||
[s0; <#downloads#>&]
|
||||
[s0; ]
|
||||
5
uppbox/uppweb/www.tpp/nightly$en-us.tppi
Normal file
5
uppbox/uppweb/www.tpp/nightly$en-us.tppi
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TITLE("Nightly builds")
|
||||
COMPRESSED
|
||||
120,156,133,145,93,107,212,80,16,134,255,74,32,213,139,26,101,62,207,103,17,47,20,4,161,66,139,87,33,72,182,137,53,52,155,213,77,22,17,113,127,187,147,54,151,66,195,33,7,206,201,51,243,62,147,154,138,139,11,168,160,132,103,158,244,190,255,214,158,198,165,169,7,145,144,91,210,252,240,233,115,204,43,143,198,179,71,14,202,40,228,236,133,140,164,196,130,129,162,4,230,0,233,110,108,231,185,169,71,10,225,17,162,138,74,242,74,232,37,72,64,246,129,140,37,0,2,79,138,194,129,52,117,253,124,215,212,96,159,179,245,136,142,35,32,128,71,4,38,15,172,130,200,100,37,200,19,130,166,126,234,154,250,163,203,43,32,171,148,58,139,238,172,154,8,88,245,21,19,70,6,98,197,168,46,237,250,251,97,250,159,146,62,171,228,33,13,75,191,223,140,90,201,151,239,52,163,161,174,114,165,183,182,162,214,44,174,70,108,24,145,211,136,42,22,73,128,210,177,255,121,26,142,253,190,159,150,173,194,128,72,152,119,232,179,69,56,159,207,111,80,224,105,82,222,178,
|
||||
32,88,110,66,59,51,15,143,26,33,106,192,0,236,133,212,155,250,143,246,216,238,55,147,157,80,222,60,66,21,74,135,206,38,10,193,242,107,180,2,96,18,182,219,32,213,22,135,180,108,240,202,173,80,172,98,105,67,98,5,31,193,139,87,49,19,66,135,54,72,88,253,237,55,164,233,112,220,183,99,83,255,249,250,247,197,135,235,215,95,110,139,122,134,92,212,151,55,175,80,161,184,30,238,191,47,227,239,98,119,26,198,110,110,94,54,143,183,219,118,85,118,135,95,211,120,104,187,185,124,187,157,53,255,0,161,137,156,17,
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue