I am new to SVN. I have a lot of old, unused files that I want to archive or copy to a different repository or directory. How can I archive these files and keep the history of their revisions?
Hi,
Anyone knows about some free open source php library or framework to implement following service independently.
Email Marketing ,
Which include following service in that ,
send email ,
choose email template ,
Choose email template from local drive ,
text template ,
Account management like History email list , and more ,
Payment Integration ,
Thanks
bharanikumar
a schema change was made on a production server that generates feeds to our parters, removing two bytes from a field, which clobbered our partner's jobs.
my boss wants a notification mechanism to propagate schema changes to everyone, but instead of writing something, id like to get the schema change history report exposed on sharepoint somehow.
is that possible?
thanks very much for your help
drew
Hello!
I have problems with Darwin Streaming server 5.5.5 on Debian.
When i'm trying to open some stream, for ex. rtsp://sample.com/sample_100kbit.mp4 player reports it can't load stream and breaks connection.
"Access History" section reports file was requested, so, at least initial connection is working, but nothing more.
What can be wrong and what to check?
git-rebase man page mentions -X<option> can be passed to git-merge. When/how exactly?
I'd like to rebase by applying patches with recursive strategy and theirs option (apply whatever sticks, rather than skipping entire conflicting commits). I don't want merge, I want to make history linear.
I've tried:
git rebase -Xtheirs
and
git rebase -s 'recursive -Xtheirs'
but git rejects -X in both cases.
Hi,
I am deploying a desktop application using AIR, and I would like to store some user-specific data on the machine such as a history of his entries. Is this possible? Where can I learn more about this?
Thanks,
Mike
I love the GNU readline library, but since it is under a GPL license, I can not use it for commercial software. Do you know alternatives ? I only need the commandline history and auto completion (of customer keywords and files) features. I found this link :
http://github.com/antirez/linenoise
which seem to be a good starting point, but does not have auto completion.
Any suggestions, surely this must be a common task for people building interactive shell commands.
I was hoping that I could pass a DateVersionSpec into VersionControlServer.DownloadFile() but it doesn't work. It tells me that the item doesn't exist at that version, even though the file existed in source on the date passed.
Do I need to query the Item history just so I can figure out what version the file was at on the date in question? Use QueryHistory(...) method?
Assume my git repository has the following structure:
/.git
/Project
/Project/SubProject-0
/Project/SubProject-1
/Project/SubProject-2
and the repository has quite some commits. Now one of the subprojects (SubProject-0) grows pretty big, and I want to take SubProject-0 out and set it up as a standalone project. Is it possible to extract all the commit history involving SubProject-0 from the parent git repository and move it to a new one?
I'm considering writing a console application in C# and I want to incorporate history, completion and command line editing features something like GNU readline (but not necessarily as extensive as that!)
Is there an existing library for .net which provides this type of functionality? I guess one option would be to use interop services to call GNU readline. But is there a native option?
Paul.
A feature of a forms based application I am developing allows the user to search through a history of records.
The user can search by name, by number, and between dates, and populate the results in a datagridview control.
However, as the form will be used to search for previous records. The ability for the user to select future dates is not required.
Is there a way to prevent the user from selecting future dates, or even grey the future dates out?
I have two existing subversion repositories on different hosts (host-a and host-b) and I'd like to copy one directory from repo A to repo B.
Basically https://host-a/repo/some/path/moduleA should be copied to https://host-b/repo/some/other/path/moduleA. All the history should be preserved and existing data in host-b should be preserved.
The two repositories do not have any conflicting directory hierarchies. The repositories do not share common ancestry.
I want to list software architectures from which were used in history to which are using now. As far as I know, they're client-server, cloud-computing,...But I cannot get a full list of them. Can you please give me this:
Software architecture, years active, architecture that replaced it and the reason of replacement.
A little detailed explanation will be much appreciated.
Thank you so much.
well i like this nice of code right here it seems to work awsome but i cant seem to add any more directories to it
DirectoryInfo dir = new DirectoryInfo(@"C:\temp");
foreach(FileInfo files in dir.GetFiles())
{
files.Delete();
}
foreach (DirectoryInfo dirs in dir.GetDirectories())
{
dirs.Delete(true);
}
i would also like to add in special folders aswell like History and cookies and such how would i go about doing that (i would like to include atleast 4-5 different folders)
I'm hunting a Javascript error related to form submission (more importantly preventing it). I see the error appear in the Web Inspector but it disappears immediately since the form submits and refreshes the page. Is there a console history or scrollback? How can I see what the error is?
How do I disable the backspace button when input checkboxes are focused on in jQuery? When checkboxes are focused on and I press backspace (keycode=8) the browser thinks I'm trying to go back a page and uses backspace as a history.go(-1) command.
On a project I'm working on, I'm trying to make it accept user commands and provide history with the up arrow. I'm aiming to keep this project free of dependencies, and I don't want to have to require people to also install the readline development files just to compile my project. Does anyone know of a simple drop-in replacement for GNU Readline that provides only simple functionality?
What I want is similar to this question. However, I want the directory that is split into a separate repo to remain a subdirectory in that repo:
I have this:
foo/
.git/
bar/
baz/
qux/
And I want:
foo/
.git/
bar/
baz/
quux/
.git/
qux/ # Note: still a subdirectory
How to do this in git?
I could use the method from this answer if there is some way to move all the new repo's contents into a subdirectory, throughout history.
Hi
Does SQUID (for Windows specifically) it have an interface for reviewing internet usage?
More specifically if I wanted a way to track, for my PC at work, it's internet usage on a per application/service basis (e.g. browser vs calendar synch service etc), would SQUID for Windows help me here? (i.e. would it act as a transparent proxy for anything running on my PC, then keep a history of internet usage against which process requested the access)
I'm looking for an online, collaborative schema designer.
It's important that it can handle revisions (history of changes).
This looks cool, and I could host it on a server - but doesn't look like it would handle multi-user:
http://ondras.zarovi.cz/sql/demo/
Currently we're doing a lot of design collaboration on google docs/spreadsheets. Has anyone had any success using google spreadsheet for schema design? Even if there were just a gadget for drawing lines/connections, I might give Google Docs a shot.
I have this setup
class User {
Date lastLogin
// logins is a history of logins
static hasMany = [logins : Date]
def setLastLogin(Date date) {
if (date) {
lastLogin = date
addToLogins(date)
}
}
}
GORM is generating a table MEMBER_LOGINS which currently looks like this:
USER_ID, LOGINS
Instead I would like
USER_ID, DATE
I tried adding a mapping in User
static mapping = {
logins column: 'date';
}
But that just changed the foreign key so i now have
DATE, LOGINS
How can I change the LOGINS column?
Thanks!
hi
when I append jquery datepicker to my asp textbox, by clicking on it, my browser auto shows the history of the dates i typed in a dropdownlist. Can I prevent this?
Set textbox to readonly isn't a good idea because asp.net doesn't read the values from read only fields in code behind.
any other ideas?
thank you and best regards.
marc
hey guys
its been 4 years im developing a php project with my friends as a team .
but in our history we did not use any opensource project management tool
actualy im the leader of this project but never learnt how to manage a project with svn tools
everytime i went for svn and management tools , i confused more and more
where should i begin
and what steps should i take to be a pro leader and manage a opensource project perfectly