CoNetServ
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:NPAPI plugin + jQuery UI enabling network tools into the browsers
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 `conetserv@fres-solutions.com `_)
* `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 ../../
  $ make

b) Release mode

::

  $ mkdir -p build/$(uname)/ && cd build/$(uname)
  $ cmake -DCMAKE_BUILD_TYPE=Release ../../
  $ make
  $ make Packages

  NOTE: (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 type

   a) 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

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。