This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
justync7's profile picture

[V0.1] ccSVN (Finally Released!)

Started by justync7, 24 July 2012 - 04:03 AM
justync7 #1
Posted 24 July 2012 - 06:03 AM
EDIT: Big GUI update coming soon ive been testing it on djblocksaway's server and the only thing not done is uploading


ccSVN is a ingame svn server so you can send your friends your programs!

I Post Beta Testing Updates Here:
http://justynthecoder.tumblr.com/

How To Use:

Client:
SpoilerPut the client files on a disk and run the startup on a computer.
Commands:
svnget Usage: svnget <server id>

Server:
SpoilerPut the server files on a disk and run the startup on a computer.
Then, run svnserver and it will create the directory that you put the files in.
The computer will freeze, just reboot it.
Place all the wanted files in the root/svn/trunk directory.
Commands:
svnserver Usage: svnserver

Download:
http://dl.dropbox.co...nt%2BServer.zip
Noodle #2
Posted 24 July 2012 - 08:41 AM
ccSVN.. Like Pastebin but multiple programs.. Literally a SVN that downloads the files all together..?
I assume yes.
I like it!
Left4Cake #3
Posted 24 July 2012 - 02:15 PM
Wait. Dose it use HTTPapi or is it an SVN within the Minecraft world?
Cloudy #4
Posted 24 July 2012 - 04:31 PM
Locked as you have nothing to show. Ask for this to be reopened when you have something to release, or create a new thread.
Cloudy #5
Posted 24 July 2012 - 07:43 PM
Unlocked as per authors request.
justync7 #6
Posted 24 July 2012 - 08:05 PM
Yay I finally released it! Wooo!
Noodle #7
Posted 24 July 2012 - 08:11 PM
I see this only works within the game itself not using the Http Api.
justync7 #8
Posted 24 July 2012 - 08:35 PM
Yep, Sadly.. And you cant transfer directorys currently cause i cant figure out how to detect if its a directory or a file…
EDIT: I could make a version that downloads a lua file from a link but not from a svn :/
ciba43 #9
Posted 25 July 2012 - 12:32 PM
Wait. It can transfer files through Rednet?
justync7 #10
Posted 25 July 2012 - 05:12 PM
Yep! Wireless modems.
cant_delete_account #11
Posted 11 September 2012 - 09:35 PM
Yep, Sadly.. And you cant transfer directorys currently cause i cant figure out how to detect if its a directory or a file
EDIT: I could make a version that downloads a lua file from a link but not from a svn :/
Use:

if fs.isDir("dirorfile") then
print("Is a directory!")
else
print("Is a file!")
end