Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vojtechvitek/conetserv
NPAPI plugin + jQuery UI enabling network tools into the browsers
https://github.com/vojtechvitek/conetserv
Last synced: about 1 month ago
JSON representation
NPAPI plugin + jQuery UI enabling network tools into the browsers
- Host: GitHub
- URL: https://github.com/vojtechvitek/conetserv
- Owner: VojtechVitek
- License: gpl-2.0
- Created: 2009-11-23T11:02:20.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-09-22T08:42:00.000Z (about 14 years ago)
- Last Synced: 2024-04-18T07:25:03.052Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.04 MB
- Stars: 14
- Watchers: 9
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- License: COPYING.txt
Awesome Lists containing this project
README
CoNetServ (Complex Network Services)
====================================
**Extension that integrates network tools into the browser.**Quick links
-----------* `Wiki pages `_
* `Product overview `_ and `screenshots `_
* `Report bug `_ or `send us idea `_ (alternativelly `[email protected] `_)
* `Contribute `_ (suggested donation: $3.00)
* Current `TODO list `_ and `future plans `_
* Current `CHANGELOG `_
* List of `AUTHORS `_.. image:: http://github.com/V-Teq/CoNetServ/raw/master/extension/images/icon128.png
Directory structure
-------------------
==================== =======================================
CMakePlugins/ CMake plugins
extension/ Extension source code
extension/chrome/ Google Chrome (Chromium) specific files
extension/firefox/ Mozilla Firefox specific files
extension/opera/ Opera specific files
doc/ Documentation (Doxygen)
plugin/ NPAPI-based plugin source code
plugin/apple/ Apple (Darwin) specific files
plugin/unix/ Unix-like specific files
plugin/win/ Windows specific files
==================== =======================================Building on Unix-like systems
-----------------------------
a) Debug mode::
$ mkdir -p build/$(uname)/ && cd build/$(uname)
$ cmake ../../
$ makeb) Release mode
::
$ mkdir -p build/$(uname)/ && cd build/$(uname)
$ cmake -DCMAKE_BUILD_TYPE=Release ../../
$ make
$ make PackagesNOTE: (building 32bit plugin on 64bit system)
$ cmake -DCMAKE_C_FLAGS=-m32 -DARCH=x86 -DCMAKE_BUILD_TYPE=Release ../../NOTE 2: You will need crxmake.py script for generating debug
Chrome extension .crx.
You will probably need to run:
$ chmod +x ./crxmake.py
$ PATH="$PATH:$(pwd)"
# or edit your .bashrc file to add the path during shell init
Download crxmake.py from http://github.com/Constellation/crxmake.Building on Windows
-------------------
1. Run CMake (download `CMake `_)
2. Set source code path
3. Set build path (eg. source code path + /build/Windows)
4. Select build typea) Debug mode (development)
Default
b) Release mode (exports optimized shared library without debug messages)
Set CMAKE_BUILDTYPE variable to "Release" value
5. Set XULRunnerSDK_INCLUDE_DIR (download `XULRunner SDK `_)
6. Click to Configure button
7. Select generator, eg. Visual Studio 2008 (64bit)
8. Click to Configure button again
9. Click to Generate button
10. Open generated project file and you are ready to develop