aboutsummaryrefslogtreecommitdiff
path: root/webgenerator
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-12-19 15:07:01 -0800
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-12-19 15:07:01 -0800
commit88d27da569789b80844418af4d941c7a93299311 (patch)
treec221062b2e3c7179525dfacdf4aec7ab71677549 /webgenerator
parent359d108e282e8bbfa5e87b2e6099f89ac706240e (diff)
downloadKotlinForForge-88d27da569789b80844418af4d941c7a93299311.tar.gz
KotlinForForge-88d27da569789b80844418af4d941c7a93299311.tar.bz2
KotlinForForge-88d27da569789b80844418af4d941c7a93299311.zip
Update 1.0.0
Diffstat (limited to 'webgenerator')
-rw-r--r--webgenerator/WebGenerator.kt76
1 files changed, 0 insertions, 76 deletions
diff --git a/webgenerator/WebGenerator.kt b/webgenerator/WebGenerator.kt
deleted file mode 100644
index 29150f0..0000000
--- a/webgenerator/WebGenerator.kt
+++ /dev/null
@@ -1,76 +0,0 @@
-@file:JvmName("WebGenerator")
-
-package thedarkcolour.kotlinforforge.webgenerator
-
-import org.apache.commons.io.FileUtils
-import org.jsoup.Jsoup
-import org.jsoup.nodes.Attribute
-import org.jsoup.nodes.Attributes
-import org.jsoup.nodes.Document
-import org.jsoup.nodes.Element
-import org.jsoup.parser.Tag
-import java.io.File
-import java.nio.charset.Charset
-
-fun main() = run()
-
-fun run() {
- // val v = Files.newDirectoryStream(File("C:\\Things\\mods\\thedarkcolour.kotlinforforge\\thedarkcolour\\thedarkcolour.kotlinforforge").toPath())
- // val mavenMetadata = File("C:\\Things\\mods\\thedarkcolour.kotlinforforge\\thedarkcolour\\thedarkcolour.kotlinforforge\\maven-metadata.xml")
-
- //val webHtml = Jsoup.parse(File("..\\KotlinForForge\\thedarkcolour\\thedarkcolour.kotlinforforge\\web.html"), null).childNodes()[0]
- //webHtml.childNodes()[2].childNodes()[5].childNodes().filterIsInstance<Element>().forEach(::println)
-
- val thedarkcolour = File("C:\\Things\\mods\\KotlinForForge\\thedarkcolour")
-
- val web = File("C:\\Things\\mods\\KotlinForForge\\thedarkcolour\\web.html")
- val webHtml = Jsoup.parse(web, "UTF-8")
-
- for (file in thedarkcolour.listFiles()!!) {
- if (file.isDirectory) {
- val pre = webHtml.getElementsByAttributeValue("href", "../index.html")
- .parents()
- .first()
- val attr = Attributes().put(Attribute("href", file.absolutePath.replace("${thedarkcolour.absolutePath}\\", "") + "/web.html"))
-
- if (pre.getElementsByAttributeValue("href", attr.get("href")).isEmpty()) {
- pre.appendChild(Element(Tag.valueOf("a"), webHtml.baseUri(), attr))
-
- val innerWeb = File("${file.absolutePath}\\web.html")
- innerWeb.createNewFile()
- }
- //webHtml.allElements.find {
- // it.tagName() == "body"
- //}!!.allElements.find {
- // it.tagName() == "pre"
- //}!!.allElements.find {
- // print(it.attr("href"))
- // it.className() == ""
- //}//.appendChild((Element(Tag.valueOf("a"), "hi")))
- }
- }
-
- FileUtils.writeStringToFile(web, webHtml.outerHtml(), Charset.defaultCharset())
-
- /*
- <body>
- <h1>Index of /thedarkcolour.kotlinforforge/</h1>
- <hr>
- <pre><a href="../web.html">../</a>
- <a href="1.0.0/web.html">1.0.0</a>
- <a href="maven-metadata.xml">maven-metadata.xml</a>
- <a href="maven-metadata.xml.md5">maven-metadata.xml.md5</a>
- <a href="maven-metadata.xml.sha1">maven-metadata.xml.sha1</a>
- </pre>
- <hr>
- </body>
- */
-}
-
-fun getPre(doc: Document): Element {
- return doc.getElementsByAttributeValue("href", "../web.html")
- .parents()
- .first() ?: doc.getElementsByAttributeValue("href", "../index.html")
- .parents()
- .first()
-} \ No newline at end of file