-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Corrected : - Some fallback in language xml - Fallback function (problem with standard mix not founding some picture) * Added : - Possibity to "Fixe" a Size by media in Standard profil with : <Target_Image_Width> and <Target_Image_Height> - Running on 2 servers now : Mirror and main server - New MIX Possibilty : "Text" - rotation GDI Function with <Target_Rotation> directly in the Element. - <source_Origin> can be put to "genre" Don't forget to see the Wiki : https://github.com/Universal-Rom-Tools/Universal-XML-Scraper/wiki/%5BTUTO%5D-Making-a-MIX-Template
- Loading branch information
1 parent
a070199
commit a46024f
Showing
23 changed files
with
2,117 additions
and
4,117 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
REQUETE dedoublonnage langue | ||
|
||
|
||
Verif doublon : | ||
|
||
SELECT COUNT(*) AS nbr_doublon, `source`, `langue` | ||
FROM `translate` | ||
GROUP BY `source`, `langue` | ||
HAVING COUNT(*) > 1 | ||
|
||
Suppression doublon | ||
|
||
DELETE t1 | ||
FROM `translate` AS t1, `translate` AS t2 | ||
WHERE t1.id > t2.id | ||
AND t1.`source` = t2.`source` | ||
AND t1.`langue` = t2.`langue` | ||
AND t1.`dest` = '' | ||
|
||
|
||
|
||
REQUETE dedoublonnage Romsgroups | ||
|
||
CREATE TABLE RomsGroups2 ( | ||
id int(11) unsigned NOT NULL AUTO_INCREMENT, | ||
rom_id int(11) unsigned NOT NULL, | ||
group_id int(11) unsigned NOT NULL, | ||
datesupression datetime NOT NULL, | ||
usersupression int(11) unsigned NOT NULL, | ||
PRIMARY KEY (id) | ||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | ||
INSERT INTO RomsGroups2 (rom_id,group_id) SELECT distinct rom_id , group_id FROM `RomsGroups`; | ||
DROP TABLE RomsGroups; | ||
RENAME TABLE RomsGroups2 TO RomsGroups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.