openbravo 3.0 erp - Can any one have source code link of openbravo - openbravo

I want to do setup of Openbravo in my local . I want java source code link and all required information for set up . Please guide/Help me .

Anand,
I'm not sure whether OpenBravo has been willing to share their source. The project has been around awhile. Perhaps an older version is available. Try sourceforge: https://sourceforge.net/projects/openbravo/files/?source=navbar

You can follow this link Setup_Eclipse_Openbravo to setup locally.
The source can be cloned using the below command.
hg clone https://code.openbravo.com/erp/devel/main openbravo
Note: You should have a look at the Development Stack first.

please use the git command
#git clone https://gitlab.com/openbravo/product/openbravo
or Download from https://gitlab.com/openbravo/product/openbravo

Related

How do I manually install older versions of unity (2019) for Linux (Arch)

I am aware of this page: https://unity3d.com/get-unity/download/archive but the downloads are only for windows and mac and despite having it installed, the "unity hub" button does nothing. I have found places to download even older versions like 2018 but I need version "2019.2.5f1". Can I download and use the mac version? Is there somewhere I can download this compiled for Linux without using unity hub? Thanks for any help.
The UnityHub link will have a version hash in it which is unique across platforms. With that hash, you can build the Linux version download URL yourself.
In your case, you need 2019.2.5f1, which gives you the UnityHub link unityhub://2019.2.5f1/9dace1eed4cc
You can download the tarball at the following URL:
https://download.unity3d.com/download_unity/9dace1eed4cc/LinuxEditorInstaller/Unity.tar.xz
The unity-editor package is a good one to modify the PKGBUILD file for if you'd like to install an arbitrary version as a proper package.
Clone the project
Tweak the PKGBUILD version and hash to the one you want
Run makepkg -g to generate the checksum for the new tarball
Insert the new checksum into the PKGBUILD
Run makepkg -p PKGBUILD to compile the package
Run sudo pacman -U ./unity-editor-${pkgversion}.pkg.tar to install your newly built package.
If anyone is having this issue and want to download older versions from unityhub, there is solution that worked for me :
Go to unity download archive
Copy redirection link from the green button (you can right click it and select "Open Link in new tab", and then copy it from here)
Once you have the link, open up your terminal and go to location in which you have UnityHub.AppImage
Simply use this command : ./UnityHub.AppImage link where link is what you copied (for example ./UnityHub.AppImage unityhub://2019.3.13f1/d4ddf0d95db9 to download 2019.3.13 version of uinity)
I have two of the hashes:
89d6087839c2 Unity 2019.3.1f1
b9898e2d04a4 unity 2019.2.16f1

how I can build mozilla projects

I found https://github.com/mozilla/gecko-dev/tree/master/b2g Mozilla repositories where have the moz.build file, can anybody help, how I can build this plugin. What are tools I need use for build project with use moz.build ?
thank you
If you are trying to build B2G (Firefox OS), then you should follow the procedure documented here. But I have to advise you that you're using the wrong repository if that's your objective, since the correct one for B2G should be this.
In any case, you would need to install the build prerequisites for Linux, as described here, by using the following command:
wget -O bootstrap.py https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py && python bootstrap.py
Now, if you really wanted to just build the b2g folder in the repository you linked, once you've downloaded and installed the prerequisites, simply issue the following command from the root of gecko-dev:
./mach build b2g
This will invoke mach, the build system Mozilla uses, to build the code in the b2g directory.

Where is the calabash_steps.rb file?

I am new to calabash and working with it since past few months. When I execute the pre-defined step I get below path "# calabash-cucumber-0.11.4/feature/step-definitios/calabash-steps.rb"
I know its associated with my workspace somehow but I am not able to get this calabash-steps.rb file (neither in my system nor on Google)
Can someone help me in getting this file. I just wanna see how the implementation is done for the step.
A lot of thanks in advance!
Those files will be in the gems library itself. If you are on a mac, open a terminal and type
which calabash-android
The output will be a file path to where the gem is installed. If you look there there will be the files you are looking for.
If you are on windows you can run
gem env
and it will output a bunch of info and the GEM PATH section is the bit you want.
Mine looks like this
GEM PATHS:
C:/Ruby193/lib/ruby/gems/1.9.1
If you're getting started writing custom steps then you should check out the docs - https://github.com/calabash/calabash-ios/wiki/03-Writing-custom-steps
The file can be found in the Calabash iOS repo.
One of the of the problems with using predefined steps is that you can't edit them (easily).
If you want to explore the predefined steps (edit them, set break points, etc.), I suggest copying the calabash_steps.rb file into your local features/step_definitions directory and updating your features/support/env.rb file to not load the predefined steps from the gem.
This code comment in the features explains how to not include the predefined steps shipped with the Calabash gem.
If you use bundler + Gemfile (which we strongly recommend), you can find where the gem is installed:
$ bundle show calabash-cucumber
As an aside, you should update to the most recent version of Calabash iOS (0.14.3 as of this writing).

Haxelib Dependency to a git library

I would like to know if that's possible to declare a dependency to a library via GIT. My usecase is simple, I have some tools, that I would like to share between my projects, but I don't want to add them to haxelib (because this tools are not really interesting for someone else). Otherwise, I would like that people who will install my lib, get my tools too (without the need to use manually haxelib git ....).
Is it possible ? (I didn't read anything about that in documentation)
This is currently not supported in Haxelib, though it would be great to see, and not too hard to implement. If you're interested in working on Haxelib, it's not too hard, open an Issue on the Haxelib Github project and perhaps we can help you figure out how to contribute.
One alternative if you need a workaround is to create a "run" script, so you can do:
# Run the project's run.n file
haxelib run mylib
# Your "run.n" file could have a "setup" command that runs
# the "haxelib git" commands for the user
haxelib run mylib setup
It's a bit of a hack, but it could work in the interim. See http://haxe.org/doc/haxelib/using_haxelib#runnable-project for more info on how to have a run script for your haxelib.
As of 2016, this is now natively supported by Haxelib. You can see the PR here.
As mentioned in the PR, you can use the one of these two:
haxelib git:<url> (similar to cloning the git repository).
haxelib git:<url>#commit-ish (clones to a specific commit, specify the hash.
Shameless plug, BUT you can checkout my http://lib.haxe.org/p/hxmlinstall/
1. Add -lib hxmlinstall to your hxml.
2. Annotate your tools like so
#git https://github.com/you/tools commithash
-lib forkedlib:git
On build you will be warned if your lib repository is not on specified %commithash%
Run haxelib run hxmlinstall to install / pull / update all dependencies

How to download this source code?

I want to download the source code from here: https://github.com/vimeo/vimeo-php-lib
I know I should do something like this on my Ubuntu 10.10 terminal:
git clone git://******.git
But I don't know the details. Where can I find the git://******.git?
Its written on that Url itself: Click on Git Read-only
git://github.com/vimeo/vimeo-php-lib.git
Otherwise, if you don't intend to do further development, fork or contribute and just want to see the source code, you can also download as .ZIP or .TAR.GZ from the Downloads button.

Resources