actually, it's not very important that we set which view and which vob?
I mean that I can upload many file from different view and vob? they're also different of vob what i have defined in the @valid_repositories?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It will matter if you want to retrieve the full file - otherwise Codestriker will not be able to know how to get the file contents. If you look at the code, you'll see what commands are executed. Check out lib/Codestriker/Repository/ClearCase*.pm.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Actually, I don't know perl....this language, i can read. but i can't test, ex. i don't know well how to print a string in the cgi....-_-
anyways, i don't understand why they just print the content different? i want to print part of same content like yours.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i found he can find the context of file in the action=view_file
but he can't print next 3 lines or last 3 lines, just like yours....in the action=view (view_topic)
why?
thank u
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
actually, it's not very important that we set which view and which vob?
I mean that I can upload many file from different view and vob? they're also different of vob what i have defined in the @valid_repositories?
It will matter if you want to retrieve the full file - otherwise Codestriker will not be able to know how to get the file contents. If you look at the code, you'll see what commands are executed. Check out lib/Codestriker/Repository/ClearCase*.pm.
Actually, I don't know perl....this language, i can read. but i can't test, ex. i don't know well how to print a string in the cgi....-_-
anyways, i don't understand why they just print the content different? i want to print part of same content like yours.
You can do something like:
print STDERR "here is a string\n";
or
print STDERR "here is another with variable: $variable\n";
for windows, you would do:
print STDERR "here is another with variable: $variable\r\n";
flush STDERR;
then the log file for your web-server should have this message.
You can also just do:
print "here is a string\n";
and this will most likely appear in the output html. You might need to view the html source to see it.
I think i have well set , the addresses of vob-_-
i found he can find the context of file in the action=view_file
but he can't print next 3 lines or last 3 lines, just like yours....in the action=view (view_topic)
why?
thank u