Help:Advice for experienced editors: Difference between revisions

From Path of Exile Wiki
Jump to navigation Jump to search
(Created page based on the community portal)
 
m (Tweak to formatting)
 
(5 intermediate revisions by 2 users not shown)
Line 5: Line 5:
As always, check out [[Path of Exile Wiki:To-do list]] for a list of general to-dos that are being worked on.  
As always, check out [[Path of Exile Wiki:To-do list]] for a list of general to-dos that are being worked on.  


=Advanced information=
==Advanced information==
* Read the [[Path of Exile Wiki:Overview of Modules|overview of modules]] for a deep dive into how the wiki is coded.
* Read the [[Path of Exile Wiki:Overview of Modules|overview of modules]] for a deep dive into how the wiki is coded.
* The information about items, skills, etc. is almost all based on [[Path of Exile Wiki:Cargo|Cargo]].
* The information about items, skills, etc. is almost all based on [[mediawikiwiki:Extension:Cargo|Extension:Cargo]].
* See [[Path of Exile Wiki:PyPoE]] for the bots used to import and update game data.
* See [[Path of Exile Wiki:PyPoE]] for the bots used to import and update game data.
* See [[Path of Exile Wiki:Data query API]] for information on how to programmatically query and edit the wiki.
* See [[Path of Exile Wiki:Data query API]] for information on how to programmatically query and edit the wiki.


=Advanced editing tasks=
==Advanced editing tasks==
* Browse [[:Category:Maintenance]] and look for pages that need more complicated repairs.
* Browse [[:Category:Maintenance]] and look for pages that need more complicated repairs.
* When content is duplicated in multiple articles, put it in one place using [[mediawikiwiki:Extension:Labeled_Section_Transclusion|Labeled Section Transclusion]].
* When content is duplicated in multiple articles, put it in one place using [[mediawikiwiki:Extension:Labeled_Section_Transclusion|Labeled Section Transclusion]].
Line 17: Line 17:
* Translate pages into other languages. See the [https://help.gamepedia.com/Translation_guidelines Translation guidelines].
* Translate pages into other languages. See the [https://help.gamepedia.com/Translation_guidelines Translation guidelines].


=Infrastructure improvement tasks=
==Infrastructure improvement tasks==
* Port existing templates to lua modules.
* Port existing templates to lua modules.


=Creating uncompressed DDS files from the ggpk for the wiki=
==Creating uncompressed DDS files from the ggpk for the wiki==
{{Warning|HERE BE DRAGONS}}
You need [https://github.com/zao/ooz ooz]. Pre-complied files can be found [http://www.acc.umu.se/~zao/poe/ here].
You need [https://github.com/zao/ooz ooz]. Pre-complied files can be found [http://www.acc.umu.se/~zao/poe/ here].


[https://discord.com/channels/174993814845521922/175290321695932416/875839400016220160 Optional step]: Generate a table of content of the game files: {{code|bun_extract_files list-files "(location of the ggpk).ggpk" > output.txt}}
[https://discord.com/channels/174993814845521922/175290321695932416/875839400016220160 Optional step]: Generate a table of content of the game files: <code><nowiki>bun_extract_files list-files "(location of the ggpk).ggpk" > output.txt</nowiki></code>


Extract files: {{code|bun_extract_files extract_files "(location of the ggpk).ggpk" "Extract location e.g. C:\user\Desktop" "Filepath of the file inside ggpk"}}
Extract files: <code><nowiki>bun_extract_files extract_files "(location of the ggpk).ggpk" "Extract location e.g. C:\user\Desktop" "Filepath of the file inside ggpk"</nowiki></code>


After extracting the dds from ggpk. Convert the dds to png with any software you like.
After extracting the dds from ggpk. Convert the dds to png with any software you like.


[[Category:Community]]
[[Category:Help]]

Latest revision as of 15:29, 3 December 2021

Thank you for helping out with the Path of Exile Wiki!

If you're reading this article, then you should already have learned the basics about wiki editing in general and about Path of Exile editing in particular. This article will discuss more advanced topics.

As always, check out Path of Exile Wiki:To-do list for a list of general to-dos that are being worked on.

Advanced information

Advanced editing tasks

  • Browse Category:Maintenance and look for pages that need more complicated repairs.
  • When content is duplicated in multiple articles, put it in one place using Labeled Section Transclusion.
  • Look for ways to replace hardcoded lists and tables with Cargo queries that retrieve the same information.
  • Translate pages into other languages. See the Translation guidelines.

Infrastructure improvement tasks

  • Port existing templates to lua modules.

Creating uncompressed DDS files from the ggpk for the wiki

You need ooz. Pre-complied files can be found here.

Optional step: Generate a table of content of the game files: bun_extract_files list-files "(location of the ggpk).ggpk" > output.txt

Extract files: bun_extract_files extract_files "(location of the ggpk).ggpk" "Extract location e.g. C:\user\Desktop" "Filepath of the file inside ggpk"

After extracting the dds from ggpk. Convert the dds to png with any software you like.