Cooliris kit for ipad ComicFlow application [duplicate] - ipad

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Difficulty implementing ComicFlow project
How to get Cooliris tool kit for ComicFlow application in ipad?I tried to create a terminal to get this but it says ComicFlow folder is not empty.what should i do to get the Cooliris toolkit.
ast login: Fri Aug 19 10:26:22 on console
admins-Mac-mini:~ admin$ hg clone https://code.google.com/p/comicflow/
warning: code.google.com certificate with fingerprint bf:49:43:68:ed:54:3c:54:fb:19:2f:97:9b:5f:42:e4:3a:79:ae:dd not verified (check hostfingerprints or web.cacerts config setting)
destination directory: comicflow
requesting all changes
adding changesets
adding manifests
adding file changes
added 7 changesets with 56 changes to 48 files
updating to branch default
warning: cooliris-toolkit.googlecode.com certificate with fingerprint ed:19:7c:b9:a3:48:27:93:72:74:43:db:26:40:af:e0:7a:90:1c:97 not verified (check hostfingerprints or web.cacerts config setting)
cloning subrepo Cooliris-ToolKit from https://cooliris-toolkit.googlecode.com/hg/
requesting all changes
adding changesets
adding manifests
adding file changes
added 17 changesets with 381 changes to 356 files
cloning subrepo Cooliris-ToolKit/DAVServer/cocoahttpserver from https://code.google.com/p/cocoahttpserver/
abort: No such file or directory
admins-Mac-mini:~ admin$
Thanks in advance.

Install mercurial source code management software and open a terminal. Then enter the command
hg clone https://code.google.com/p/comicflow/
When you have ComicFlow source code, open the project and launch the application on your device just as you were in development.

Related

plasticSCM upgrade - Client.conf root element is missing

I updated PlasticSCM to the latest version (8.0.16). Now when I start plastic I get that error: the client configuration file "client.conf" contains error: Root element is missing.
Everything worked correctly before updating. I tried reinstalling PlasticSCM and remove client.conf file but it did not help the client still does not start.
The Plastic SCM client.conf file is used by both the GUI and the CLI to store the main user preferences.
I tried reinstalling PlasticSCM and remove client.conf file but it did
not help the client still does not start.
It's ok to remove it, but additionally, you need to reconfigure the Plastic SCM Client. Please run the following command to do it.
plastic --configure
or run the "Client configuration wizard".
If you keep facing the problem I recommend you to open a support ticket -> https://www.plasticscm.com/support. The team will help you to fix the problem.

IOS/Xcode/Git: Suddenly can't commit changes withunable to auto-detect email address error [duplicate]

This question already has answers here:
Xcode and Git Source Control : “The working copy XXXXX failed to commit files”
(5 answers)
Closed 4 years ago.
out of the blue, after having commited changes to my local depository countless times in the past, Xcode is not allowing me to commit with the following error message:
The working copy “MYAPPNAME” failed to commit files.
*** Please tell me who you are.
Run
git config --global user.email "you#example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'myuserid#mycomputername.(none)')
I see that you can set the email address in the command line but I'm wondering what could have caused this error to suddenly appear. Also, since I am in the habit of pushing changes to a remote repo, I'm wondering if any changes I make now on my Mac will create problems syncing to that repo.
Thanks in advance for any suggestions on what might have caused this error to suddenly occur and the safest approach to dealing with it.
As I mentioned here, that means your global settings no longer includes user.name/user.email.
That does not affect your past commits (which have been pushed): only the ones, that Git does not want to create as long as you haven't entered again your name/email.
Check the result of git config -l --show-origin: one of those file must have changed recently.
Typically:
~/.gitconfig file, or:
$XDG_CONFIG_HOME/git/config
If the environment variable $XDG_CONFIG_HOME has been reset, that might explain why this error message suddenly appears.
This has nothing to do with your username and password for pushing and fetching to a remote.
It’s just a question of the identifying info that git associates with every commit. Without a name and email, you can’t create a commit.
Just do what the message requests and all will be well.

Github -> Azure Deployment: Cant find path

I am trying to deploy a .NET-MVC-application to Azure via Github, but deployment fails with the following error message. What could be the reason for that? It works locally.
WebCompiler: Begin compiling compilerconfig.json
D:\home\site\repository\src\BeYourMarket.Web\Themes\Default\Content\theme.less : WebCompiler error 0: The system cannot find the path specified. [D:\home\site\repository\src\BeYourMarket.Web\BeYourMarket.Web.csproj]
D:\home\site\repository\src\BeYourMarket.Web\Themes\Default\Content\theme.less : WebCompiler error 0: [D:\home\site\repository\src\BeYourMarket.Web\BeYourMarket.Web.csproj]
WebCompiler: Done compiling compilerconfig.json
Failed exitCode=1, command="D:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" "D:\home\site\repository\src\BeYourMarket.Web\BeYourMarket.Web.csproj" /nologo /verbosity:m /t:Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="D:\local\Temp\8d34cc45ff19d01";AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release;UseSharedCompilation=false /p:SolutionDir="D:\home\site\repository\src\\"
An error has occurred during web site deployment
Thank you in advance for any tipps and hints!
This is a current open issue with WebCompiler project. The Azure file system is locked down in ways that your local environment are not. Even though the file exists at the path on the server, the deployment script cannot read it.
In scanning the comments on the Issue (https://github.com/madskristensen/WebCompiler/issues/146), there doesn't seem to be a solution at this time except to pre-compile your CSS and include it in your repository.
In the end I dealt with it the following way:
Install package LessMsbuildTasks
Remove the file (in my case theme.less) from webcompile (right click on that file: Web Compiler - Remove file)
Add Dotless as build action for that file (right click on that file: Properties - Build action)
Commit changes and push
The next two steps are optional:
Put compilerconfig.json on .gitignore
Add that file to Web compiler again (right click on that file: Web Compiler - Compile file)
That way I can still use the constant compiling to develop and push it to my repository to initiate CI on Azure.

Git - fatal: Unable to create '/path/my_project/.git/index.lock': No such file or directory read tree xxxx command returned error: 128

I'm converting my SVN repo into git (bitbucket) following this tutorial: https://www.atlassian.com/git/tutorials/migrating-convert/
But I keep getting this message when runing the command : git svn clone --stdlayout --authors-file=authors.txt --prefix=origin/
The answer is somewhat explained in the comment.
Similar issues are experienced on Windows system due to its
limitations like:
Some of the Windows APIs are limited to 260 symbols for file path name. So git can't create files with names longer than 260 symbols. NTFS file system actually supports longer names (32k).
Windows directory allows Space in between like my folder.
Windows file and folder names that begin or end with the ASCII Space (0x20) are saved without these characters.
Some of the Workarounds are:
Move the git directory closer to the drive, in order to keep the file name within 260 symbols.
Creating the whitespace directory manually using tools like FAR, GnuWinwhich can make a directory
Reference:
Support for Whitespace characters in File and Folder
git svn importing a branch with a trailing space
git checkout error: unable to create file

Git clone error in Xcode

Up until now I've been using Xcode with Subversion for my code repositories with no problem. Now I'm working on a project that uses a Git repository stored at GitHub, so I figured I'd go clone that repository to my local machine and get started.
In Xcode, I add the repository then tell it to Clone -- The machine chews on this for a while, and if I use the Finder I can see the files being placed in the target directory (which is a newly-created, empty directory on my system). After a while though, I get an error message:
fatal: destination path '/Users/myname/Documents/ProjectName' already exists and is not an empty directory.
I have tried this three times now, each time starting with an empty target directory, and it gives the same error message each time, so I know it has to be something I am doing wrong, or have not set up properly.
Thinking that perhaps something was going wrong and the system was trying to do a second clone operation (to a now non-empty directory) I tried canceling and trying a build, but some files are missing from the project -- so not all of it made it down to my system.
My searches on this issue turn up several hits for people doing the clone via command line and showing this error message, but not through the Xcode interface.
Does anyone have any suggestions about what might be going wrong?

Resources