search for: author_email

Displaying 8 results from an estimated 8 matches for "author_email".

2006 Apr 20
5
Integrating with Legacy Databases
...specify a prefix for the column names in my table. For example, in ''Recipe 16 Integrating with Legacy Databases'' (Rails Recipes, from PragProg, by Fowler) they deal with integration with a WordPress db where all field names are preceded by "comment_" -- i.e. comment_author_email. The recipe explains how to deal with the primary key (comment_id) via: ActiveRecord::Base.primary_key_prefix_type = :table_name_with_underscore which is great: the primary key would obviously be the most important piece to get working :) However, it stops short of going into detail on dealing w...
2008 Mar 19
0
[LLVMdev] Proposal for GSoC project for improving llvm-test testsuite
...====" appears in the log. The gcc-compiled one emits some more messages to log: ========Initialized========= Client using an automatically assigned port Client opened a socket on address local:2 Client opened a socket on address 0.0.0.0:56687 Map farewell provides unknown info item author_email, ignored Map farewell provides unknown info item author_www, ignored Map warfare provides unknown info item author_email, ignored Map warfare provides unknown info item author_www, ignored Attempted division by zero in menu Attempted division by zero in menu Attempted division by zero i...
2008 Mar 19
3
[LLVMdev] Proposal for GSoC project for improving llvm-test testsuite
Am Mittwoch, den 19.03.2008, 14:49 +0100 schrieb Holger Schurig: > > Just my two cents. From time to time I'm testing LLVM via > > compiling & running such big beasts as Qt and Mozilla. Also, > > at 2.0 time I tried to compile & test bunch of software from > > KDE and many others. > > I tried to compile the 3D game engine "darkplaces" with
2005 Mar 28
4
Problem with bindings and MinGW
...apianbase': XAPIAN_BASE}).split() DATA_FILES = [('.', df)] EXTRA_CFLAGS.append("-DNO_REMOTE_OPEN") setup(name="Xapian", version="0.8.5", description="Xapian bindings for Python", author="The Xapian Team", author_email="xapian@users.sourceforge.net", url="http://xapian.org/", py_modules=["xapian"], data_files=DATA_FILES, ext_modules=[ Extension("_xapian", ["xapian_wrap.cc"], extra_compile_ar...
2005 Mar 28
4
Problem with bindings and MinGW
...apianbase': XAPIAN_BASE}).split() DATA_FILES = [('.', df)] EXTRA_CFLAGS.append("-DNO_REMOTE_OPEN") setup(name="Xapian", version="0.8.5", description="Xapian bindings for Python", author="The Xapian Team", author_email="xapian@users.sourceforge.net", url="http://xapian.org/", py_modules=["xapian"], data_files=DATA_FILES, ext_modules=[ Extension("_xapian", ["xapian_wrap.cc"], extra_compile_ar...
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
Hi, this series cleans up the Python sources, either static or generated, including also tests, to make them PEP 8 compliant; see https://www.python.org/dev/peps/pep-0008/ and tools like pep8. Almost all the issues reported by pep8 are fixed, reducing the issues from 3818 to 7. The changes should have no effect on the actual code, while it will help Python users with consistency with other
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...rom setuptools import setup, find_packages +except ImportError: + from ez_setup import use_setuptools + use_setuptools() + from setuptools import setup, find_packages + +setup( + name='server', + version='0.1', + description='', + author='', + author_email='', + #url='', + install_requires=[ + "TurboGears2 >= 2.0b7", + "Catwalk >= 2.0.2", + "Babel >=0.9.4", + #can be removed iif use_toscawidgets = False + "toscawidgets >= 0.9.7.1", + &q...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...rom setuptools import setup, find_packages -except ImportError: - from ez_setup import use_setuptools - use_setuptools() - from setuptools import setup, find_packages - -setup( - name='server', - version='0.1', - description='', - author='', - author_email='', - #url='', - install_requires=[ - "TurboGears2 >= 2.0b7", - "Catwalk >= 2.0.2", - "Babel >=0.9.4", - #can be removed iif use_toscawidgets = False - "toscawidgets >= 0.9.7.1", - &q...