You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
(67) |
Apr
(455) |
May
(202) |
Jun
(136) |
Jul
(203) |
Aug
(60) |
Sep
(88) |
Oct
(64) |
Nov
(56) |
Dec
(78) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(271) |
Feb
(207) |
Mar
|
Apr
|
May
(167) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Foster B. <fos...@us...> - 2006-01-06 18:36:12
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/sources/win Modified Files: display.cpp ui_core_implementation.cpp ui_overlay.cpp Log Message: asl 1.0.12 Index: display.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/win/display.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** display.cpp 7 Nov 2005 18:00:43 -0000 1.2 --- display.cpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: ui_overlay.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/win/ui_overlay.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ui_overlay.cpp 7 Nov 2005 18:00:43 -0000 1.2 --- ui_overlay.cpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 219,223 **** overlay_forest_t::iterator position(unwrap(parent)); ! position.set_leading(false); return wrap(tree_m.insert(position, overlay_data_t())); --- 219,223 ---- overlay_forest_t::iterator position(unwrap(parent)); ! position.edge() = adobe::forest_trailing_edge; return wrap(tree_m.insert(position, overlay_data_t())); Index: ui_core_implementation.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/win/ui_core_implementation.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ui_core_implementation.cpp 2 Dec 2005 02:52:56 -0000 1.5 --- ui_core_implementation.cpp 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 246,254 **** assert(window); ! std::vector<WCHAR> titlename; ! titlename.resize(1024); ! *(&titlename[::GetWindowTextW(window, &titlename[0], 1024)]) = 0; return std::string(hackery::convert_utf(&titlename[0])); --- 246,256 ---- assert(window); ! int const buffer_size = ::GetWindowTextLengthW(window) + 1; ! std::vector<WCHAR> titlename(buffer_size, 0); ! int const text_length = ::GetWindowTextW(window, &titlename[0], buffer_size); ! ! assert(text_length < buffer_size); return std::string(hackery::convert_utf(&titlename[0])); *************** *** 892,895 **** --- 894,907 ---- { // + // REVISIT (ralpht): Don't do anything if the panel's parent isn't a tab control. + // + HWND parent = GetParent(panel); + if (parent) { + std::vector<WCHAR> classname(1024); + *(&classname[::GetClassNameW(parent, &classname[0], 1024)]) = 0; + if (std::wstring(&classname[0]) != std::wstring(WC_TABCONTROL)) + return DefWindowProc(panel, message, wParam, lParam); + } + // // If we are not using visual styles then we don't have to do // anything here -- the default window procedure is correct. *************** *** 3144,3148 **** // position.y_m += baseline - edit_baseline_m; ! geometry.height() = edit_height_m; _super::set_bounds(position, geometry); } --- 3156,3163 ---- // position.y_m += baseline - edit_baseline_m; ! ! // Do we need to adapt the height for baseline alignment? (thw) ! // Disabled as it disables vertical align_fill (thw) ! // geometry.height() = edit_height_m; _super::set_bounds(position, geometry); } *************** *** 3221,3239 **** assert(control_m); ! std::string cr_map(text); ! std::string::size_type pos(0); ! ! while (true) ! { ! pos = cr_map.find('\n', pos); ! ! if (pos == std::string::npos) break; ! ! cr_map.insert(pos, "\r"); ! ! pos += 2; ! } ! ::SendMessageW(control_m, WM_SETTEXT, 0, (LPARAM) hackery::convert_utf(cr_map.c_str()).c_str()); } --- 3236,3244 ---- assert(control_m); ! // REVISIT (fbrereto) : Currently we require the line endings to be whatever the platform wants. ! // I'm not sure we want to make it the burden of the widget to handle all ! // forms of line endings. ! ::SendMessageW(control_m, WM_SETTEXT, 0, (LPARAM) hackery::convert_utf(text.c_str()).c_str()); } |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:12
|
Update of /cvsroot/adobe-source/adobe-source/ide_projects/vc8 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/ide_projects/vc8 Modified Files: boost_thread.vcproj Log Message: asl 1.0.12 Index: boost_thread.vcproj =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/ide_projects/vc8/boost_thread.vcproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** boost_thread.vcproj 2 Dec 2005 02:52:57 -0000 1.1 --- boost_thread.vcproj 6 Jan 2006 18:35:28 -0000 1.2 *************** *** 172,179 **** </File> <File - RelativePath="..\..\third_party\boost_tp\boost\libs\thread\src\read_write_mutex.cpp" - > - </File> - <File RelativePath="..\..\third_party\boost_tp\boost\libs\thread\src\recursive_mutex.cpp" > --- 172,175 ---- |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:12
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/n_queens In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/n_queens Modified Files: main.cpp Log Message: asl 1.0.12 Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/n_queens/main.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.cpp 6 Oct 2005 20:43:19 -0000 1.1 --- main.cpp 6 Jan 2006 18:35:26 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:11
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/sudoku In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/sudoku Modified Files: main.cpp sudoku.hpp sudoku_utilities.hpp Log Message: asl 1.0.12 Index: sudoku_utilities.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/sudoku/sudoku_utilities.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sudoku_utilities.hpp 6 Oct 2005 20:43:19 -0000 1.1 --- sudoku_utilities.hpp 6 Jan 2006 18:35:26 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/sudoku/main.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.cpp 6 Oct 2005 20:43:19 -0000 1.1 --- main.cpp 6 Jan 2006 18:35:26 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: sudoku.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/sudoku/sudoku.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** sudoku.hpp 2 Dec 2005 02:52:56 -0000 1.2 --- sudoku.hpp 6 Jan 2006 18:35:26 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:10
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/xstr_test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/xstr_test Modified Files: main.cpp Removed Files: xstr_test.mcp Log Message: asl 1.0.12 Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/xstr_test/main.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** main.cpp 2 Dec 2005 02:52:56 -0000 1.7 --- main.cpp 6 Jan 2006 18:35:27 -0000 1.8 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- xstr_test.mcp DELETED --- |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:08
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/begin/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/begin/headers Modified Files: express_viewer.hpp latch.hpp report_exception.hpp Log Message: asl 1.0.12 Index: latch.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/headers/latch.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** latch.hpp 2 Dec 2005 02:52:56 -0000 1.2 --- latch.hpp 6 Jan 2006 18:35:23 -0000 1.3 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <adobe/dictionary.hpp> #include <adobe/value.hpp> Index: report_exception.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/headers/report_exception.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** report_exception.hpp 2 Dec 2005 02:52:56 -0000 1.2 --- report_exception.hpp 6 Jan 2006 18:35:23 -0000 1.3 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <iostream> #include <fstream> Index: express_viewer.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/headers/express_viewer.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** express_viewer.hpp 2 Dec 2005 02:52:56 -0000 1.5 --- express_viewer.hpp 6 Jan 2006 18:35:23 -0000 1.6 *************** *** 11,14 **** --- 11,15 ---- #include <adobe/config.hpp> + #include <adobe/adam.hpp> #include <adobe/future/file_slurp.hpp> *************** *** 45,49 **** /* REVISIT (sparent) : The lf handling should be moved down into where ever this data is going - ! In this case into a UI widget. The general rool should everything should be agnostic about line endings on read. And everything should write Unix style (just '\n') line endings. */ --- 46,50 ---- /* REVISIT (sparent) : The lf handling should be moved down into where ever this data is going - ! In this case into a UI widget. The general rule should everything should be agnostic about line endings on read. And everything should write Unix style (just '\n') line endings. */ *************** *** 85,93 **** // REVISIT (fbrereto) : This is all a hack. Get notifiers in here instead of as_string and the like. ! struct file_buffer_t { public: typedef boost::function<void (bool)> dirty_proc_t; void set_path(const boost::filesystem::path& path) { --- 86,108 ---- // REVISIT (fbrereto) : This is all a hack. Get notifiers in here instead of as_string and the like. ! class file_buffer_t { public: + enum line_ending_t + { + line_ending_unknown_k = 0, + line_ending_platform_k = 1 << 0L, + line_ending_unix_k = 1 << 1L, // LF + line_ending_windows_k = 1 << 2L, // CR+LF + line_ending_mac_os_classic_k = 1 << 3L, // CR + line_ending_mac_os_x_k = line_ending_unix_k // LF + }; + typedef boost::function<void (bool)> dirty_proc_t; + file_buffer_t() : + le_m(line_ending_unknown_k) + { } + void set_path(const boost::filesystem::path& path) { *************** *** 98,101 **** --- 113,118 ---- contents_m.assign(slurp.begin(), slurp.end()); + set_line_endings_impl(le_m, true); + set_dirty(false); } *************** *** 109,117 **** } void save() { if (!dirty_m) return; ! bfs::ofstream output( path_m ); // --- 126,141 ---- } + inline void set_line_endings(line_ending_t le, bool force = false) + { + set_line_endings_impl(le, force); + + set_dirty(true); + } + void save() { if (!dirty_m) return; ! bfs::ofstream output( path_m, std::ios_base::out | std::ios_base::binary ); // *************** *** 123,131 **** + path_m.string() + "\"" ); ! std::string filtered( contents_m ); ! ! adobe::replace( filtered, '\r', '\n' ); ! output << filtered; set_dirty(false); --- 147,154 ---- + path_m.string() + "\"" ); ! if (le_m == line_ending_unknown_k) ! set_line_endings(le_m); ! output << contents_m; set_dirty(false); *************** *** 141,145 **** { if (dirty_m) ! return "in-memory contents"; else return path_m.string().c_str(); --- 164,168 ---- { if (dirty_m) ! return "(temporary file buffer)"; else return path_m.string().c_str(); *************** *** 164,175 **** --- 187,267 ---- } + void replace_all(const char* src, const char* dst) + { + // replaces all instances of src with dst + + std::string::size_type result(0); + std::size_t src_n(std::strlen(src)); + std::size_t dst_n(std::strlen(dst)); + + while (true) + { + result = contents_m.find(src, result); + + if (result == std::string::npos) break; + + contents_m.replace(result, src_n, dst, dst_n); + + result += dst_n; + } + } + + void set_line_endings_impl(line_ending_t le, bool force = false) + { + if (le_m == le && !force && + le_m != line_ending_unknown_k) return; + + if (le == line_ending_platform_k || le == line_ending_unknown_k) + { + #if ADOBE_PLATFORM_WIN + le_m = line_ending_windows_k; + #else + le_m = line_ending_unix_k; + #endif + } + else + { + le_m = le; + } + + // REVISIT (fbrereto) : Not as optimal as it could be. + + if (le_m == line_ending_unix_k) + { + replace_all("\r\n", "\n"); + replace_all("\r", "\n"); + } + else if (le_m == line_ending_windows_k) + { + replace_all("\r\n", "\n"); + replace_all("\r", "\n"); + replace_all("\n", "\r\n"); + } + else if (le_m == line_ending_mac_os_classic_k) + { + replace_all("\r\n", "\r"); + replace_all("\n", "\r"); + } + else + throw std::runtime_error("unknown line ending type"); + + // set line endings back to 'unknown' if + // that's what they were originally + if (le == line_ending_unknown_k) le_m = line_ending_unknown_k; + } + bfs::path path_m; ///< Path to the current file std::string contents_m; ///< Contents of the file (not necessarily same as that in file) bool dirty_m; ///< Dirty bit dirty_proc_t dirty_proc_m; ///< Dirty bit modification notifier + line_ending_t le_m; ///< Line ending flags }; /****************************************************************************************************/ + ADOBE_DEFINE_BITSET_OPS(file_buffer_t::line_ending_t) + + /****************************************************************************************************/ + // /// The application_t class is implemented in express_viewer.cpp and defines |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:08
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/sha In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/sha Modified Files: Jamfile.v2 main.cpp Log Message: asl 1.0.12 Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/sha/main.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** main.cpp 2 Dec 2005 02:52:56 -0000 1.2 --- main.cpp 6 Jan 2006 18:35:26 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: Jamfile.v2 =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/sha/Jamfile.v2,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Jamfile.v2 6 Oct 2005 20:43:19 -0000 1.1 --- Jamfile.v2 6 Jan 2006 18:35:26 -0000 1.2 *************** *** 7,10 **** : # args : #files ! : #requirements ; --- 7,10 ---- : # args : #files ! : <toolset>darwin:<linkflags>"-framework Carbon" ; |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:08
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/begin/sources/win Modified Files: main.cpp Log Message: asl 1.0.12 Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/win/main.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** main.cpp 2 Dec 2005 02:52:56 -0000 1.6 --- main.cpp 6 Jan 2006 18:35:25 -0000 1.7 *************** *** 123,127 **** { case ADOBE_ABOUT: ! ::MessageBox(NULL, _T("Adobe Begin Copyright 2005 Adobe Systems, Incorporated"), _T("About Adobe Begin"), MB_OK); break; --- 123,127 ---- { case ADOBE_ABOUT: ! ::MessageBox(NULL, _T("Adobe Begin Copyright 2005-2006 Adobe Systems Incorporated"), _T("About Adobe Begin"), MB_OK); break; |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:07
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/md5 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/md5 Modified Files: main.cpp Removed Files: md5_asl.mcp Log Message: asl 1.0.12 --- md5_asl.mcp DELETED --- Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/md5/main.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.cpp 3 Jun 2005 16:35:45 -0000 1.1 --- main.cpp 6 Jan 2006 18:35:26 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:06
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/begin/sources Modified Files: express_viewer.cpp report_exception.cpp Log Message: asl 1.0.12 Index: report_exception.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/report_exception.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** report_exception.cpp 7 Nov 2005 18:00:44 -0000 1.1 --- report_exception.cpp 6 Jan 2006 18:35:24 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: express_viewer.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/begin/sources/express_viewer.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** express_viewer.cpp 2 Dec 2005 02:52:56 -0000 1.6 --- express_viewer.cpp 6 Jan 2006 18:35:24 -0000 1.7 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 274,281 **** stream << "Adobe contributions by\n"; stream << "\tFoster Brereton, Mat Marcus, Sean Parent,\n"; ! stream << "\tEric Berdahl, Jon Reid\n"; stream << "Opensource community contributions by\n"; stream << "\tDavid Catmull, Jamie Gadd, Peter Kummel,\n"; ! stream << "\tTobias Schwinger, Niki Spahiev, Ralph Thomas\n"; stream << "Using Adobe Source Library v. " << ADOBE_VERSION_MAJOR << "." << ADOBE_VERSION_MINOR << "." << ADOBE_VERSION_SUBMINOR << "\n"; stream << "Using Boost v. " << BOOST_VERSION / 100000 << "." << BOOST_VERSION / 100 % 1000 << "." << BOOST_VERSION % 100 << "\n"; --- 274,283 ---- stream << "Adobe contributions by\n"; stream << "\tFoster Brereton, Mat Marcus, Sean Parent,\n"; ! stream << "\tEric Berdahl, Lubomir Bourdev, Hailin Jin,\n"; ! stream << "\tJon Reid\n"; stream << "Opensource community contributions by\n"; stream << "\tDavid Catmull, Jamie Gadd, Peter Kummel,\n"; ! stream << "\tTobias Schwinger, Niki Spahiev, Ralph Thomas,\n"; ! stream << "\tThomas Witt\n"; stream << "Using Adobe Source Library v. " << ADOBE_VERSION_MAJOR << "." << ADOBE_VERSION_MINOR << "." << ADOBE_VERSION_SUBMINOR << "\n"; stream << "Using Boost v. " << BOOST_VERSION / 100000 << "." << BOOST_VERSION / 100 % 1000 << "." << BOOST_VERSION % 100 << "\n"; *************** *** 305,311 **** } else if ( name == save_adam_name_g ) ! { _adam_file_m.save(); } else if ( name == save_eve_name_g ) ! { _eve_file_m.save(); } else system_beep(); // unknown request. --- 307,321 ---- } else if ( name == save_adam_name_g ) ! { ! _adam_file_m.set_contents(result.begin(), result.end()); ! ! _adam_file_m.save(); ! } else if ( name == save_eve_name_g ) ! { ! _eve_file_m.set_contents(result.begin(), result.end()); ! ! _eve_file_m.save(); ! } else system_beep(); // unknown request. |
Update of /cvsroot/adobe-source/adobe-source/adobe/future/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/source Modified Files: assemblage.cpp cmd_system.cpp iomanip.cpp iomanip_asl_cel.cpp iomanip_pdf.cpp iomanip_xml.cpp menu_system.cpp Log Message: asl 1.0.12 Index: cmd_system.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/cmd_system.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cmd_system.cpp 2 Dec 2005 02:52:55 -0000 1.1 --- cmd_system.cpp 6 Jan 2006 18:35:21 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 24,28 **** struct command_entry_t { ! typedef boost::signal<void (adobe::name_t, bool)> enable_callback_list_t; command_entry_t() : --- 24,28 ---- struct command_entry_t { ! typedef boost::signal<void (bool)> enable_callback_list_t; command_entry_t() : *************** *** 90,94 **** void command_system_t::implementation_t::insert_command(adobe::name_t name, const command_proc_t& proc) { ! if (command_map_m.find(name) != command_map_m.end()) return; command_entry_t& cmd(command_map_m[name]); --- 90,95 ---- void command_system_t::implementation_t::insert_command(adobe::name_t name, const command_proc_t& proc) { ! if (command_map_m.find(name) != command_map_m.end()) ! throw std::runtime_error("A command by this name already exists"); command_entry_t& cmd(command_map_m[name]); *************** *** 103,107 **** command_map_t::iterator item(command_map_m.find(name)); ! if (item == command_map_m.end()) return; command_map_m.erase(item); --- 104,109 ---- command_map_t::iterator item(command_map_m.find(name)); ! if (item == command_map_m.end()) ! throw std::runtime_error("A command by this name could not be found"); command_map_m.erase(item); *************** *** 112,116 **** void command_system_t::implementation_t::enable_command(adobe::name_t name, bool enabled) { ! assert(command_map_m.find(name) != command_map_m.end()); command_entry_t& cmd(command_map_m[name]); --- 114,119 ---- void command_system_t::implementation_t::enable_command(adobe::name_t name, bool enabled) { ! if (command_map_m.find(name) == command_map_m.end()) ! throw std::runtime_error("A command by this name could not be found"); command_entry_t& cmd(command_map_m[name]); *************** *** 120,124 **** cmd.enabled_m = enabled; ! cmd.enabled_callback_m(name, cmd.enabled_m); } --- 123,127 ---- cmd.enabled_m = enabled; ! cmd.enabled_callback_m(cmd.enabled_m); } *************** *** 127,131 **** void command_system_t::implementation_t::do_command(adobe::name_t name) { ! assert(command_map_m.find(name) != command_map_m.end()); command_entry_t& cmd(command_map_m[name]); --- 130,135 ---- void command_system_t::implementation_t::do_command(adobe::name_t name) { ! if (command_map_m.find(name) == command_map_m.end()) ! throw std::runtime_error("A command by this name could not be found"); command_entry_t& cmd(command_map_m[name]); *************** *** 140,144 **** command_system_t::connection_t command_system_t::implementation_t::monitor_enabled(adobe::name_t name, const command_enabled_callback_t& callback) { ! assert(command_map_m.find(name) != command_map_m.end()); command_entry_t& cmd(command_map_m[name]); --- 144,149 ---- command_system_t::connection_t command_system_t::implementation_t::monitor_enabled(adobe::name_t name, const command_enabled_callback_t& callback) { ! if (command_map_m.find(name) == command_map_m.end()) ! throw std::runtime_error("A command by this name could not be found"); command_entry_t& cmd(command_map_m[name]); Index: menu_system.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/menu_system.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** menu_system.cpp 2 Dec 2005 02:52:55 -0000 1.1 --- menu_system.cpp 6 Jan 2006 18:35:21 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: iomanip_asl_cel.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/iomanip_asl_cel.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** iomanip_asl_cel.cpp 8 Aug 2005 16:37:11 -0000 1.2 --- iomanip_asl_cel.cpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: assemblage.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/assemblage.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** assemblage.cpp 2 Apr 2005 05:47:36 -0000 1.3 --- assemblage.cpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: iomanip.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/iomanip.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** iomanip.cpp 2 Jun 2005 23:14:16 -0000 1.3 --- iomanip.cpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: iomanip_pdf.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/iomanip_pdf.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** iomanip_pdf.cpp 2 Jun 2005 23:14:16 -0000 1.3 --- iomanip_pdf.cpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: iomanip_xml.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/source/iomanip_xml.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** iomanip_xml.cpp 3 Mar 2005 06:58:16 -0000 1.2 --- iomanip_xml.cpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:05
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/adam_smoke In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/adam_smoke Modified Files: adam_smoke_test.cpp Removed Files: adam_smoke.mcp Log Message: asl 1.0.12 Index: adam_smoke_test.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/adam_smoke/adam_smoke_test.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** adam_smoke_test.cpp 2 Jun 2005 23:14:18 -0000 1.1 --- adam_smoke_test.cpp 6 Jan 2006 18:35:22 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- adam_smoke.mcp DELETED --- |
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/headers Modified Files: client_assembler.hpp display.hpp factory.hpp optional_connect.hpp ui_core.hpp ui_core_common.hpp ui_overlay.hpp Log Message: asl 1.0.12 Index: ui_core_common.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/ui_core_common.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ui_core_common.hpp 2 Dec 2005 02:52:55 -0000 1.3 --- ui_core_common.hpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <adobe/extents.hpp> Index: display.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/display.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** display.hpp 2 Dec 2005 02:52:55 -0000 1.2 --- display.hpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <boost/any.hpp> Index: client_assembler.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/client_assembler.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** client_assembler.hpp 2 Dec 2005 02:52:55 -0000 1.5 --- client_assembler.hpp 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /*************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /*************************************************************************************************/ *************** *** 10,13 **** --- 10,15 ---- #define EVE_CLIENT_EXAMPLE_HPP + #include <adobe/config.hpp> + #include "ui_core.hpp" #include "ui_overlay.hpp" Index: factory.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/factory.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** factory.hpp 2 Dec 2005 02:52:55 -0000 1.3 --- factory.hpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 4,8 **** or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 4,8 ---- or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include "display.hpp" #include "ui_core.hpp" Index: ui_core.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/ui_core.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ui_core.hpp 2 Dec 2005 02:52:55 -0000 1.5 --- ui_core.hpp 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <boost/function.hpp> #include <boost/operators.hpp> Index: ui_overlay.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/ui_overlay.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ui_overlay.hpp 2 Dec 2005 02:52:55 -0000 1.2 --- ui_overlay.hpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <adobe/extents.hpp> Index: optional_connect.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/optional_connect.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** optional_connect.hpp 2 Dec 2005 02:52:55 -0000 1.2 --- optional_connect.hpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /*************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /*************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /*************************************************************************************************/ + #include <adobe/config.hpp> + #include <boost/utility/enable_if.hpp> |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:04
|
Update of /cvsroot/adobe-source/adobe-source/adobe/test/adam_tutorial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/test/adam_tutorial Modified Files: main.cpp Removed Files: adam_tutorial.mcp Log Message: asl 1.0.12 Index: main.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/test/adam_tutorial/main.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main.cpp 7 Jul 2005 22:00:09 -0000 1.4 --- main.cpp 6 Jan 2006 18:35:22 -0000 1.5 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- adam_tutorial.mcp DELETED --- |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:04
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/asl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources/asl Modified Files: algorithm.dox forest.dox numeric.dox Log Message: asl 1.0.12 Index: numeric.dox =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/asl/numeric.dox,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** numeric.dox 7 Jul 2005 22:00:04 -0000 1.1 --- numeric.dox 6 Jan 2006 18:35:19 -0000 1.2 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: algorithm.dox =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/asl/algorithm.dox,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** algorithm.dox 2 Jun 2005 23:14:15 -0000 1.2 --- algorithm.dox 6 Jan 2006 18:35:19 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: forest.dox =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/asl/forest.dox,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** forest.dox 8 Aug 2005 16:37:09 -0000 1.2 --- forest.dox 6 Jan 2006 18:35:19 -0000 1.3 *************** *** 18,24 **** \model_of ! - ReversibleContainer ! - FrontInsertionSequence ! - BackInsertionSequence \type_requirements --- 18,24 ---- \model_of ! - \ref stldoc_ReversibleContainer ! - \ref stldoc_FrontInsertionSequence ! - \ref stldoc_BackInsertionSequence \type_requirements *************** *** 30,34 **** /*! ! \fn void adobe::forest::splice(iterator position, forest<T>& x) All of the elements of \c x are inserted before \c position and removed from \c x. --- 30,34 ---- /*! ! \fn iterator adobe::forest::splice(iterator position, forest<T>& x) All of the elements of \c x are inserted before \c position and removed from \c x. *************** *** 38,77 **** \pre \c x must be a forest that is distinct from <code>*this</code>. ! \pre ! \c last must be arriveable at from <code>first</code>. ! \pre ! <code>[first, last)</code> must be a valid sibling range on <code>x</code>. */ /*! ! \fn void adobe::forest::splice(iterator position, forest<T>& x, iterator i) ! \c splice moves the element pointed to by \c i from \c x to <code>*this</code>, inserting it before ! <code>position</code>. <code>i</code> will be corced to point to the leading edge of the node; then ! if <code>position == i</code> or <code>position == ++i</code>, this function is a null operation. */ /*! ! \fn void adobe::forest::splice(iterator pos, forest<T>& x, adobe::child_iterator first, adobe::child_iterator last) \c splice moves the elements in [first, last) from \c x to <code>*this</code>, inserting them ! before <code>position</code>. \pre ! \c last must be arriveable at from <code>first</code>. */ /*! ! \fn void adobe::forest::insert_parent(adobe::child_iterator& first, adobe::child_iterator& last, const T& x) \pre ! \c last must be arriveable at from <code>first</code>. */ /*! ! \fn void adobe::forest::insert_nodes(node* here, bool leading, node* first, node* last) \pre ! Range is <code>[first, last]</code>, <b>not</b> <code>[first, last)</code>. */ --- 38,97 ---- \pre \c x must be a forest that is distinct from <code>*this</code>. ! \result ! An iterator to the spliced range. Either an iterator to the first element of \c x or \c position if \c x is empty. */ /*! ! \fn iterator adobe::forest::splice(iterator position, forest<T>& x, iterator i) ! \c splice moves the element(s) pointed to by \c i from \c x to <code>*this</code>, inserting it before ! <code>position</code>. The range denoted by \c i is <code>[leading_of(i), next(trailing_of(i)) )</code>, any children of i are also moved. If <code>position == leading_of(i)</code> then no splice occurs. ! \pre ! \c position may not be within the range denoted by \c i. ! \post ! If <code>&x != *this</code> and \c i has children then \c size() and \c x.size() will be invalidated. ! \result ! An iterator to the spliced range (<code>leading_of(i)</code>). */ /*! ! \fn iterator adobe::forest::splice(iterator position, forest<T>& x, child_iterator first, child_iterator last) \c splice moves the elements in [first, last) from \c x to <code>*this</code>, inserting them ! before <code>position</code>. If <code>position == first.base()</code> then no splice occurs. \pre ! \c position my not be within the range <code>[first, last)</code>. ! \post ! If <code>&x != *this</code> and <code>[first, last)</code> is not empty then \c size() and \c x.size() will be invalidated. ! \result ! An iterator to the spliced range. Either an iterator to \c first or \c position if <code>[first, last)</code> is empty. ! */ /*! ! \fn iterator adobe::forest::splice(iterator position, forest<T>& x, child_iterator first, child_iterator last, size_type count) ! ! \c splice moves the elements in [first, last) from \c x to <code>*this</code>, inserting them ! before <code>position</code>. If <code>position == first.base()</code> then no splice occurs. The \c count parameter optionally specifies the distance <code>[first, last)</code> and avoids invalidating the size of the forests. \pre ! \c position my not be within the range <code>[first, last)</code>. ! \pre ! \c count is the distance from <code>[first, last)</code> or 0. ! \post ! If c is 0 and <code>&x != *this</code> and <code>[first, last)</code> is not empty then \c size() and \c x.size() will be invalidated. ! \result ! An iterator to the spliced range. Either an iterator to \c first or \c position if <code>[first, last)</code> is empty. ! */ /*! ! \fn iterator adobe::forest::insert_parent(child_iterator first, child_iterator last, const T& x) \pre ! \c last must be arriveable at from <code>first</code>. ! \result ! An iterator to the leading edge of the inserted node. */ *************** *** 81,84 **** --- 101,113 ---- \return The number of nodes in the forest. + \complexity + O(1) if size is valid. O(N) if size is not valid. + */ + + /*! + \fn adobe::forest::iterator adobe::forest::root() + + \return + An iterator to the root of the forest. Cannot be dereferenced. */ *************** *** 171,177 **** /*! ! \fn void adobe::forest::swap(adobe::forest& rhs) ! \param rhs forest with which to be swapped. */ --- 200,212 ---- /*! ! \fn adobe::forest::iterator adobe::forest::insert(iterator position, const_child_iterator first, const_child_iterator last) ! Inserts the sub-forest <code>[first.base(), last.base())</code> at \c position. ! ! \complexity ! Linear. ! ! \return ! An iterator to the first new node. */ |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:04
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/sources/mac Modified Files: display.cpp metrics.cpp ui_core_implementation.cpp ui_overlay.cpp Log Message: asl 1.0.12 Index: display.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/mac/display.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** display.cpp 7 Nov 2005 18:00:43 -0000 1.2 --- display.cpp 6 Jan 2006 18:35:21 -0000 1.3 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: metrics.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/mac/metrics.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** metrics.cpp 7 Nov 2005 18:00:43 -0000 1.4 --- metrics.cpp 6 Jan 2006 18:35:21 -0000 1.5 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: ui_overlay.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/mac/ui_overlay.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ui_overlay.cpp 7 Nov 2005 18:00:43 -0000 1.3 --- ui_overlay.cpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 256,264 **** ui_overlay_t::position_t ui_overlay_t::implementation_t::insert(position_t parent) { ! overlay_forest_t::iterator position(unwrap(parent)); ! ! position.set_leading(false); ! ! return wrap(tree_m.insert(position, overlay_data_t())); } --- 256,260 ---- ui_overlay_t::position_t ui_overlay_t::implementation_t::insert(position_t parent) { ! return wrap(tree_m.insert(adobe::trailing_of(unwrap(parent)), overlay_data_t())); } Index: ui_core_implementation.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/mac/ui_core_implementation.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ui_core_implementation.cpp 2 Dec 2005 02:52:56 -0000 1.6 --- ui_core_implementation.cpp 6 Jan 2006 18:35:21 -0000 1.7 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:03
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources Modified Files: documentation.doxygen Log Message: asl 1.0.12 Index: documentation.doxygen =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/documentation.doxygen,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** documentation.doxygen 7 Nov 2005 18:00:41 -0000 1.8 --- documentation.doxygen 6 Jan 2006 18:35:19 -0000 1.9 *************** *** 486,489 **** --- 486,492 ---- ./asl/related/reference_expression_section.dox \ ./asl/concepts \ + ./gil \ + ../../gil/core \ + ../../gil/extension/conceptspace \ ./asl/defgroup_libraries.dox \ ./asl/adam.dox \ *************** *** 512,515 **** --- 515,519 ---- ./widget_lib/widget_reference.dox \ ../../algorithm.hpp \ + ../../algorithm/reverse.hpp \ ../../array.hpp \ ../../array_fwd.hpp \ *************** *** 650,653 **** --- 654,658 ---- IMAGE_PATH = ./asl/related/images \ ./asl/images \ + ./gil/images \ ./tutorials/images \ ./doxygen_support_files/images |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:03
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials/images/originals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources/tutorials/images/originals Modified Files: forest_deletion.graffle Log Message: asl 1.0.12 Index: forest_deletion.graffle =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials/images/originals/forest_deletion.graffle,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** forest_deletion.graffle 28 Feb 2005 20:48:55 -0000 1.1 --- forest_deletion.graffle 6 Jan 2006 18:35:20 -0000 1.2 *************** *** 5,10 **** <key>CanvasColor</key> <dict> - <key>a</key> - <string>1</string> <key>w</key> <string>1</string> --- 5,8 ---- *************** *** 15,22 **** <real>36</real> [...2828 lines suppressed...] + <key>SmartDistanceGuidesActive</key> + <string>NO</string> + <key>UseEntirePage</key> + <false/> <key>VPages</key> <integer>1</integer> <key>WindowInfo</key> <dict> + <key>CurrentSheet</key> + <string>0</string> <key>Frame</key> ! <string>{{113, 218}, {911, 602}}</string> ! <key>ShowRuler</key> ! <false/> ! <key>ShowStatusBar</key> ! <true/> <key>VisibleRegion</key> ! <string>{{-178, 1}, {896, 504}}</string> <key>Zoom</key> <string>1</string> |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:02
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/sources Modified Files: client_assembler.cpp ui_core.cpp ui_core_common.cpp Log Message: asl 1.0.12 Index: ui_core_common.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/ui_core_common.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ui_core_common.cpp 6 Oct 2005 20:43:17 -0000 1.4 --- ui_core_common.cpp 6 Jan 2006 18:35:21 -0000 1.5 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: ui_core.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/ui_core.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ui_core.cpp 2 Dec 2005 02:52:56 -0000 1.4 --- ui_core.cpp 6 Jan 2006 18:35:21 -0000 1.5 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) Index: client_assembler.cpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/sources/client_assembler.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** client_assembler.cpp 2 Dec 2005 02:52:55 -0000 1.5 --- client_assembler.cpp 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 1,4 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 1,4 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) *************** *** 1555,1559 **** --- 1555,1578 ---- if (string != value_m) { + #if ADOBE_PLATFORM_WIN + // check for cases where \n is not preceeded by \r + + std::string::size_type result(0); + + while (true) + { + result = string.find("\n", result); + + if (result == std::string::npos) break; + + if (result == 0 || string[result - 1] != '\r') + string.insert(result, "\r"); + + ++result; + } + #endif + value_m = string; + control_m.set_field_text(string); } |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:01
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/doxygen_support_files In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources/doxygen_support_files Modified Files: header.dox Log Message: asl 1.0.12 Index: header.dox =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/doxygen_support_files/header.dox,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** header.dox 2 Dec 2005 02:52:55 -0000 1.7 --- header.dox 6 Jan 2006 18:35:20 -0000 1.8 *************** *** 4,8 **** <!-- /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) --- 4,8 ---- <!-- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:01
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/headers/mac Modified Files: carbon_safe.hpp metrics.hpp ui_core_implementation.hpp Log Message: asl 1.0.12 Index: carbon_safe.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/mac/carbon_safe.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** carbon_safe.hpp 2 Dec 2005 02:52:55 -0000 1.3 --- carbon_safe.hpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <string> #include <sstream> Index: metrics.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/mac/metrics.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** metrics.hpp 2 Dec 2005 02:52:55 -0000 1.3 --- metrics.hpp 6 Jan 2006 18:35:21 -0000 1.4 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 12,15 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <adobe/dictionary_fwd.hpp> #include <adobe/name_fwd.hpp> Index: ui_core_implementation.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/mac/ui_core_implementation.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ui_core_implementation.hpp 2 Dec 2005 02:52:55 -0000 1.5 --- ui_core_implementation.hpp 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 1,8 **** /* ! Copyright 2005 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! #include <adobe/config.hpp> /****************************************************************************************************/ --- 1,8 ---- /* ! Copyright 2005-2006 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://opensource.adobe.com/licenses.html) */ ! /****************************************************************************************************/ *************** *** 16,19 **** --- 16,21 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include "ui_core.hpp" #include "carbon_safe.hpp" |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:01
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/fltk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets/headers/fltk Modified Files: ui_core_implementation.hpp Log Message: asl 1.0.12 Index: ui_core_implementation.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/headers/fltk/ui_core_implementation.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ui_core_implementation.hpp 2 Dec 2005 02:52:55 -0000 1.4 --- ui_core_implementation.hpp 6 Jan 2006 18:35:21 -0000 1.5 *************** *** 1,8 **** /* Copyright 2005 Ralph Thomas ! Distributed under the MIT License ! ! See accompanying file LICENSE_1_0_0.txt ! #include <adobe/config.hpp> */ --- 1,6 ---- /* Copyright 2005 Ralph Thomas ! Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt ! or a copy at http://opensource.adobe.com/licenses.html) */ *************** *** 14,17 **** --- 12,17 ---- /****************************************************************************************************/ + #include <adobe/config.hpp> + #include <fltk/Widget.h> |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:01
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources/tutorials Modified Files: dictionary_tutorial.dox Log Message: asl 1.0.12 Index: dictionary_tutorial.dox =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials/dictionary_tutorial.dox,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dictionary_tutorial.dox 28 Feb 2005 20:51:26 -0000 1.1 --- dictionary_tutorial.dox 6 Jan 2006 18:35:20 -0000 1.2 *************** *** 80,84 **** \subsection usage_retrieval Retrieval \par ! Getting values out of an adobe::dictionary_t is easier than putting them in, because there is no "read_reference": you merely index into the adobe::dictionary_t to access the values. The only thing to remember is that the data stored is wrapped in an adobe::value_t, so first must be extracted out of there before it can be used: \par \code --- 80,84 ---- \subsection usage_retrieval Retrieval \par ! Getting values out of an adobe::dictionary_t is easier than putting them in, because there is no "read_reference": you merely index into the adobe::dictionary_t to access the values. The only thing to remember is that the data stored is wrapped in an adobe::value_t, so it must first be extracted out of there before it can be used: \par \code |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:01
|
Update of /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/documentation/sources/tutorials/images Modified Files: forest_deletion.jpg Log Message: asl 1.0.12 Index: forest_deletion.jpg =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/documentation/sources/tutorials/images/forest_deletion.jpg,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsbnabfk and /tmp/cvssB8WIk differ |
From: Foster B. <fos...@us...> - 2006-01-06 18:36:00
|
Update of /cvsroot/adobe-source/adobe-source/adobe/future/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12808/adobe/future/widgets Modified Files: Jamfile.v2 Log Message: asl 1.0.12 Index: Jamfile.v2 =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/future/widgets/Jamfile.v2,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jamfile.v2 2 Dec 2005 02:52:55 -0000 1.5 --- Jamfile.v2 6 Jan 2006 18:35:21 -0000 1.6 *************** *** 10,17 **** # Sources (common to all platforms) # ! COMMON_SOURCES = ! ui_core ! ui_core_common ! ; # --- 10,18 ---- # Sources (common to all platforms) # ! COMMON_SOURCES = ! client_assembler ! ui_core ! ui_core_common ! ; # *************** *** 19,25 **** # BRIDGE_SOURCES = ! display ! ui_overlay ! ; switch [ os.name ] --- 20,26 ---- # BRIDGE_SOURCES = ! display ! ui_overlay ! ; switch [ os.name ] *************** *** 125,141 **** lib adobe_widgets ! : [ obj client_assembler ! : $(SOURCE_DIRECTORY)/client_assembler.cpp ! : $(PLATFORM_SETTINGS) ! $(INCLUDE) ! <toolset>darwin:<optimization>off ! ] [ obj ui_core_implementation : $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/ui_core_implementation.cpp : $(PLATFORM_SETTINGS) $(INCLUDE) ! <toolset>darwin:<cxxflags>"-Wno-error" ] $(SOURCE_DIRECTORY)/$(COMMON_SOURCES).cpp $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/$(PLATFORM_SOURCES).cpp ! : $(PLATFORM_SETTINGS) ; --- 126,139 ---- lib adobe_widgets ! : [ obj ui_core_implementation : $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/ui_core_implementation.cpp : $(PLATFORM_SETTINGS) $(INCLUDE) ! <toolset>darwin:<cxxflags>"-Wno-deprecated-declarations" ] $(SOURCE_DIRECTORY)/$(COMMON_SOURCES).cpp $(SOURCE_DIRECTORY)/$(PLATFORM_DIRECTORIES_NAME)/$(PLATFORM_SOURCES).cpp ! : ! $(PLATFORM_SETTINGS) ! ; |