Jump to content
Ketarin forum

floele

Administrators
  • Posts

    1,629
  • Joined

  • Last visited

Everything posted by floele

  1. Yeah...this is somewhat a limitation Why not name it "Torrent Episode Downloader (TED)"?
  2. Works fine for me. Can you reproduce that?
  3. Well, I suppose it comes down to trial and error. Usually it's easy to guess, in this case however, there is a whole lot of cryptic POST data being created (some Java based form manager probably). You can start with submitting all post data, and then remove one at a time until it doesn't work anymore and you have found the minimum of data you have to submit. @FranciscoR: Why do you actually want to edit the XML that often?
  4. Sure, use this one: <?xml version="1.0" encoding="utf-16"?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="3801febc-881d-4302-bc66-f4fd0412bbd5"> <DownloadBeta>Default</DownloadBeta> <DownloadDate xsi:nil="true" /> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator /> <CanBeShared>true</CanBeShared> <ShareApplication>false</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <Variables> <item> <key> <string>UrlOfForm</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>Java SE Development Kit \(JDK\).+?"(https://.+?)"</Regex> <Url>http://java.sun.com/javase/downloads/index.jsp</Url> <Name>UrlOfForm</Name> </UrlVariable> </value> </item> <item> <key> <string>ActionUrl</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>action="(.+?)"</Regex> <Url>{UrlOfForm}</Url> <Name>ActionUrl</Name> </UrlVariable> </value> </item> <item> <key> <string>FinalUrl</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>value="(http.+?)"</Regex> <PostData>VVA_KylIohiUumSjApgfWEOPzGxZ=Windows&VVA_xfqhKzkIkArSAZZmOxradlbb=Multi-language&ProductUUID=%7bProductUUID%7d&LICENSE-%7bProductUUID%7d=on</PostData> <Url>{ActionUrl}</Url> <Name>FinalUrl</Name> </UrlVariable> </value> </item> <item> <key> <string>ProductUUID</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>name="ProductUUID" value="(.+?)"/></Regex> <Url>{UrlOfForm}</Url> <Name>ProductUUID</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <Category /> <SourceType>FixedUrl</SourceType> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated xsi:nil="true" /> <TargetPath>c:\temp\</TargetPath> <FixedDownloadUrl>{FinalUrl}</FixedDownloadUrl> <Name>Java (JDK)</Name> </ApplicationJob> </Jobs>
  5. So...assuming you have the latest beta, you can do this: The following XML will do the job: <?xml version="1.0" encoding="utf-16"?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="3800febc-881d-4302-bc66-f4fd0412bbd5"> <DownloadBeta>Default</DownloadBeta> <DownloadDate xsi:nil="true" /> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator /> <CanBeShared>true</CanBeShared> <ShareApplication>false</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <Variables> <item> <key> <string>UrlOfForm</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>Java SE Runtime Environment \(JRE\).+?"(https://.+?)"</Regex> <Url>http://java.sun.com/javase/downloads/index.jsp</Url> <Name>UrlOfForm</Name> </UrlVariable> </value> </item> <item> <key> <string>ActionUrl</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>action="(.+?)"</Regex> <Url>{UrlOfForm}</Url> <Name>ActionUrl</Name> </UrlVariable> </value> </item> <item> <key> <string>FinalUrl</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>value="(http.+?)"</Regex> <PostData>VVA_CGpcrYAOYRSioFdZOIihIJJJ=Windows&VVA_EZgJuGXIecpyhSdemJBAOFSk=Multi-language&ProductUUID=%7bProductUUID%7d&LICENSE-%7bProductUUID%7d=on</PostData> <Url>{ActionUrl}</Url> <Name>FinalUrl</Name> </UrlVariable> </value> </item> <item> <key> <string>ProductUUID</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>name="ProductUUID" value="(.+?)"/></Regex> <Url>{UrlOfForm}</Url> <Name>ProductUUID</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <Category /> <SourceType>FixedUrl</SourceType> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated xsi:nil="true" /> <TargetPath>c:\temp\</TargetPath> <FixedDownloadUrl>{FinalUrl}</FixedDownloadUrl> <Name>Java (JRE)</Name> </ApplicationJob> </Jobs> PS: Did you know, that you don't have to export an application in order to get the XML? Just use Ctrl+C in Ketarin and then Ctrl+V in any text editor.
  6. I'll come up with something crazy tomorrow. Stay tuned
  7. Here's a sample (requires the latest build): <?xml version="1.0" encoding="utf-16"?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="8dc2e22f-169a-4dd0-bac5-b3ca38956de6"> <DownloadBeta>Default</DownloadBeta> <DownloadDate xsi:nil="true" /> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator /> <CanBeShared>true</CanBeShared> <ShareApplication>false</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <Variables> <item> <key> <string>url</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>ResponseUri: ([^\s]+)</Regex> <PostData>id=140</PostData> <Url>http://en.totalcmd.pl/gets.php?serwer=1</Url> <Name>url</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <Category /> <SourceType>FixedUrl</SourceType> <PreviousLocation>h:\Setup\wlx_csv.zip</PreviousLocation> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated>2009-03-19T19:57:56.6664692+01:00</LastUpdated> <TargetPath>h:\Setup\</TargetPath> <FixedDownloadUrl>{url}</FixedDownloadUrl> <Name>Total Commander</Name> </ApplicationJob> </Jobs>
  8. Erm...no one noticed that you can actually rename variables already? F2 is your friend.
  9. @FranciscoR: This one is actually still not possible to download. I need to workaround one more limitation.
  10. Uploaded a new version again
  11. An exit code could be a possibility. 0 = OK is the default exit code, so let's use "1" for error and abort.
  12. FTP is slower, usually. Requires login. Firefox will do that as well.
  13. No, this link will download 1.0.4. That is, if you download using your web browser.
  14. Notice: Updated the beta version now.
  15. Nope, it would not. Megaupload and others still use captchas, and Ketarin can't solve them.
  16. Good to have such a list...what is 9 and 10?
  17. Could you give me a screenshot of the dialog which contains the error data?
  18. This would basically mean the possibility to submit POST data along with URLs. Not sure how much of importance I should assume for that feature.
  19. Will fix that in the next revision.
  20. Well, for now you can just disable the option again
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.