Descargar
Desarrollar
Cuenta
Descargar
Desarrollar
Entrar
Forgot Account/Password
Crear Cuenta
Idioma
Ayuda
Idioma
Ayuda
×
Entrar
Nombre de usuario
Contraseña
×
Forgot Account/Password
Translation Status of Español
Categoría:
Software
Gente
PersonalForge
Magazine
Wiki
Buscar
OSDN
>
Buscar Software
>
Text Editors
>
Alpha
>
Foros
>
Developers
>
Subversion でのソースコード管理を始めました
Alpha
Fork
Descripción
Project Summary
Developer Dashboard
Página Web
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
Historial
Descargas
List of Releases
Stats
Código Fuente
Code Repository list
Mercurial
alpha
Incidencia
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Communication
List of Forums
Developers (12)
公開討議 (70)
Foros:
Developers
(Thread #13603)
Return to Thread list
RSS
Subversion でのソースコード管理を始めました (2007-02-08 12:34 by
exeal
#27501)
Responder
Crear incidencia
Subversion を使ったソースコードの管理を開始しました。
ディレクトリの構造はまだ完全ではありませんが、お知らせします。
リポジトリは Web ブラウザで閲覧できます。
http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=alpha
チェックアウトの詳細は SourceForge.jp のドキュメントを読んください。
http://sourceforge.jp/projects/sourceforge/document/how_to_use_subversion/ja/9/how_to_use_subversion.html
Responder al #27501
×
Sujeto
Body
Reply To Message #27501 > > Subversion を使ったソースコードの管理を開始しました。 > ディレクトリの構造はまだ完全ではありませんが、お知らせします。 > リポジトリは Web ブラウザで閲覧できます。 > > http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi/?root=alpha > > チェックアウトの詳細は SourceForge.jp のドキュメントを読んください。 > > http://sourceforge.jp/projects/sourceforge/document/how_to_use_subversion/ja/9/how_to_use_subversion.html
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar
RE: Subversion でのソースコード管理を始めました (2009-07-19 00:29 by
h.k
#45041)
Responder
Crear incidencia
stdafx.h が subversion から取得できませんでした。
(VisualStudio2008 でコンパイルを試行錯誤してみましたが無理。)
Responder al
#27501
Responder al #45041
×
Sujeto
Body
Reply To Message #45041 > stdafx.h が subversion から取得できませんでした。 > (VisualStudio2008 でコンパイルを試行錯誤してみましたが無理。)
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar
RE: Subversion でのソースコード管理を始めました (2009-07-23 00:49 by
exeal
#45098)
Responder
Crear incidencia
こんばんは。
現在はプリコンパイル済みヘッダを使っていないので stdafx.h は不要です。
stdafx.h を参照しているファイルは以下の通りですが、
すべてプロジェクトに含まれていないかコンパイルしない設定になっていると思います。
text-buffer-test.cpp
bookmark-dialog.cpp
command.cpp
keyboard-map.cpp
mru-manager.cpp
print.cpp
search-dialog.cpp
temporary-macro.cpp
エラーが発生した箇所はどこでしょうか?
Responder al
#45041
Responder al #45098
×
Sujeto
Body
Reply To Message #45098 > こんばんは。 > > 現在はプリコンパイル済みヘッダを使っていないので stdafx.h は不要です。 > stdafx.h を参照しているファイルは以下の通りですが、 > すべてプロジェクトに含まれていないかコンパイルしない設定になっていると思います。 > > text-buffer-test.cpp > bookmark-dialog.cpp > command.cpp > keyboard-map.cpp > mru-manager.cpp > print.cpp > search-dialog.cpp > temporary-macro.cpp > > エラーが発生した箇所はどこでしょうか?
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar
RE: Subversion でのソースコード管理を始めました (2009-07-28 11:50 by
h.k
#45170)
Responder
Crear incidencia
アドバイスありがとうございました。
存在しないファイルをプロジェクトから除外して、
・print.cpp
・bookmark-dialog.cpp
を、ビルドしないように設定しました。
今は、manu.cpp に2種類のエラーが発生します。
menu.cpp(281) : error C2664:
'`anonymous-namespace'::Menu::setItem' : 2 番目の引数を 'manah::win32::AutoZeroSize<Structure>' から
'const manah::win32::AutoZeroSize<Structure> &' に変換できません。
この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。
menu.cpp(341) : error C2664:
'SetMenuItemInfoW' : 4 番目の引数を 'const manah::win32::AutoZeroSize<Structure> *__w64 ' から
'LPCMENUITEMINFOW' に変換できません。
指示された型は関連がありません。変換には reinterpret_cast、C スタイル キャストまたは関数スタイルのキャストが必要です。
Responder al
#45098
Responder al #45170
×
Sujeto
Body
Reply To Message #45170 > アドバイスありがとうございました。 > 存在しないファイルをプロジェクトから除外して、 > ・print.cpp > ・bookmark-dialog.cpp > を、ビルドしないように設定しました。 > 今は、manu.cpp に2種類のエラーが発生します。 > > menu.cpp(281) : error C2664: > '`anonymous-namespace'::Menu::setItem' : 2 番目の引数を 'manah::win32::AutoZeroSize<Structure>' から > 'const manah::win32::AutoZeroSize<Structure> &' に変換できません。 > この変換を実行可能なユーザー定義変換演算子がないか、または演算子を呼び出せません。 > > > menu.cpp(341) : error C2664: > 'SetMenuItemInfoW' : 4 番目の引数を 'const manah::win32::AutoZeroSize<Structure> *__w64 ' から > 'LPCMENUITEMINFOW' に変換できません。 > 指示された型は関連がありません。変換には reinterpret_cast、C スタイル キャストまたは関数スタイルのキャストが必要です。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar
RE: Subversion でのソースコード管理を始めました (2009-07-30 02:04 by
exeal
#45206)
Responder
Crear incidencia
ご報告ありがとうございました。
誤りを修正して rev. 271 でコミットしました。
Responder al
#27501
Responder al #45206
×
Sujeto
Body
Reply To Message #45206 > ご報告ありがとうございました。 > 誤りを修正して rev. 271 でコミットしました。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar
RE: Subversion でのソースコード管理を始めました (2009-07-30 10:54 by
h.k
#45208)
Responder
Crear incidencia
ありがとうございました。ビルドが通りました。
(でも実行はできませんでした。)
[boost のビルド]
bjam --build-type=complete --toolset=msvc --with-python stage
bjam --build-type=complete --toolset=msvc --with-regex stage
[python の環境]
PYTHON_ROOT C:/Python26
PYTHON_VERSION 2.6
---
char dotAlpha[MAX_PATH];
::GetModuleFileNameA(0, dotAlpha, MAX_PATH);
char* fileName = ::PathFindFileNameA(dotAlpha);
strcpy(fileName, ".alpha");
try {
ambient::Interpreter::instance().executeFile(dotAlpha); //エラー(?)
} catch(const boost::python::error_already_set&) {
ambient::Interpreter::instance().handleException();
}
---
ビルドが通ったので満足です。
Responder al
#45206
Responder al #45208
×
Sujeto
Body
Reply To Message #45208 > ありがとうございました。ビルドが通りました。 > (でも実行はできませんでした。) > > [boost のビルド] > bjam --build-type=complete --toolset=msvc --with-python stage > bjam --build-type=complete --toolset=msvc --with-regex stage > > [python の環境] > PYTHON_ROOT C:/Python26 > PYTHON_VERSION 2.6 > > --- > > char dotAlpha[MAX_PATH]; > ::GetModuleFileNameA(0, dotAlpha, MAX_PATH); > char* fileName = ::PathFindFileNameA(dotAlpha); > strcpy(fileName, ".alpha"); > try { > ambient::Interpreter::instance().executeFile(dotAlpha); //エラー(?) > } catch(const boost::python::error_already_set&) { > ambient::Interpreter::instance().handleException(); > } > > --- > > ビルドが通ったので満足です。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
Entrar
Nickname
Vista previa
Post
Cancelar